Changed HP detection in device_type()

This commit is contained in:
Max Baker
2003-01-17 18:49:38 +00:00
parent 5c0fe59627
commit fd7cf06a07

View File

@@ -1,4 +1,5 @@
# SNMP::Info - Max Baker <max@warped.org> # SNMP::Info - Max Baker <max@warped.org>
# $Id$
# #
# Copyright (c) 2002, Regents of the University of California # Copyright (c) 2002, Regents of the University of California
# All rights reserved. # All rights reserved.
@@ -476,8 +477,8 @@ sub device_type {
# Catalyst WS-C series override (2926,5xxx,6xxx) # Catalyst WS-C series override (2926,5xxx,6xxx)
$objtype = 'SNMP::Info::Layer2::Catalyst' if ($desc =~ /WS-C\d{4}/); $objtype = 'SNMP::Info::Layer2::Catalyst' if ($desc =~ /WS-C\d{4}/);
# HP ProCurve # HP
$objtype = 'SNMP::Info::Layer2::HP' if ($desc =~ /procurve/i); $objtype = 'SNMP::Info::Layer2::HP' if ($desc =~ /hp/i);
# Bay Switch # Bay Switch
$objtype = 'SNMP::Info::Layer2::Bay' if ($desc =~ /bay/i); $objtype = 'SNMP::Info::Layer2::Bay' if ($desc =~ /bay/i);