diff options
author | Chris Buechler <cmb@pfsense.org> | 2016-04-06 19:50:39 -0500 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2016-04-06 19:51:31 -0500 |
commit | 4422bdca8c090d1a92cbb3cbd62a93f1bf9844f0 (patch) | |
tree | 0488676f503c96a15c1fb4e81a977a7fc64fe2e5 /src/usr | |
parent | e3acb913fe8e63ecf800b1cf7213475ea11ebd11 (diff) | |
download | pfsense-4422bdca8c090d1a92cbb3cbd62a93f1bf9844f0.zip pfsense-4422bdca8c090d1a92cbb3cbd62a93f1bf9844f0.tar.gz |
Deprecate references to modulate state. Remove rule allowing TCP 1723 inbound when PPTP client is in use, as that's unnecessary.
Diffstat (limited to 'src/usr')
-rw-r--r-- | src/usr/local/www/firewall_rules_edit.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr/local/www/firewall_rules_edit.php b/src/usr/local/www/firewall_rules_edit.php index d8f3267..c630435 100644 --- a/src/usr/local/www/firewall_rules_edit.php +++ b/src/usr/local/www/firewall_rules_edit.php @@ -452,7 +452,7 @@ if ($_POST) { $reqdfieldsn[] = gettext("Destination"); } - if ($_POST['statetype'] == "modulate state" or $_POST['statetype'] == "synproxy state") { + if ($_POST['statetype'] == "synproxy state") { if ($_POST['proto'] != "tcp") { $input_errors[] = sprintf(gettext("%s is only valid with protocol TCP."), $_POST['statetype']); } @@ -2026,9 +2026,9 @@ events.push(function() { } else if (val == 'sloppy state') { dispstr += 'Sloppy: works with all IP protocols'; } else if (val == 'synproxy state') { - dispstr += 'Synproxy: proxies incoming TCP connections to help protect servers from spoofed TCP SYN floods. This option includes the functionality of keep state and modulate state combined'; + dispstr += 'Synproxy: proxies incoming TCP connections to help protect servers from spoofed TCP SYN floods, at the cost of performance (no SACK or window scaling)'; } else if (val == 'none') { - dispstr += 'None: Do not use state mechanisms to keep track. This is only useful for doing advanced queueing in certain situations'; + dispstr += 'None: Do not use state mechanisms to keep track'; } dispstr += '</span>'; |