1 |
diff -Nur smeserver-freepbx-13.old/root/etc/e-smith/db/configuration/defaults/freepbx/UDPPorts smeserver-freepbx-13/root/etc/e-smith/db/configuration/defaults/freepbx/UDPPorts |
2 |
--- smeserver-freepbx-13.old/root/etc/e-smith/db/configuration/defaults/freepbx/UDPPorts 2016-06-13 08:03:08.000000000 -0400 |
3 |
+++ smeserver-freepbx-13/root/etc/e-smith/db/configuration/defaults/freepbx/UDPPorts 2016-07-26 12:10:07.034000000 -0400 |
4 |
@@ -1 +1 @@ |
5 |
-5060,5061,5160,5161,4569,1000-2000 |
6 |
+5060,5061,5160,5161,4569,10000-20000 |
7 |
diff -Nur smeserver-freepbx-13.old/root/etc/e-smith/db/configuration/migrate/freepbx smeserver-freepbx-13/root/etc/e-smith/db/configuration/migrate/freepbx |
8 |
--- smeserver-freepbx-13.old/root/etc/e-smith/db/configuration/migrate/freepbx 2016-06-13 08:03:08.000000000 -0400 |
9 |
+++ smeserver-freepbx-13/root/etc/e-smith/db/configuration/migrate/freepbx 2016-07-26 12:20:56.495000000 -0400 |
10 |
@@ -29,10 +29,14 @@ |
11 |
$UDPPorts = "$UDPPorts,5161"; |
12 |
$freepbx->set_prop('UDPPorts',$UDPPorts); |
13 |
} |
14 |
-unless ('1000-2000' ~~ @UDPlist){ |
15 |
- $UDPPorts = "$UDPPorts,1000-2000"; |
16 |
+unless ('10000-20000' ~~ @UDPlist){ |
17 |
+ $UDPPorts = "$UDPPorts,10000-20000"; |
18 |
$freepbx->set_prop('UDPPorts',$UDPPorts); |
19 |
} |
20 |
+if ('1000-2000' ~~ @UDPlist){ |
21 |
+ $UDPPorts =~ s/,1000-2000//; |
22 |
+ $freepbx->set_prop('UDPPorts',$UDPPorts); |
23 |
+} |
24 |
|
25 |
} |
26 |
|