1Info::Layer2::N2270(3)User Contributed Perl DocumentationInfo::Layer2::N2270(3)
2
3
4
6 SNMP::Info::Layer2::N2270 - SNMP Interface to Nortel 2270 Series
7 Wireless Switch
8
10 Eric Miller
11
13 #Let SNMP::Info determine the correct subclass for you.
14
15 my $n2270 = new SNMP::Info(
16 AutoSpecify => 1,
17 Debug => 1,
18 DestHost => 'myswitch',
19 Community => 'public',
20 Version => 2
21 )
22
23 or die "Can't connect to DestHost.\n";
24
25 my $class = $n2270->class();
26 print " Using device sub class : $class\n";
27
29 Provides abstraction to the configuration information obtainable from a
30 Nortel 2270 Series Wireless Switch through SNMP.
31
32 For speed or debugging purposes you can call the subclass directly, but
33 not after determining a more specific class using the method above.
34
35 my $n2270 = new SNMP::Info::Layer2::N2270(...);
36
37 Inherited Classes
38 SNMP::Info
39 SNMP::Info::Bridge
40 SNMP::Info::SONMP
41 SNMP::Info::Airespace
42
43 Required MIBs
44 Inherited Classes' MIBs
45 See "Required MIBs" in SNMP::Info for its own MIB requirements.
46
47 See "Required MIBs" in SNMP::Info::Bridge for its own MIB
48 requirements.
49
50 See "Required MIBs" in SNMP::Info::SONMP for its own MIB
51 requirements.
52
53 See "Required MIBs" in SNMP::Info::Airespace for its own MIB
54 requirements.
55
57 These are methods that return scalar value from SNMP
58
59 $n2270->vendor()
60 Returns 'nortel'
61
62 $n2270->os()
63 Returns 'nortel'
64
65 $n2270->model()
66 Cross references $bayhub->id() to the SYNOPTICS-ROOT-MIB and
67 returns the results.
68
69 Removes "sreg-WLANSecuritySwitch" from the model name
70
71 Overrides
72 $bayhub->index_factor()
73 Required by SNMP::Info::SONMP. Number representing the number of
74 ports reserved per slot within the device MIB. Returns 256.
75
76 $bayhub->slot_offset()
77 Required by SNMP::Info::SONMP. Offset if slot numbering does not
78 start at 0. Returns 0.
79
80 Globals imported from SNMP::Info
81 See documentation in "GLOBALS" in SNMP::Info for details.
82
83 Globals imported from SNMP::Info::Bridge
84 See documentation in "GLOBALS" in SNMP::Info::Bridge for details.
85
86 Global Methods imported from SNMP::Info::SONMP
87 See documentation in "GLOBALS" in SNMP::Info::SONMP for details.
88
89 Global Methods imported from SNMP::Info::Airespace
90 See documentation in "GLOBALS" in SNMP::Info::Airespace for details.
91
93 These are methods that return tables of information in the form of a
94 reference to a hash.
95
96 Overrides
97 None
98
99 Table Methods imported from SNMP::Info
100 See documentation in "TABLE METHODS" in SNMP::Info for details.
101
102 Table Methods imported from SNMP::Info::Bridge
103 See documentation in "TABLE METHODS" in SNMP::Info::Bridge for details.
104
105 Table Methods imported from SNMP::Info::SONMP
106 See documentation in "TABLE METHODS" in SNMP::Info::SONMP for details.
107
108 Table Methods imported from SNMP::Info::Airespace
109 See documentation in "TABLE METHODS" in SNMP::Info::Airespace for
110 details.
111
112
113
114perl v5.12.0 2009-06-12 Info::Layer2::N2270(3)