在linux中查找网卡序列号的命令是什么?

发布于 2024-10-01 14:12:46 字数 72 浏览 9 评论 0原文

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

沙与沫 2024-10-08 14:12:46

我不确定序列号,但 lspci 为我提供了有关以太网卡的以下信息:

04:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02)

I'm not sure about serial numbers, but lspci gives me the following information about my ethernet card:

04:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02)
时光瘦了 2024-10-08 14:12:46

如果您自启动以来没有修改过 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.

旧故 2024-10-08 14:12:46

使用“ifconfig”获取

ifconfig -a

所有适配器的全局唯一MAC地址每个端口

Use "ifconfig" to get each ports globally unique MAC Addresses

ifconfig -a

For all adapters

独闯女儿国 2024-10-08 14:12:46

使用 lspci -v 或 lspci -v | grep 串行。详细选项为您提供了更多详细信息,您可以在其中找到序列号。如果您有供应商 ID,则可以更轻松地在列表中筛选以找到您要查找的卡,例如使用这些命令之一并 grep 查找“串行”。

  • 对于 intel 网卡,使用 lspci -d 8086: -v
  • 对于 netronome 网卡,使用 lspci -d 19ee: -v
  • 对于 mellanox 网卡,使用 lspci -d 15b3:-v

Use lspci -v or lspci -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'.

  • For intel network cards, use lspci -d 8086: -v
  • For netronome network cards, use lspci -d 19ee: -v
  • For mellanox network cards, use lspci -d 15b3: -v
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文