summaryrefslogtreecommitdiffstats
path: root/src/etc/inc/interfaces.inc
diff options
context:
space:
mode:
Diffstat (limited to 'src/etc/inc/interfaces.inc')
-rw-r--r--src/etc/inc/interfaces.inc20
1 files changed, 13 insertions, 7 deletions
diff --git a/src/etc/inc/interfaces.inc b/src/etc/inc/interfaces.inc
index 53fa9ba..38db490 100644
--- a/src/etc/inc/interfaces.inc
+++ b/src/etc/inc/interfaces.inc
@@ -5038,18 +5038,24 @@ function link_interface_to_vips($int, $action = "", $vhid = '') {
if (is_array($config['virtualip']['vip'])) {
$result = array();
foreach ($config['virtualip']['vip'] as $vip) {
- if ($int == $vip['interface']) {
- if ($action == "update") {
- interfaces_vips_configure($int);
- } else {
- if (empty($vhid) || ($vhid == $vip['vhid'])) {
- $result[] = $vip;
- }
+ if (substr($vip['interface'], 0, 4) == "_vip")
+ $iface = get_configured_vip_interface($vip['interface']);
+ else
+ $iface = $vip['interface'];
+ if ($int != $iface)
+ continue;
+ if ($action == "update") {
+ interfaces_vips_configure($int);
+ } else {
+ if (empty($vhid) || ($vhid == $vip['vhid'])) {
+ $result[] = $vip;
}
}
}
return $result;
}
+
+ return NULL;
}
/****f* interfaces/link_interface_to_bridge
OpenPOWER on IntegriCloud