diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-08-04 21:11:14 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-08-04 21:11:14 +0000 |
commit | e598eab58c1180673b3b8c3985ecf1106d97bfaa (patch) | |
tree | da7e2a4efc6db1c3d9baa406a4a14840b311c8c8 | |
parent | 9f414c69a6448028b895eb62096bec0cafacaeb9 (diff) | |
download | pfsense-e598eab58c1180673b3b8c3985ecf1106d97bfaa.zip pfsense-e598eab58c1180673b3b8c3985ecf1106d97bfaa.tar.gz |
Allow port forwarding of GRE and ESP protocols
Ticket #289
-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 79d80c3..7e6bb17 100755 --- a/usr/local/www/firewall_nat_edit.php +++ b/usr/local/www/firewall_nat_edit.php @@ -267,7 +267,7 @@ function ext_rep_change() { <td width="22%" valign="top" class="vncellreq">Protocol</td> <td width="78%" class="vtable"> <select name="proto" class="formfld"> - <?php $protocols = explode(" ", "TCP UDP TCP/UDP"); foreach ($protocols as $proto): ?> + <?php $protocols = explode(" ", "TCP UDP TCP/UDP GRE ESP"); 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">Choose which IP protocol |