是否可以使用racadm将iDRAC配置从默认的专用端口更改为服务器的主要NIC/LOM端口之一?
除了配置网络设置 (ip/子网/网关)之外,文档中的内容相对较少,这是通过以下方法完成的:
racadm setniccfg -s $ipaddress $subnetmask $gateway我能够查看完整的网络配置(以及配置iDRAC用于:
racadm getniccfg我将使用哪些选项/参数来将iDRAC专用于NIC1端口?
发布于 2022-11-29 16:16:01
继续在网上挖掘,并找到了解决方案。在这里重新发布,因为很难找到(戴尔服务器支持人员也很难找到)
Check iDRAC config
racadm getniccfgVerify正在使用的端口(将eno1更改为eth1或其他配置为服务器的端口)
ethtool eno1
ethtool eno2
ethtool eno3
ethtool eno4
(check last line of output for "Link detected: yes")Check iDRAC网卡选择
racadm get iDRAC.NIC.SelectionSet iDRAC使用共享网络端口LOM1 1(查找在上面use输出中检测到的链接)
racadm set iDRAC.NIC.Selection LOM1Check iDRAC网卡选择 racadm获得iDRAC.NIC.Selection
Set iDRAC网络配置
racadm setniccfg -s Check iDRAC config
racadm getniccfg你应该看到这样的东西:
LOM Status:
NIC Selection = LOM1
Link Detected = No
Speed = Unknown
Duplex Mode = Unknown
Active NIC = None
Active LOM in Shared Mode = None
FailOver LOM in Shared Mode = None
Static IPv4 settings:
Static IP Address =
Static Subnet Mask =
Static Gateway = To从LOM1改为专用的
racadm set iDRAC.NIC.Selection 1Additional iDRAC.NIC选项
有关配置选项的完整列表,请使用
racadm help iDRAC.NICTo视图完整系统配置
racadm getsysinfohttps://serverfault.com/questions/1116899
复制相似问题