diff options
author | Ermal <eri@pfsense.org> | 2011-02-01 19:09:37 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2011-02-01 19:09:37 +0000 |
commit | 4e8c89fdbedce2188da48f8db1c0dfe83df36435 (patch) | |
tree | 5119615d6f02bc65a24b9b387e3ee2523ffcfa4e /etc | |
parent | 20fef17c7398170e18c9d03bcc04ee794002e981 (diff) | |
download | pfsense-4e8c89fdbedce2188da48f8db1c0dfe83df36435.zip pfsense-4e8c89fdbedce2188da48f8db1c0dfe83df36435.tar.gz |
Allow ipalias with carp as parent interface to be synchronized.
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/rc.filter_synchronize | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc.filter_synchronize b/etc/rc.filter_synchronize index 9e310f1..7eadce8 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") + if(($section['mode'] == "proxyarp" || $section['mode'] == "ipalias") && substr($section['interface'],0,3) != "vip") continue; if($section['advskew'] <> "") { $section_val = intval($section['advskew']); @@ -417,4 +417,4 @@ if (is_array($config['installedpackages']['carpsettings']['config'])) { } } -?>
\ No newline at end of file +?> |