diff options
author | Chris Buechler <cmb@pfsense.org> | 2010-08-06 22:33:20 -0400 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2010-08-06 22:34:12 -0400 |
commit | 80c2607df7aca51166d952967dd2c96f873d6b61 (patch) | |
tree | 1a0930a70e90ff9d7aa99e5af7c67e721342a1f8 /usr | |
parent | d46285822ad436d8a7bfb57fc08b5af9d6fd1e76 (diff) | |
download | pfsense-80c2607df7aca51166d952967dd2c96f873d6b61.zip pfsense-80c2607df7aca51166d952967dd2c96f873d6b61.tar.gz |
don't static port 5060 by default, it breaks things much more often than it helps.
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/firewall_nat_out.php | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/usr/local/www/firewall_nat_out.php b/usr/local/www/firewall_nat_out.php index 2039848..d387385 100755 --- a/usr/local/www/firewall_nat_out.php +++ b/usr/local/www/firewall_nat_out.php @@ -114,16 +114,6 @@ if (isset($_POST['save']) && $_POST['save'] == "Save") { $natent['destination']['any'] = true; $natent['staticnatport'] = true; $a_out[] = $natent; - - $natent = array(); - $natent['source']['network'] = "{$osn}/{$ossubnet}"; - $natent['dstport'] = "5060"; - $natent['descr'] = sprintf(gettext("Auto created rule for SIP - %s to %s"),$ifdesc,$ifdesc2); - $natent['target'] = ""; - $natent['interface'] = $if2; - $natent['destination']['any'] = true; - $natent['staticnatport'] = true; - $a_out[] = $natent; $natent = array(); $natent['source']['network'] = "{$osn}/{$ossubnet}"; |