diff options
author | Jo-Philipp Wich <jo@mein.io> | 2018-07-13 14:50:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-13 14:50:28 +0200 |
commit | 98f4c3cf50f52ace0c1f93135ef7a06291cb4650 (patch) | |
tree | 0b0c64f90a1b987d68e4876774e2bb78fa537cc8 /applications/luci-app-upnp/luasrc/controller/upnp.lua | |
parent | 524ce90c4e22dcb64ac8e6c2e012eb54cd5f098e (diff) | |
parent | afd14fb9c71b4874292dc93c0a9e59142b443805 (diff) |
Merge pull request #1933 from Ansuel/hostname_upnp
luci-app-upnp: add hostname info
Diffstat (limited to 'applications/luci-app-upnp/luasrc/controller/upnp.lua')
-rw-r--r-- | applications/luci-app-upnp/luasrc/controller/upnp.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/applications/luci-app-upnp/luasrc/controller/upnp.lua b/applications/luci-app-upnp/luasrc/controller/upnp.lua index 95a0ef4862..c4762434c5 100644 --- a/applications/luci-app-upnp/luasrc/controller/upnp.lua +++ b/applications/luci-app-upnp/luasrc/controller/upnp.lua @@ -21,6 +21,8 @@ end function act_status() local uci = luci.model.uci.cursor() local lease_file = uci:get("upnpd", "config", "upnp_lease_file") + + local ipv4_hints = luci.sys.net.ipv4_hints() local ipt = io.popen("iptables --line-numbers -t nat -xnvL MINIUPNPD 2>/dev/null") if ipt then @@ -45,12 +47,22 @@ function act_status() if uln then descr = uln:match(string.format("^%s:%d:%s:%d:%%d*:(.*)$", proto:upper(), extport, intaddr, intport)) end if not descr then descr = "" end end + + local host_hint, _, e + + for _,e in pairs(ipv4_hints) do + if e[1] == intaddr then + host_hint = e[2] + break + end + end fwd[#fwd+1] = { num = num, proto = proto:upper(), extport = extport, intaddr = intaddr, + host_hint = host_hint, intport = intport, descr = descr } |