查看连接上openwrt的设备IP信息,mac地址,方式有两种:
方式1:
Bash
cat /proc/net/arp
结果:
Bash
IP address HW type Flags HW address Mask Device
192.168.0.1 0x1 0x2 **:95:**:5c:**:79 * eth0.2
192.168.1.242 0x1 0x2 **:6c:**:77:**:40 * br-lan
192.168.0.124 0x1 0x0 **:00:**:00:**:00 * eth0.2
192.168.1.198 0x1 0x2 **:8d:**:5a:**:3c * br-lan
Flags标志可以表示是否在线状态,0x0表示离线,标志0x2表示在线
Device表示接口的名称
方式2:
Bash
cat /tmp/dhcp.leases
结果
Bash
1505227895 **:6c:**:77:**:40 192.168.1.242 android-5734b930181b5156 *
1505225907 **:8d:**:5a:**:3c 192.168.1.198 DESKTOP-AFGM9OL 01:40:8d:5c:5a:a0:3c
可以看到mac地址,IP,设备名等信息
还有个查看wifi连接设备的命令
Bash
#ra0 是设备的名称,根据实际情况也可能是wlan0或者其他名称
iwinfo ra0 assoclist
得到结果
Bash
**:**:**:C6:76:26 -44 dBm / -57 dBm (SNR 13) 37000 ms ago
RX: 65.0 MBit/s, MCS 7, 20MHz 0 Pkts.
TX: 65.0 MBit/s, MCS 7, 20MHz 0 Pkts.
**:**:**:FF:91:98 -44 dBm / -57 dBm (SNR 13) 6000 ms ago
RX: 65.0 MBit/s, MCS 7, 20MHz 0 Pkts.
TX: 65.0 MBit/s, MCS 7, 20MHz 0 Pkts.