diff options
author | jim-p <jimp@pfsense.org> | 2012-11-20 08:30:40 -0500 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2012-11-20 08:31:07 -0500 |
commit | 64307806ab5b53a60a4343862f806be90e2eea79 (patch) | |
tree | 56a87c1a106faabb603821a31655c641b72b63b8 /usr/local/www/firewall_nat_edit.php | |
parent | 6e557facee6376b067f69ff3a40c559bb6dcdc02 (diff) | |
download | pfsense-64307806ab5b53a60a4343862f806be90e2eea79.zip pfsense-64307806ab5b53a60a4343862f806be90e2eea79.tar.gz |
While I'm here, allow an ICMP rdr.
Diffstat (limited to 'usr/local/www/firewall_nat_edit.php')
-rwxr-xr-x | usr/local/www/firewall_nat_edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/firewall_nat_edit.php b/usr/local/www/firewall_nat_edit.php index a05cc17..009a442 100755 --- a/usr/local/www/firewall_nat_edit.php +++ b/usr/local/www/firewall_nat_edit.php @@ -524,7 +524,7 @@ include("fbegin.inc"); ?> <td width="22%" valign="top" class="vncellreq"><?=gettext("Protocol"); ?></td> <td width="78%" class="vtable"> <select name="proto" class="formselect" onChange="proto_change(); check_for_aliases();"> - <?php $protocols = explode(" ", "TCP UDP TCP/UDP GRE ESP"); foreach ($protocols as $proto): ?> + <?php $protocols = explode(" ", "TCP UDP TCP/UDP GRE ESP ICMP"); foreach ($protocols as $proto): ?> <option value="<?=strtolower($proto);?>" <?php if (strtolower($proto) == $pconfig['proto']) echo "selected"; ?>><?=htmlspecialchars($proto);?></option> <?php endforeach; ?> </select> <br> <span class="vexpl"><?=gettext("Choose which IP protocol " . |