Post

Enabling SNMP on a Dell MXL blade switch (running FTOS)

Enabling SNMP on a Dell MXL blade switch (running FTOS)

Overview

It’s very easy to enable SNMP 1.0 / 2.0 management of the Dell MXL blade network switches. All it takes is one command really (“snmp-server community public ro”).

SSH to the network switch (MXL):

1
2
jonas@nyx:~$ ssh root@10.1.1.100  
root@10.1.1.100’s password:

Verify that there is no current SNMP configuration present:

1
TOKSCA4A2-MXL#show running-config snmp

Enter config mode and enable your community name – in this case “public” and specify if it’s Read-Only or Read-Write. In this case we use read only (ro):

1
2
3
TOKSCA4A2-MXL#conf  
TOKSCA4A2-MXL(conf)#snmp-server community public ro  
TOKSCA4A2-MXL(conf)#end

Verify that it worked:

1
2
3
4
TOKSCA4A2-MXL#show running-config snmp  
!  
snmp-server community public ro  
TOKSCA4A2-MXL#

All done! Add the switch to your SNMP manager (OME for example).

This post is licensed under CC BY 4.0 by the author.