From 39b84ccc7f00edbf87bb32bd950d42643897d7b5 Mon Sep 17 00:00:00 2001 From: jim-p Date: Thu, 6 Jun 2013 13:54:12 -0400 Subject: Allow localhost IP Alias VIPs to sync, too --- etc/rc.filter_synchronize | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'etc/rc.filter_synchronize') diff --git a/etc/rc.filter_synchronize b/etc/rc.filter_synchronize index f641212..4553b22 100755 --- a/etc/rc.filter_synchronize +++ b/etc/rc.filter_synchronize @@ -55,7 +55,7 @@ function backup_vip_config_section() { $temp = array(); $temp['vip'] = array(); foreach($config['virtualip']['vip'] as $section) { - if(($section['mode'] == "proxyarp" || $section['mode'] == "ipalias") && !strstr($section['interface'], "_vip")) + if(($section['mode'] == "proxyarp" || $section['mode'] == "ipalias") && !(strstr($section['interface'], "_vip") || strstr($section['interface'], "lo0"))) continue; if($section['advskew'] <> "") { $section_val = intval($section['advskew']); -- cgit v1.1