我使用的是 Ubuntu 18.04。按照以下示例https://www.cyberciti.biz/faq/linux-list-network-cards-command/, 我可以用
# lspci | egrep -i --color 'network|ethernet'
获取设备的制造商名称:
09:00.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5761e Gigabit Ethernet PCIe (rev 10)
0c:00.0 Network controller: Intel Corporation Ultimate N WiFi Link 5300
然后,我可以使用:
# ifconfig -a
或者
# ip link show
...显示如下内容:
1: lo: mtu 16436 qdisc noqueue state UNKNOWN
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: mtu 1500 qdisc mq state UP qlen 1000
link/ether b8:ac:6f:65:31:e5 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.5/24 brd 192.168.1.255 scope global eth0
inet6 fe80::baac:6fff:fe65:31e5/64 scope link
valid_lft forever preferred_lft forever
但是是否有一个命令可以让我列出eth0
所有网络接口的“短”设备名称和“长”设备名称(即制造商、型号)?
答案1
当我写问题时发现了这个:
$ sudo lshw -class network | grep 'logical\|description\|product\|vendor\|\*-'
*-network
description: Ethernet interface
product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
vendor: Realtek Semiconductor Co., Ltd.
logical name: enp1s0
*-network
description: Wireless interface
product: Wireless 7265
vendor: Intel Corporation
logical name: wlp2s0
似乎工作正常,但很想听听是否有其他方法可以实现这一目标。