Start a Conversation

Unsolved

T2

2 Posts

6908

March 20th, 2019 13:00

Help using racadm remotely ...

When I run this command
racadm -get iDRAC.IPMILan
I get the proper result output

When I try and run it over the network
racadm -r 10.60.60.60 -u root -p xxxxxxxxxxxx get iDRAC.IPMILan
I get this result
ERROR: Unable to connect to RAC at specified IP address.
I know the IP address is correct, I can ping it and log in via a browser. I have 400 servers that I need to check this setting and I do not want to log into them all manually via the GUI. What could cause this IP address issue?

March 20th, 2019 13:00

Here is what I ended up doing $servers = get-content("\\xxxxxx\c$\Temp\Security Patches\Servers\serversComplete(E2013)-Alphabetical.txt"); foreach ($server in $servers) { Write-Host $server; Invoke-Command -ComputerName $server -ScriptBlock { racadm get iDRAC.IPMILan } }
No Events found!

Top