Merge pull request #1208 from razzfazz/nat_add_missing_protocols

This commit is contained in:
Renato Botelho 2014-06-20 09:36:10 -03:00
commit 1c9a521b93
1 changed files with 1 additions and 1 deletions

View File

@ -533,7 +533,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 ICMP"); foreach ($protocols as $proto): ?>
<?php $protocols = explode(" ", "TCP UDP TCP/UDP ICMP ESP AH GRE IPV6 IGMP PIM OSPF"); foreach ($protocols as $proto): ?>
<option value="<?=strtolower($proto);?>" <?php if (strtolower($proto) == $pconfig['proto']) echo "selected=\"selected\""; ?>><?=htmlspecialchars($proto);?></option>
<?php endforeach; ?>
</select> <br/> <span class="vexpl"><?=gettext("Choose which IP protocol " .