RSS Amplifier

Blog

How can I get the Dell iDRAC IP address from Linux? - Server Fault

most recent 30 from serverfault.com

serverfault.comSource feed ↗4 posts

Dormant Last read · last published · next check
Read 2 days ago and current, but nothing has been published for 16 months.

Written by

Latest posts

Answer by Zhi Guo for How can I get the Dell iDRAC IP address from Linux?

# List ILO network ipmitool lan print 1 # Set ILO network ipmitool lan set 1 ipaddr 192.168.10.10 ipmitool lan set 1 netmask 255.255.255.0 ipmitool lan set 1 defgw ipaddr 192.168.10.1

Answer by grawity for How can I get the Dell iDRAC IP address from Linux?

The vendor-independent method might be to get the settings of the IPMI LAN channel: ipmitool lan print or with FreeIPMI, ipmi-config -o -S Lan_Conf [-v] This works at least on DRAC5 and iLO4, although I am not 100% sure whether the fields remain available when IPMI-over-LAN is disabled (as I still keep it active here for the Serial-over-LAN feature). This can also be used to set the IP address of…

How can I get the Dell iDRAC IP address from Linux?

Somehow, the entry for our iDRAC got lost from the DNS. Is there a way to discover the iDRAC IP address from Linux (RHEL 8) running on the node? Rebooting to check the physical console is not an option.

Answer by Jaroslav Kucera for How can I get the Dell iDRAC IP address from Linux?

The IP address of the iDRAC can be discovered with the ipmitool command (as root): ipmitool mc getsysinfo delloem_url It returns the complete URL in this form: https://<iDRAC IP>:443 (It was tested with Dell R740, iDRAC 7.00.00.171 and RHEL 8.10.)