From b7ac11222a5dfa6bf1c19d625172e610fb786829 Mon Sep 17 00:00:00 2001 From: Alexander Hartmaier Date: Thu, 25 Oct 2018 10:30:43 +0200 Subject: [PATCH] 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'. --- Changes | 1 + lib/SNMP/Info.pm | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/Changes b/Changes index 9cfa1f79..4fd20ec5 100644 --- a/Changes +++ b/Changes @@ -6,6 +6,7 @@ Version 3.61 (2018-05-09) * #195 IP address table - IPv4 Address Table will use the IP-MIB::ipAddressTable if the deprecated IP-MIB::ipAddrTable doesn't return results + * Support for Cisco Firepower Threat Defense [BUG FIXES] diff --git a/lib/SNMP/Info.pm b/lib/SNMP/Info.pm index d891cdbc..22dc2de0 100644 --- a/lib/SNMP/Info.pm +++ b/lib/SNMP/Info.pm @@ -1811,6 +1811,10 @@ sub device_type { $objtype = 'SNMP::Info::Layer3::CiscoASA' 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 $objtype = 'SNMP::Info::Layer3::CiscoFWSM' if ( $desc =~ /Cisco Firewall Services Module/i );