summaryrefslogtreecommitdiffstats
path: root/etc/rc.banner
diff options
context:
space:
mode:
Diffstat (limited to 'etc/rc.banner')
-rwxr-xr-xetc/rc.banner10
1 files changed, 8 insertions, 2 deletions
diff --git a/etc/rc.banner b/etc/rc.banner
index 6f81cb9..2e016ce 100755
--- a/etc/rc.banner
+++ b/etc/rc.banner
@@ -70,15 +70,21 @@
break;
}
$ipaddr = get_interface_ip($ifname);
+ $subnet = get_interface_subnet($ifname);
+ $ipaddr6 = get_interface_ipv6($ifname);
+ $subnet6 = get_interface_subnetv6($ifname);
$realif = get_real_interface($ifname);
$tobanner = "{$friendly} ({$ifname})";
- printf("\n %-25s -> %-10s -> %s %s",
+ printf("\n %-15s -> %-10s -> %s/%s\t%s/%s %s",
$tobanner,
$realif,
$ipaddr ? $ipaddr : "NONE",
+ $subnet ? $subnet : "NONE",
+ $ipaddr6 ? $ipaddr6 : "NONE",
+ $subnet6 ? $subnet6 : "NONE",
$class
);
}
-?> \ No newline at end of file
+?>
OpenPOWER on IntegriCloud