From 0d8aa25e636025167fecbbee007cf0d5159813ed Mon Sep 17 00:00:00 2001 From: Max Baker <> Date: Thu, 24 Jul 2003 00:25:36 +0000 Subject: [PATCH] added defaults and thanks --- Info.pm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Info.pm b/Info.pm index f9d07e4c..cb33e49f 100644 --- a/Info.pm +++ b/Info.pm @@ -371,6 +371,11 @@ Subclass for Cisco Catalyst 3550 2/3 switches running IOS. =back +=head2 Thanks + +Thanks for testing and coding help (in no particular order) to : +Andy Ford, Brian Wilson, Jean-Philippe Luiggi, Dána Watanabe + =head1 USAGE =head2 Constructor @@ -491,8 +496,8 @@ sub new { $new_obj->{store} = $store; $new_obj->{sess} = $sess; $new_obj->{args} = \%args; - $new_obj->{snmp_ver} = $args{Version}; - $new_obj->{snmp_comm} = $args{Community}; + $new_obj->{snmp_ver} = $args{Version} || 2; + $new_obj->{snmp_comm} = $args{Community} || 'public'; return $auto_specific ? $new_obj->specify() : $new_obj;