我一般都熟悉hpacucli和hpasmcli但是如何确定网卡安装在哪个插槽中?我需要能够映射到插槽和MAC(从那里到
Linux看到的接口),但是SHOW SERVER只给出了板载端口的MAC.谢谢!
此外,我知道远程照明驱动灯的技术,以便数据中心的技术人员进行热交换 – 网卡是否有类似的功能?
解决方法
与使用ID灯标识服务器或特定磁盘类似,ethtool实用程序具有-p开关:
-p –identify
Initiates adapter-specific action intended to enable an operator
to easily identify the adapter by sight. Typically this involves blinking one or more LEDs on the specific network port.
或者,Linux下的/ sys目录将具有到PCI端口的正确映射(在这种情况下,两个板载NIC和第二个双端口PCI卡):
# find /sys | grep -e eth.*/address /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/net/eth0/address /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.1/net/eth1/address /sys/devices/pci0000:00/0000:00:07.0/0000:03:00.0/net/eth2/address /sys/devices/pci0000:00/0000:00:07.0/0000:03:00.1/net/eth3/address