diff options
author | Jo-Philipp Wich <jo@mein.io> | 2017-01-28 13:45:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-28 13:45:44 +0100 |
commit | e6f158b2ee3cbc8b81734a21ab6aa1db7ff020ac (patch) | |
tree | cde177de7120a18110d6281deebc3137241128d2 /modules/luci-mod-admin-full/luasrc/controller | |
parent | f5461669afa4aba943ecc5800d9a468fb0ce1cd0 (diff) | |
parent | 5377d22b4a8d8f2234ddb5e65783343a6f2f6897 (diff) |
Merge pull request #981 from NvrBst/pull-request-ipv6_prefix_status_display
mod-admin-full: Add IPv6 Prefix Delegation information to Status Pages
Diffstat (limited to 'modules/luci-mod-admin-full/luasrc/controller')
-rw-r--r-- | modules/luci-mod-admin-full/luasrc/controller/admin/network.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/luci-mod-admin-full/luasrc/controller/admin/network.lua b/modules/luci-mod-admin-full/luasrc/controller/admin/network.lua index 3b5f3eb8de..2cb2108b9f 100644 --- a/modules/luci-mod-admin-full/luasrc/controller/admin/network.lua +++ b/modules/luci-mod-admin-full/luasrc/controller/admin/network.lua @@ -238,6 +238,7 @@ function iface_status(ifaces) ipaddrs = net:ipaddrs(), ip6addrs = net:ip6addrs(), dnsaddrs = net:dnsaddrs(), + ip6prefix = net:ip6prefix(), name = device:shortname(), type = device:type(), ifname = device:name(), |