List all devices in Luci and see logs

I search a way to list all devices connected to the router (Wlan, Lan, wireguard, static IP or dynamic IP)

In best case I have a Luci app and I could filter the OpenWrt logs and measures for certain IP or MAC-Address.

  • dhcp leases
  • wifi associations
  • arp table like via arping (no log)
  • br-lan forwarding database (no log)
  • swconfig forwarding database (no log)

Please connect to your OpenWrt device using ssh and copy the output of the following commands and post it here using the "Preformatted text </> " button:
grafik
Remember to redact passwords, MAC addresses and any public IP addresses you may have:

ubus call system board
cat /etc/config/network
cat /etc/config/wireless
cat /etc/config/dhcp
cat /etc/config/firewall
1 Like
1 Like

If it just brings up diode port and captures whatever comes in...

1 Like

thanks @lleachii that helped me.

I really miss such an output on luci.

Browse to:

Status > Routing > IPv4 Routing > IPv4 Neighbors

IPv4 Neighbors is empty.

Unbelievable, should be at least client on lan side and gateway wan side.

1 Like

Helps to use openwrt

?, I have OpenWRT

openwrt-22.03

Not a supported release, absent visual likely means it is some fork.

ip -4 neigh (ARP table) and ip -6 neigh (NDP table) won't necessarily show you "connected" devices, since those tables can keep stale entries around.

Dumb APs won't fill them naturally, since they won't be processing bridged frames.

As for why it's not showing in LuCI, is it showing in the ip command? LuCI pulls from the same source as ip, the ARP table, for IPv4.

1 Like