diff options
author | jim-p <jim@pingle.org> | 2009-04-15 13:09:54 -0400 |
---|---|---|
committer | jim-p <jim@pingle.org> | 2009-04-15 13:11:25 -0400 |
commit | 92215498f3fc5c5a0f780897d2daabe93006d90c (patch) | |
tree | fd3e0509bcb05968925c3c50693c060992835409 /usr/local | |
parent | 3c07ce5e1fc16bbfb5f78411c403b919997bbb7a (diff) | |
download | pfsense-92215498f3fc5c5a0f780897d2daabe93006d90c.zip pfsense-92215498f3fc5c5a0f780897d2daabe93006d90c.tar.gz |
Remove "Allow IPv6" option from Firewall/NAT tab, it's already on the Networking tab with other IPv6 options.
Diffstat (limited to 'usr/local')
-rw-r--r-- | usr/local/www/system_advanced_firewall.php | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/usr/local/www/system_advanced_firewall.php b/usr/local/www/system_advanced_firewall.php index 74287b8..370b92e 100644 --- a/usr/local/www/system_advanced_firewall.php +++ b/usr/local/www/system_advanced_firewall.php @@ -54,7 +54,6 @@ $pconfig['disablenatreflection'] = $config['system']['disablenatreflection']; $pconfig['reflectiontimeout'] = $config['system']['reflectiontimeout']; $pconfig['bypassstaticroutes'] = isset($config['filter']['bypassstaticroutes']); $pconfig['disablescrub'] = isset($config['system']['disablescrub']); -$pconfig['ipv6allow'] = isset($config['system']['ipv6allow']); if ($_POST) { @@ -117,11 +116,6 @@ if ($_POST) { else unset($config['system']['disablescrub']); - if($_POST['ipv6allow'] == "yes") - $config['system']['ipv6allow'] = true; - else - unset($config['system']['ipv6allow']); - write_config(); $retval = 0; @@ -281,17 +275,6 @@ function update_description(itemnum) { <tr> <td colspan="2" class="list" height="12"> </td> </tr> - <tr> - <td colspan="2" valign="top" class="listtopic">IPv6</td> - </tr> - <tr> - <td width="22%" valign="top" class="vncell">Allow IPv6</td> - <td width="78%" class="vtable"> - <input name="ipv6allow" type="checkbox" id="ipv6allow" value="yes" <?php if (isset($config['system']['ipv6allow'])) echo "checked"; ?> /> - <strong>Allow IPv6</strong> - <br>All IPv6 traffic will be blocked unless this box is checked. - </td> - </tr> <?php if($config['interfaces']['lan']): ?> <tr> <td colspan="2" valign="top" class="listtopic">Network Address Translation</td> |