. All rights reserved. Includes code from m0n0wall which is: Copyright (C) 2003-2005 Manuel Kasper . All rights reserved. Includes code from pfSense which is: Copyright (C) 2004-2005 Scott Ullrich . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ require("guiconfig.inc"); if (!is_array($config['virtualip']['vip'])) { $config['virtualip']['vip'] = array(); } $a_vip = &$config['virtualip']['vip']; if ($_GET['act'] == "del") { if ($a_vip[$_GET['id']]) { /* make sure no inbound NAT mappings reference this entry */ if (is_array($config['nat']['rule'])) { foreach ($config['nat']['rule'] as $rule) { if($rule['external-address'] <> "") { if ($rule['external-address'] == $a_vip[$_GET['id']]['ipaddr']) { $input_errors[] = "This entry cannot be deleted because it is still referenced by at least one NAT mapping."; unlink("/tmp/carp_reboot_needed"); break; } } } } if (!$input_errors) { if($a_vip[$_GET['id']]['mode'] == "carp") touch("/tmp/carp_reboot_needed"); unset($a_vip[$_GET['id']]); write_config(); touch($d_vipconfdirty_path); header("Location: firewall_virtual_ip.php"); exit; } } } if ($_POST['apply']) { if (file_exists("/tmp/carp_reboot_needed")) { $savemsg = "The firewall is now rebooting, please wait."; unlink_if_exists($d_vipconfdirty_path); } } if ($_POST) { unlink_if_exists($d_vipconfdirty_path); } $pgtitle = "Firewall: Virtual IP Addresses"; include("head.inc"); ?>

THE FIREWALL WILL REBOOT WHEN YOU CLICK APPLY CHANGES.
You must manually reboot your secondary firewall for these changes to apply to it."); else if (file_exists($d_vipconfdirty_path)) print_info_box_np("The VIP configuration has been changed.
You must apply the changes in order for them to take effect."); ?>

"" or $vipent['range'] <> "" or $vipent['subnet_bits'] <> "" or $vipent['range']['from'] <> ""): ?>
Virtual IP address Type Description
"; elseif($vipent['mode'] == "carp") echo ""; elseif($vipent['mode'] == "other") echo "";?>  

Note:
The virtual IP addresses defined on this page may be used in NAT mappings.
You can check the status of your CARP Virtual IPs and interfaces here.