在linux中查找网卡序列号的命令是什么?
在linux中查找网卡序列号的命令是什么?我尝试了 dmidecode 选项和 lshow
可能是我错过了一些东西
Whats the command to find Nic cards serial numbers in linux ? I tried dmidecode options and lshow
may be I missed some thing
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我不确定序列号,但 lspci 为我提供了有关以太网卡的以下信息:
I'm not sure about serial numbers, but lspci gives me the following information about my ethernet card:
如果您自启动以来没有修改过 MAC 地址,那么它将是全球唯一的。请参阅http://www.coffer.com/mac_info/locate-unix.html
NIC 不需要有任何其他序列号,如果有的话,可能无法以电子方式读取。
If you haven't mucked with your MAC address since bootup, it will be globally unique. See http://www.coffer.com/mac_info/locate-unix.html
NICs aren't required to have any other serial number than that, and if they do it might not be electronically readable.
使用“ifconfig”获取
所有适配器的全局唯一MAC地址每个端口
Use "ifconfig" to get each ports globally unique MAC Addresses
For all adapters
使用 lspci -v 或 lspci -v | grep 串行。详细选项为您提供了更多详细信息,您可以在其中找到序列号。如果您有供应商 ID,则可以更轻松地在列表中筛选以找到您要查找的卡,例如使用这些命令之一并 grep 查找“串行”。
lspci -d 8086: -v
lspci -d 19ee: -v
lspci -d 15b3:-v
Use
lspci -v
orlspci -v | grep Serial
. The verbose option gives you more detail where you may find the serial number. If you have the vendor ID, it will be much easier to sift through the list to find the card that you are looking for by using for example one of these commands and grepping for 'Serial'.lspci -d 8086: -v
lspci -d 19ee: -v
lspci -d 15b3: -v