summaryrefslogtreecommitdiffstats
path: root/usr/local/www/firewall_rules_edit.php
diff options
context:
space:
mode:
authorDaniel Becker <razzfazz@gmail.com>2013-07-07 15:36:26 -0700
committerDaniel Becker <razzfazz@gmail.com>2013-07-10 18:46:29 -0700
commit26f80aff92ea3f70301273d869d30c68d4b73d48 (patch)
tree502614d1cf823f605fe37d059f64868aa79a3d57 /usr/local/www/firewall_rules_edit.php
parentf34fcff4b42eb0f863264ff0eb9e85ed6d202497 (diff)
downloadpfsense-26f80aff92ea3f70301273d869d30c68d4b73d48.zip
pfsense-26f80aff92ea3f70301273d869d30c68d4b73d48.tar.gz
Add support for protocol 41 in rules. Fixes #3007.
Diffstat (limited to 'usr/local/www/firewall_rules_edit.php')
-rwxr-xr-xusr/local/www/firewall_rules_edit.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/firewall_rules_edit.php b/usr/local/www/firewall_rules_edit.php
index 4105343..a2a7e0e 100755
--- a/usr/local/www/firewall_rules_edit.php
+++ b/usr/local/www/firewall_rules_edit.php
@@ -858,7 +858,7 @@ include("head.inc");
<td width="78%" class="vtable">
<select <?=$edit_disabled;?> name="proto" class="formselect" onchange="proto_change()">
<?php
- $protocols = explode(" ", "TCP UDP TCP/UDP ICMP ESP AH GRE IGMP OSPF any carp pfsync");
+ $protocols = explode(" ", "TCP UDP TCP/UDP ICMP ESP AH GRE IPV6 IGMP OSPF any carp pfsync");
foreach ($protocols as $proto): ?>
<option value="<?=strtolower($proto);?>" <?php if (strtolower($proto) == $pconfig['proto']) echo "selected=\"selected\""; ?>><?=htmlspecialchars($proto);?></option>
<?php endforeach; ?>
OpenPOWER on IntegriCloud