diff options
Diffstat (limited to 'usr/local/www')
-rwxr-xr-x | usr/local/www/firewall_rules.php | 5 | ||||
-rwxr-xr-x | usr/local/www/firewall_rules_edit.php | 2 |
2 files changed, 2 insertions, 5 deletions
diff --git a/usr/local/www/firewall_rules.php b/usr/local/www/firewall_rules.php index 380a003..2d67fd5 100755 --- a/usr/local/www/firewall_rules.php +++ b/usr/local/www/firewall_rules.php @@ -369,10 +369,7 @@ echo "<script type=\"text/javascript\" language=\"javascript\" src=\"/javascript <?php if ($filterent['type'] == "block") $iconfn = "block"; else if ($filterent['type'] == "reject") { - if ($filterent['protocol'] == "tcp" || $filterent['protocol'] == "udp" || $filterent['protocol'] == "tcp/udp") - $iconfn = "reject"; - else - $iconfn = "block"; + $iconfn = "reject"; } else $iconfn = "pass"; if (isset($filterent['disabled'])) { diff --git a/usr/local/www/firewall_rules_edit.php b/usr/local/www/firewall_rules_edit.php index 1cb0c46..31cc90e 100755 --- a/usr/local/www/firewall_rules_edit.php +++ b/usr/local/www/firewall_rules_edit.php @@ -529,7 +529,7 @@ include("head.inc"); <br/> <span class="vexpl"> Choose what to do with packets that match the criteria specified below. <br/> - Hint: the difference between block and reject is that with reject, a packet (TCP RST or ICMP port unreachable for UDP) is returned to the sender, whereas with block the packet is dropped silently. In either case, the original packet is discarded. Reject only works when the protocol is set to either TCP or UDP (but not "TCP/UDP") below. + Hint: the difference between block and reject is that with reject, a packet (TCP RST or ICMP port unreachable for UDP) is returned to the sender, whereas with block the packet is dropped silently. In either case, the original packet is discarded. </span> </td> </tr> |