summaryrefslogtreecommitdiffstats
path: root/etc/rc.filter_synchronize
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2013-06-06 13:54:12 -0400
committerjim-p <jimp@pfsense.org>2013-06-06 13:55:15 -0400
commit39b84ccc7f00edbf87bb32bd950d42643897d7b5 (patch)
treecaa1dfe6e184e8e8575be9d01b2a0c9aa7db4cb7 /etc/rc.filter_synchronize
parent56bf3ef146ebc41c60ae7ab1fc0d7e57b0db55b7 (diff)
downloadpfsense-39b84ccc7f00edbf87bb32bd950d42643897d7b5.zip
pfsense-39b84ccc7f00edbf87bb32bd950d42643897d7b5.tar.gz
Allow localhost IP Alias VIPs to sync, too
Diffstat (limited to 'etc/rc.filter_synchronize')
-rwxr-xr-xetc/rc.filter_synchronize2
1 files changed, 1 insertions, 1 deletions
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']);
OpenPOWER on IntegriCloud