1 Rookie
•
1 Message
0
32
May 21st, 2025 08:31
RACADM Command to set snmpv3 Protocol
Need help with setting snmpv3 Protocol using RACADM command when I run the ones listed in previous posts its says Not available.
Any help would be appreciated.
No Events found!
DELL-Chris H
Moderator
•
9.4K Posts
0
May 21st, 2025 12:41
Jamieob,
Normally when you receive a "Not available" error, it is due to:
What you can start with is enabling SNMP and set the SNMPv3 protocol, which you can do with the following commands
racadm set iDRAC.SNMP.AgentEnable 1
racadm set iDRAC.SNMP.ProtocolVersion 3
After that you would need to configure the SNMPv3 user, which you can see an example of below.
racadm set iDRAC.SNMPv3User.1.Username snmpuser
racadm set iDRAC.SNMPv3User.1.AuthProtocol MD5
racadm set iDRAC.SNMPv3User.1.AuthPassword yourAuthPassword
racadm set iDRAC.SNMPv3User.1.PrivProtocol AES
racadm set iDRAC.SNMPv3User.1.PrivPassword yourPrivPassword
racadm set iDRAC.SNMPv3User.1.Enable 1
(AuthProtocol can be MD5 or SHA, and PrivProtocol can be AES or DES.)
Lastly, you would want to confirm it with the following
racadm get iDRAC.SNMP
racadm get iDRAC.SNMPv3User.1
Let me know if this helps.