mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Allow localhost IP Alias VIPs to sync, too
This commit is contained in:
parent
56bf3ef146
commit
39b84ccc7f
@ -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']);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user