I wanted to know if there is any racadm command to get the ip address of the attached server's in a dell VRTX chassis.
racadm getslotname
will give the Host Name of the server but not the ip address.
Thanks in advance.
I wanted to know if there is any racadm command to get the ip address of the attached server's in a dell VRTX chassis.
racadm getslotname
will give the Host Name of the server but not the ip address.
Thanks in advance.
The slotname is a descriptor set by the chassis manager and not retrieved from the installed operating system on your blade server and may not actually match your hostname.
You can get the ip-address for the iDrac management console with racadm getniccfg -m server-<n>
where <n>
is the slot number 1-16:
racadm getniccfg -m server-1
Normally you would use the chassis management console to configure the iDrac interface for each blade in the chassis, and then log into that iDrac management interface to manage that particular blade server from the remote console. And tehre you can manage the ip-address for that server.
E.G. Slots 1 & 2 are our webservers.
racadm -i 1 webserver1
racadm -i 2 webserver2
And verify with
racadm getslotname -i 1
Configure the iDrac interfaces for those so we can manage them with racadm setnicfg
and racadm deploy
are somewhat interchangeable in configuring a static network address -u root -p <password>
(we can only configure the administrator password), server-<n>
(where <n>
is the slot number 1-16) and the -s ip-adress netmask gateway
network settings. :
racadm setniccfg -m server-1 192.168.10.101 255.255.255.0 192.168.10.1
racadm deploy server-1 -u root -p webserver1_passw0rd -s 192.168.10.101 255.255.255.0 192.168.10.1
And verify with :
racadm getniccfg -m server-1
racadm ifconfig
will display the ip-configuration of the CMC for you.