diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-01-18 16:30:16 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-01-18 16:30:16 +0000 |
commit | fd69ff6e393a4ab5e9c2fe53235f3dfdf77e320d (patch) | |
tree | 5911cf1dec6cd93beefc5c3e1b4f108229e8225e /usr | |
parent | 549aea74196da94d83eab8d22ac53e615e1a8aad (diff) | |
download | pfsense-fd69ff6e393a4ab5e9c2fe53235f3dfdf77e320d.zip pfsense-fd69ff6e393a4ab5e9c2fe53235f3dfdf77e320d.tar.gz |
Disable fragmentation rule toggle.
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/firewall_rules_edit.php | 23 | ||||
-rwxr-xr-x | usr/local/www/status.php | 9 |
2 files changed, 17 insertions, 15 deletions
diff --git a/usr/local/www/firewall_rules_edit.php b/usr/local/www/firewall_rules_edit.php index 28be2b2..c5fef40 100755 --- a/usr/local/www/firewall_rules_edit.php +++ b/usr/local/www/firewall_rules_edit.php @@ -752,17 +752,18 @@ function dst_rep_change() { the destination of the packet for this rule.<br> Hint: you can leave the <em>'to'</em> field empty if you only want to filter a single port</span></td> - - <tr> - <td width="22%" valign="top" class="vncellreq">Fragments</td> - <td width="78%" class="vtable"> - <input name="frags" type="checkbox" id="frags" value="yes" <?php if ($pconfig['frags']) echo "checked"; ?>> - <strong>Allow fragmented packets</strong><br> - <span class="vexpl">Hint: this option puts additional load - on the firewall and may make it vulnerable to DoS attacks. - In most cases, it is not needed. Try enabling it if you have - troubles connecting to certain sites.</span></td> - </tr> + <!-- + <tr> + <td width="22%" valign="top" class="vncellreq">Fragments</td> + <td width="78%" class="vtable"> + <input name="frags" type="checkbox" id="frags" value="yes" <?php if ($pconfig['frags']) echo "checked"; ?>> + <strong>Allow fragmented packets</strong><br> + <span class="vexpl">Hint: this option puts additional load + on the firewall and may make it vulnerable to DoS attacks. + In most cases, it is not needed. Try enabling it if you have + troubles connecting to certain sites.</span></td> + </tr> + --> <tr> <td width="22%" valign="top" class="vncellreq">Log</td> <td width="78%" class="vtable"> diff --git a/usr/local/www/status.php b/usr/local/www/status.php index 53e2285..04adb74 100755 --- a/usr/local/www/status.php +++ b/usr/local/www/status.php @@ -88,11 +88,12 @@ defCmdT("Interfaces","/sbin/ifconfig -a"); defCmdT("Routing tables","netstat -nr"); defCmdT("ipfw show", "/sbin/ipfw show"); -defCmdT("pfctl -s nat ", "/sbin/pfctl -s nat"); -defCmdT("pfctl -s rules", "/sbin/pfctl -s rules"); -defCmdT("pfctl -s all"," /sbin/pfctl -s all"); +defCmdT("pfctl -sn", "/sbin/pfctl -sn"); +defCmdT("pfctl -sr", "/sbin/pfctl -sr"); +defCmdT("pfctl -ss", "/sbin/pfctl -ss"); +defCmdT("pfctl -si", "/sbin/pfctl -si"); +defCmdT("pfctl -sa"," /sbin/pfctl -sa"); defCmdT("pfctl -s rules -v"," /sbin/pfctl -s rules -v"); -defCmdT("pfctl -si","/sbin/pfctl -si"); defCmdT("resolv.conf","cat /etc/resolv.conf"); |