summaryrefslogtreecommitdiffstats
path: root/etc/inc/interfaces.inc
diff options
context:
space:
mode:
Diffstat (limited to 'etc/inc/interfaces.inc')
-rw-r--r--etc/inc/interfaces.inc8
1 files changed, 8 insertions, 0 deletions
diff --git a/etc/inc/interfaces.inc b/etc/inc/interfaces.inc
index b2912b7..e479c22 100644
--- a/etc/inc/interfaces.inc
+++ b/etc/inc/interfaces.inc
@@ -4795,6 +4795,10 @@ function ip_in_interface_alias_subnet($interface, $ipalias) {
}
function get_interface_ip($interface = "wan") {
+ // if we get passed an IP for some reason, return the IP.
+ if (is_ipaddr($interface))
+ return $interface;
+
$realif = get_failover_interface($interface);
if (!$realif) {
if (strstr($interface, "_vip"))
@@ -4813,6 +4817,10 @@ function get_interface_ip($interface = "wan") {
function get_interface_ipv6($interface = "wan", $flush = false) {
global $config;
+ // if we get passed an IP for some reason, return the IP.
+ if (is_ipaddr($interface))
+ return $interface;
+
$realif = get_failover_interface($interface, "inet6");
if (!$realif) {
if (strstr($interface, "_vip"))
OpenPOWER on IntegriCloud