diff options
author | Eric Luehrsen <ericluehrsen@hotmail.com> | 2017-02-10 21:38:00 -0500 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2017-02-20 16:47:56 +0200 |
commit | 6c09d8340671634f43cd7386aaf0ea5870c41a20 (patch) | |
tree | afce660c68ac4e5236f794e20e60a4af0d05334f /modules/luci-mod-admin-full/luasrc | |
parent | a57a17ad8a0a545c7728f11bff61807f9509fec1 (diff) |
luci: ignore '::1' in realtime connections
luci ignores only 127.0.0.1 in real time connections.
The dnsmasq.init script sets up resolv.conf(s) as such.
With alternate DNS servers configured 'localhost' will
resolve to '127.0.0.1' or '::1'. The connections graph
will spam itself. openwrt/luci#996
Signed-off-by: Eric Luehrsen <ericluehrsen@hotmail.com>
(cherry picked from commit 52771816a03b9250a22a76af77c27704067d07c5)
Diffstat (limited to 'modules/luci-mod-admin-full/luasrc')
-rw-r--r-- | modules/luci-mod-admin-full/luasrc/view/admin_status/connections.htm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/luci-mod-admin-full/luasrc/view/admin_status/connections.htm b/modules/luci-mod-admin-full/luasrc/view/admin_status/connections.htm index 0b2e52e05..b7ebc4145 100644 --- a/modules/luci-mod-admin-full/luasrc/view/admin_status/connections.htm +++ b/modules/luci-mod-admin-full/luasrc/view/admin_status/connections.htm @@ -153,7 +153,8 @@ { var c = conn[i]; - if (c.src == '127.0.0.1' && c.dst == '127.0.0.1') + if ((c.src == '127.0.0.1' && c.dst == '127.0.0.1') + || (c.src == '::1' && c.dst == '::1')) continue; var tr = conn_table.rows[0].parentNode.insertRow(-1); |