-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Hi,
I would like to also see the IPv6 addresses of my connected devices at a glance, similar to how the built-in Associated Stations list works on a single-device OpenWrt. Looks like the main router has this information.
Maybe the following code could do it:
in apcontroller.js, add this code here
// original code
if (c.ipaddr == '') {
if (hosts[mac] && hosts[mac].ipaddrs)
c.ipaddr = (hosts[mac].ipaddrs).join('<br>');
}
// added code:
if (hosts[mac] && hosts[mac].ip6addrs && hosts[mac].ip6addrs.length)
c.ipaddr += '<br><small>' + hosts[mac].ip6addrs[0]; For reference the openwrt native display:

Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request