diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-03-14 23:16:49 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-03-14 23:16:49 +0000 |
commit | 9620d290bec8dce1a61002db174aa27fe0f747f2 (patch) | |
tree | 337c6fdb78156062ff9285550506417e63433d83 /usr | |
parent | 303831c699a29280fd39218efcc5058a9bec65a9 (diff) | |
download | pfsense-9620d290bec8dce1a61002db174aa27fe0f747f2.zip pfsense-9620d290bec8dce1a61002db174aa27fe0f747f2.tar.gz |
Add pfsync and carp protocols
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/firewall_rules_edit.php | 2 |
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 9f3b403..e267fb2 100755 --- a/usr/local/www/firewall_rules_edit.php +++ b/usr/local/www/firewall_rules_edit.php @@ -521,7 +521,7 @@ Hint: the difference between block and reject is that with reject, a packet (TCP <td width="22%" valign="top" class="vncellreq">Protocol</td> <td width="78%" class="vtable"> <select name="proto" class="formfld" onchange="proto_change()"> - <?php $protocols = explode(" ", "TCP UDP TCP/UDP ICMP ICMP6 ESP AH GRE IPv6 IGMP any"); foreach ($protocols as $proto): ?> + <?php $protocols = explode(" ", "TCP UDP TCP/UDP ICMP ICMP6 ESP AH GRE IPv6 IGMP any carp pfsync"); foreach ($protocols as $proto): ?> <option value="<?=strtolower($proto);?>" <?php if (strtolower($proto) == $pconfig['proto']) echo "selected"; ?>> <?=htmlspecialchars($proto);?> </option> |