私は http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/ を見てきました。これは、一貫した/予測可能なデバイスの命名の根拠を説明し、次に 生成されるデバイス名 :
* Two character prefixes based on the type of interface:
* en -- ethernet
* sl -- serial line IP (slip)
* wl -- wlan
* ww -- wwan
*
* Type of names:
* b<number> -- BCMA bus core number
* ccw<name> -- CCW bus group name
* o<index> -- on-board device index number
* s<slot>[f<function>][d<dev_port>] -- hotplug slot index number
* x<MAC> -- MAC address
* [P<domain>]p<bus>s<slot>[f<function>][d<dev_port>]
* -- PCI geographical location
* [P<domain>]p<bus>s<slot>[f<function>][u<port>][..][c<config>][i<interface>]
* -- USB port number chain
デバイスeno16777736
を持っているとしましょう:なぜそれが呼ばれているのですか?これはイーサネットカードです。しかし、このインターフェイスの名前の残りの部分に戻るにはどうすればよいですか?
私は/sys/class/net/eno16777736
を調べてみました。
eno16777736 -> ../../devices/pci0000:00/0000:00:11.0/0000:02:01.0/net/eno16777736
これをどのように解釈するか、またはこの情報を使用してeno16777736
にアクセスできるかどうかがわかりません。
更新
したがって、16777736
はデバイスのacpi_index
です。 https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-bus-pci :
What: /sys/bus/pci/devices/.../acpi_index
Date: July 2010
Contact: Narendra K <[email protected]>, [email protected]
Description:
Reading this attribute will provide the firmware
given instance (ACPI _DSM instance number) of the PCI device.
The attribute will be created only if the firmware has given
an instance number to the PCI device. ACPI _DSM instance number
will be given priority if the system firmware provides SMBIOS
type 41 device type instance also.
本当に:
core@localhost /sys/devices/pci0000:00/0000:00:11.0/0000:02:01.0 $ find . -type f | xargs grep 1677 2> /dev/null
./net/eno16777736/uevent:INTERFACE=eno16777736
./acpi_index:16777736
さらに、ifconfig
またはip link
とlspci
のデバイスからの出力を調整するには:
$ ifconfig
eno16777736: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 10.0.0.37 netmask 255.255.255.0 broadcast 10.0.0.255
inet6 fe80::20c:29ff:fe70:c039 prefixlen 64 scopeid 0x20<link>
inet6 2601:a:7c0:66:20c:29ff:fe70:c039 prefixlen 64 scopeid 0x0<global>
ether 00:0c:29:70:c0:39 txqueuelen 1000 (Ethernet)
RX packets 326 bytes 37358 (36.4 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 172 bytes 45999 (44.9 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
device interrupt 19 base 0x2000
「デバイス割り込み19」に注意してください。そして、「IRQ 19」を持つlspci -v
から:
02:01.0 Ethernet controller: Advanced Micro Devices, Inc. [AMD] 79c970 [PCnet32 LANCE] (rev 10)
Subsystem: Advanced Micro Devices, Inc. [AMD] PCnet - Fast 79C971
Physical Slot: 33
Flags: bus master, medium devsel, latency 64, IRQ 19
I/O ports at 2000 [size=128]
[virtual] Expansion ROM at fd500000 [disabled] [size=64K]
Kernel driver in use: pcnet32
ここには「Phyiscal Slot 33」も表示され、実際には、VMWareがVMを起動して、インターフェイス名としてens33
を取得します。したがって、なぜeno16777736を選択するのかは不明です。しかし、16777736はacpi_index
からのもので、33はPCIスロットからのものです。
イーサネットの場合はen
オンボード用o
16777736
は、ファームウェア(BIOS/EFI)によって提供されるデバイスのインデックスです。インデックスを1
で開始するのが理にかなっています。どちらか、またはあなたは賢明なファームウェアと1600万以上のオンボードデバイスを持っています!しかし、おそらく VMware Community で問題が発生した(しかし回答されていない)ことがわかります。この数値は、acpi_index
で発生する可能性のある負のオーバーフローから発生しているようです。
システムのudev
から同様の情報を表示するには、次のようにします。
udevadm info --name=/dev/eno16777736 --attribute-walk
VMwareを使用していますか?
nix Stackexchangeサイトには質問と回答がありました これについて。 NIC=に関する情報がBIOSによって提供されているようです。
eth0
(または他の名前)に変更したい場合は、udevを使用して変更できます。 これは便利なガイドです そうするための。