From 1f2f38f5097a982a5432f7b6ba5ce3bd2115cfbb Mon Sep 17 00:00:00 2001 From: Ermal Date: Tue, 11 Nov 2014 20:49:11 +0100 Subject: [PATCH] Ticket #3967 also sync other vip types that can be synched. --- etc/rc.filter_synchronize | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/rc.filter_synchronize b/etc/rc.filter_synchronize index ccb745ca1..9c650c049 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'] != "carp") + if (($section['mode'] == 'proxyarp' || $section['mode'] == 'ipalias') && !(strpos($section['interface'], '_vip') || strpos($section['interface'], 'lo0'))) continue; if ($section['advskew'] <> "") { $section_val = intval($section['advskew']);