Revision d6710783
Added by Jim Pingle over 10 years ago
usr/local/www/firewall_rules_edit.php | ||
---|---|---|
993 | 993 |
<td width="78%" class="vtable"> |
994 | 994 |
<select <?=$edit_disabled;?> name="proto" class="formselect" onchange="proto_change()"> |
995 | 995 |
<?php |
996 |
$protocols = explode(" ", "TCP UDP TCP/UDP ICMP ESP AH GRE IPV6 IGMP PIM OSPF any carp pfsync"); |
|
996 |
$protocols = explode(" ", "TCP UDP TCP/UDP ICMP ESP AH GRE IPV6 IGMP PIM OSPF SCTP any carp pfsync");
|
|
997 | 997 |
foreach ($protocols as $proto): ?> |
998 | 998 |
<option value="<?=strtolower($proto);?>" <?php if (strtolower($proto) == $pconfig['proto']) echo "selected=\"selected\""; ?>><?=htmlspecialchars($proto);?></option> |
999 | 999 |
<?php endforeach; ?> |
Also available in: Unified diff
Add SCTP to protocol list for filtering.