Support for Cisco Firepower Threat Defense (#278)

When sending SNMP requests to one of the data interfaces of an FTD you're
talking to a Cisco ASA running as a process called 'lina'.
This commit is contained in:
Alexander Hartmaier
2018-10-25 10:30:43 +02:00
committed by Jeroen van Ingen Schenau
parent b24da8c380
commit b7ac11222a
2 changed files with 5 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ Version 3.61 (2018-05-09)
* #195 IP address table - IPv4 Address Table will use the * #195 IP address table - IPv4 Address Table will use the
IP-MIB::ipAddressTable if the deprecated IP-MIB::ipAddrTable doesn't IP-MIB::ipAddressTable if the deprecated IP-MIB::ipAddrTable doesn't
return results return results
* Support for Cisco Firepower Threat Defense
[BUG FIXES] [BUG FIXES]

View File

@@ -1811,6 +1811,10 @@ sub device_type {
$objtype = 'SNMP::Info::Layer3::CiscoASA' $objtype = 'SNMP::Info::Layer3::CiscoASA'
if ( $desc =~ /Cisco Adaptive Security Appliance/i ); if ( $desc =~ /Cisco Adaptive Security Appliance/i );
# Cisco FTD includes an ASA running as lina process
$objtype = 'SNMP::Info::Layer3::CiscoASA'
if ( $desc =~ /Cisco Firepower Threat Defense/i );
# Cisco FWSM # Cisco FWSM
$objtype = 'SNMP::Info::Layer3::CiscoFWSM' $objtype = 'SNMP::Info::Layer3::CiscoFWSM'
if ( $desc =~ /Cisco Firewall Services Module/i ); if ( $desc =~ /Cisco Firewall Services Module/i );