Add Cisco FWSM detection

This commit is contained in:
Max Baker
2009-06-08 22:06:24 +00:00
parent 3a3fc548ca
commit 2539692016
2 changed files with 6 additions and 0 deletions

View File

@@ -1422,6 +1422,11 @@ sub device_type {
# Cisco ASA
$objtype = 'SNMP::Info::Layer3::Cisco'
if ( $desc =~ /Cisco Adaptive Security Appliance/i );
# Cisco FWSM
$objtype = 'SNMP::Info::Layer3::Cisco'
if ( $desc =~ /Cisco Firewall Services Module/i );
}
return $objtype;