summaryrefslogtreecommitdiffstats
path: root/usr/local/www/firewall_virtual_ip.php
diff options
context:
space:
mode:
authorBill Marquette <billm@pfsense.org>2005-08-06 19:12:54 +0000
committerBill Marquette <billm@pfsense.org>2005-08-06 19:12:54 +0000
commit68a5dcd8c5fcb7dad04ccb8b47ff22fe1a5621c7 (patch)
tree014d40861e15bdc41151d1436f1e1e561fdac267 /usr/local/www/firewall_virtual_ip.php
parent276ba5212754507be2c8a72a06249c19de34cbc0 (diff)
downloadpfsense-68a5dcd8c5fcb7dad04ccb8b47ff22fe1a5621c7.zip
pfsense-68a5dcd8c5fcb7dad04ccb8b47ff22fe1a5621c7.tar.gz
Allow for an "other" virtual IP which is neither ProxyARP or CARP
Useful if the IP is already routed to you (PPPOE for example) and you just want to use it for NAT XXX: Need a icon_other hoba ;)
Diffstat (limited to 'usr/local/www/firewall_virtual_ip.php')
-rwxr-xr-xusr/local/www/firewall_virtual_ip.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/firewall_virtual_ip.php b/usr/local/www/firewall_virtual_ip.php
index 0a2d201..e794410 100755
--- a/usr/local/www/firewall_virtual_ip.php
+++ b/usr/local/www/firewall_virtual_ip.php
@@ -129,7 +129,7 @@ include("head.inc");
?>
</td>
<td class="listlr" align="center" ondblclick="document.location='firewall_virtual_ip_edit.php?id=<?=$i;?>';">
- <? if($vipent['mode'] == "proxyarp") echo "<img src='./themes/".$g['theme']."/images/icons/icon_parp.gif' title='Proxy ARP'>"; else echo "<img src='./themes/".$g['theme']."/images/icons/icon_carp.gif' title='CARP'>";?>
+ <? if($vipent['mode'] == "proxyarp") echo "<img src='./themes/".$g['theme']."/images/icons/icon_parp.gif' title='Proxy ARP'>"; elseif($vipent['mode'] == "carp") echo "<img src='./themes/".$g['theme']."/images/icons/icon_carp.gif' title='CARP'>"; elseif($vipent['mode'] == "other") echo "<img src='./themes/".$g['theme']."/images/icons/icon_other.gif' title='Other'>";?>
</td>
<td class="listbg" ondblclick="document.location='firewall_virtual_ip_edit.php?id=<?=$i;?>';">
<font color="#FFFFFF"><?=htmlspecialchars($vipent['descr']);?>&nbsp;
OpenPOWER on IntegriCloud