1SNMP::Info::Layer2::AirUosneert(C3o)ntributed Perl DocumSeNnMtPa:t:iIonnfo::Layer2::Aironet(3)
2
3
4
6 SNMP::Info::Layer2::Aironet - SNMP Interface to Cisco Aironet devices
7 running IOS.
8
10 Max Baker
11
13 # Let SNMP::Info determine the correct subclass for you.
14 my $aironet = new SNMP::Info(
15 AutoSpecify => 1,
16 Debug => 1,
17 DestHost => 'myswitch',
18 Community => 'public',
19 Version => 2
20 )
21 or die "Can't connect to DestHost.\n";
22
23 my $class = $aironet->class();
24 print "SNMP::Info determined this device to fall under subclass : $class\n";
25
27 Provides interface to SNMP Data available on newer Aironet devices
28 running Cisco IOS.
29
30 Note there are two classes for Aironet devices :
31
32 SNMP::Info::Layer3::Aironet
33 This class is for devices running Aironet software (older)
34
35 SNMP::Info::Layer2::Aironet
36 This class is for devices running Cisco IOS software (newer)
37
38 For speed or debugging purposes you can call the subclass directly, but
39 not after determining a more specific class using the method above.
40
41 my $aironet = new SNMP::Info::Layer2::Aironet(...);
42
43 Inherited Classes
44 SNMP::Info::Layer2
45 SNMP::Info::Entity
46 SNMP::Info::EtherLike
47 SNMP::Info::CiscoStats
48 SNMP::Info::CiscoConfig
49
50 Required MIBs
51 Inherited Classes
52 MIBs required by the inherited classes listed above.
53
55 These are methods that return scalar value from SNMP
56
57 $aironet->vendor()
58 Returns 'cisco'
59
60 $aironet->description()
61 System description. Adds info from method e_descr() from
62 SNMP::Info::Entity
63
64 Globals imported from SNMP::Info::Layer2
65 See documentation in "GLOBALS" in SNMP::Info::Layer2 for details.
66
67 Globals imported from SNMP::Info::Entity
68 See documentation in "GLOBALS" in SNMP::Info::Entity for details.
69
70 Globals imported from SNMP::Info::EtherLike
71 See documentation in "GLOBALS" in SNMP::Info::EtherLike for details.
72
74 $aironet->cd11_port()
75 Returns radio interfaces.
76
77 $aironet->cd11_mac()
78 Returns client radio interface MAC addresses.
79
80 $aironet->cd11_ssid()
81 Returns radio interface ssid.
82
83 $aironet->dot11_cur_tx_pwr_mw()
84 Current transmit power, in milliwatts, of the radio interface.
85
86 Overrides
87 $aironet->interfaces()
88 Uses the i_description() field.
89
90 $aironet->i_mac()
91 MAC address of the interface. Note this is just the MAC of the
92 port, not anything connected to it.
93
94 $aironet->i_duplex()
95 Crosses information from SNMP::Info::EtherLike to get duplex info
96 for interfaces.
97
98 $aironet->bp_index()
99 Returns reference to hash of bridge port table entries map back to
100 interface identifier (iid)
101
102 $aironet->fw_mac()
103 Returns reference to hash of forwarding table MAC Addresses
104
105 $aironet->fw_port()
106 Returns reference to hash of forwarding table entries port
107 interface identifier (iid)
108
109 $aironet->i_vlan()
110 Returns a mapping between "ifIndex" and the PVID or default VLAN.
111
112 $aironet->v_index()
113 Returns VLAN IDs
114
115 $aironet->v_name()
116 Returns VLAN names
117
118 $aironet->i_ssidlist()
119 Returns a list of SSIDs associated with interfaces. This function
120 is "MBSSID" aware, so when using "MBSSID" can map SSIDs to the sub-
121 interface to which they belong.
122
123 $aironet->i_ssidbcast()
124 With the same keys as i_ssidlist, returns whether the given SSID is
125 being broadcast.
126
127 $aironet->i_ssidmac()
128 With the same keys as i_ssidlist, returns the Basic service set
129 identification (BSSID), MAC address, the AP is using for the SSID.
130
131 $aironet ps1_status()
132 Returns the PoE injector status based on "cpoePdSupportedPower" and
133 "cpoePdSupportedPowerMode".
134
135 Table Methods imported from SNMP::Info::Layer2
136 See documentation in "TABLE METHODS" in SNMP::Info::Layer2 for details.
137
138 Table Methods imported from SNMP::Info::Entity
139 See documentation in "TABLE METHODS" in SNMP::Info::Entity for details.
140
141 Table Methods imported from SNMP::Info::EtherLike
142 See documentation in "TABLE METHODS" in SNMP::Info::EtherLike for
143 details.
144
146 $aironet->munge_cd11_txrate()
147 Converts units of half a megabit to human readable string.
148
149
150
151perl v5.28.1 2019-04-04 SNMP::Info::Layer2::Aironet(3)