cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
4775
Views
0
Helpful
2
Replies

What is the OID used by ASA 55XX series to get serial number

srego4
Level 2
Level 2

Does anyone know what the equivalent oid as chassisid -  .1.3.6.1.4.1.9.3.6.3.0, which gets the serial number for most cisco switches/routers is for the ASA 55XX series firewalls.

thanks

1 Accepted Solution

Accepted Solutions

yjdabear
VIP Alumni
VIP Alumni

Walk the entPhysicalSerialNum (.1.3.6.1.2.1.47.1.1.1.1.11) tree. Here's an example against an ASA 5585 running the asa842 image:

snmpwalk -v 1 -c $snmp-community-string $asa.ip.addr.here 1.3.6.1.2.1.47.1.1.1.1.11

...

SNMPv2-SMI::mib-2.47.1.1.1.1.11.1 = ""

SNMPv2-SMI::mib-2.47.1.1.1.1.11.2 = ""

SNMPv2-SMI::mib-2.47.1.1.1.1.11.3 = ""

SNMPv2-SMI::mib-2.47.1.1.1.1.11.4 = STRING: "JXXXXX####"

SNMPv2-SMI::mib-2.47.1.1.1.1.11.5 = ""

...

View solution in original post

2 Replies 2

yjdabear
VIP Alumni
VIP Alumni

Walk the entPhysicalSerialNum (.1.3.6.1.2.1.47.1.1.1.1.11) tree. Here's an example against an ASA 5585 running the asa842 image:

snmpwalk -v 1 -c $snmp-community-string $asa.ip.addr.here 1.3.6.1.2.1.47.1.1.1.1.11

...

SNMPv2-SMI::mib-2.47.1.1.1.1.11.1 = ""

SNMPv2-SMI::mib-2.47.1.1.1.1.11.2 = ""

SNMPv2-SMI::mib-2.47.1.1.1.1.11.3 = ""

SNMPv2-SMI::mib-2.47.1.1.1.1.11.4 = STRING: "JXXXXX####"

SNMPv2-SMI::mib-2.47.1.1.1.1.11.5 = ""

...

thank you very much.