获取openwrt中的物理接口列表

时间:2017-03-27 07:50:02

标签: python networking network-programming sh openwrt

我们如何在openwrt中获取所有物理接口,我尝试使用 ls -l /sys/class/net/ ,但这不是正确的信息。

lrwxrwxrwx    1 root     root             0 Mar 21 10:26 eth0 -> ../../devices/virtual/net/eth0
lrwxrwxrwx    1 root     root             0 Mar 21 10:26 eth1 -> ../../devices/virtual/net/eth1
lrwxrwxrwx    1 root     root             0 Mar 21 10:26 tun0 -> ../../devices/virtual/net/tun0
lrwxrwxrwx    1 root     root             0 Mar 22 09:50 wlan0 -> ../../devices/pci0000:01/0000:01:00.0/net/wlan0
lrwxrwxrwx    1 root     root             0 Mar 22 09:50 wlan0-1 -> ../../devices/pci0000:01/0000:01:00.0/net/wlan0-1

实际上eth0和eth1是物理的,wlan0-1也是逻辑的。但结果显示不同。

有人能提出更好的建议吗?

1 个答案:

答案 0 :(得分:0)

嗨,您可以使用python scapy来获取接口列表

from scapy.all import *
print(get_windows_if_list())