Skip to content

Feat Request: show all IPv6 addresses #9

@ailin-nemui

Description

@ailin-nemui

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:

Image

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions