From d46842bd8eda019ef146f6683b33586a2ef139f3 Mon Sep 17 00:00:00 2001 From: Eric Miller <> Date: Fri, 29 Sep 2006 03:13:58 +0000 Subject: [PATCH] Detection of older dual speed Bay hubs. SF Patch 1557530 - OC-48 interfaces - Bradley Baetz --- Info.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Info.pm b/Info.pm index 2898338e..ab544305 100644 --- a/Info.pm +++ b/Info.pm @@ -993,6 +993,7 @@ sub device_type { # Bay Hub $objtype = 'SNMP::Info::Layer1::Bayhub' if ($desc =~ /\bNMM.*Agent/); + $objtype = 'SNMP::Info::Layer1::Bayhub' if ($desc =~ /\bBay\s*Stack.*Hub/i); # Synoptics Hub # This will override Bay Hub only for specific devices supported by this class @@ -2000,6 +2001,7 @@ Makes human friendly speed ratings using %SPEED_MAP '622000000' => 'OC-12', '622080000' => 'OC-12', '1000000000' => '1.0 Gbps', + '2488000000' => 'OC-48', ) =cut @@ -2039,6 +2041,7 @@ Makes human friendly speed ratings using %SPEED_MAP '622000000' => 'OC-12', '622080000' => 'OC-12', '1000000000' => '1.0 Gbps', + '2488000000' => 'OC-48', ); sub munge_speed {