Proxmox VE中网卡名称一般以en开头。如ens0、enp1s0、enx803f5d098fc4。这其中有命名规则。
- eno<index>[n<phys_port_name>|d<dev_port>] — 板载设备
- ens<slot>[f<function>][n<phys_port_name>|d<dev_port>] — 以热插拔id命名的网卡
- en[P<domain>]p<bus>s<slot>[f<function>][n<phys_port_name>|d<dev_port>] — 以bus id命名的网卡
- enx<MAC> — 以mac地址命名的网卡
eno
这种常见于网卡芯片集成在主板上的网卡,常见于服务器,如x540,x722。
ens
这种常见于热插拔的PCIe网卡。如usb网卡等
enp
这种一般是插到或者集成到主板上的PCIe网卡。如:
enp125s0f1。125是pcie 槽位的10进制值。我们的PCIe bus id是16进制的,换算下来就是7d
7d:00.0 Ethernet controller: Huawei Technologies Co., Ltd. HNS GE/10GE/25GE RDMA Network Controller (rev 21)
7d:00.1 Ethernet controller: Huawei Technologies Co., Ltd. HNS GE/10GE/25GE Network Controller (rev 21)
如enp0s31f6,他是0号pcie总线,槽位为31(16进制为1f),function为6,所以他的pci位置应该是00:1f.6
00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection (2) I219-V (rev 31)
原文链接:https://imacos.top/2023/10/28/12-2/,转载请注明出处。
评论0