1Info::Layer2::Aironet(3U)ser Contributed Perl DocumentatiIonnfo::Layer2::Aironet(3)
2
3
4

NAME

6       SNMP::Info::Layer2::Aironet - SNMP Interface to Cisco Aironet devices
7       running IOS.
8

AUTHOR

10       Max Baker
11

SYNOPSIS

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

DESCRIPTION

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

GLOBALS

55       These are methods that return scalar value from SNMP
56
57       $aironet->discription()
58           Adds info from method e_descr() from SNMP::Info::Entity
59
60       $aironet->vendor()
61           Returns 'cisco'
62
63       $aironet->description()
64           System description
65
66   Globals imported from SNMP::Info::Layer2
67       See documentation in "GLOBALS" in SNMP::Info::Layer2 for details.
68
69   Globals imported from SNMP::Info::Entity
70       See documentation in "GLOBALS" in SNMP::Info::Entity for details.
71
72   Globals imported from SNMP::Info::EtherLike
73       See documentation in "GLOBALS" in SNMP::Info::EtherLike for details.
74

TABLE METHODS

76       $aironet->cd11_port()
77           Returns radio interfaces.
78
79       $aironet->cd11_mac()
80           Returns radio interface MAC addresses.
81
82       $aironet->cd11_ssid()
83           Returns radio interface ssid.
84
85       $aironet->dot11_cur_tx_pwr_mw()
86           Current transmit power, in milliwatts, of the radio interface.
87
88   Overrides
89       $aironet->interfaces()
90           Uses the i_description() field.
91
92       $aironet->i_mac()
93           MAC address of the interface. Note this is just the MAC of the
94           port, not anything connected to it.
95
96       $aironet->i_duplex()
97           Crosses information from SNMP::Info::EtherLike to get duplex info
98           for interfaces.
99
100       $aironet->bp_index()
101           Returns reference to hash of bridge port table entries map back to
102           interface identifier (iid)
103
104       $aironet->fw_mac()
105           Returns reference to hash of forwarding table MAC Addresses
106
107       $aironet->fw_port()
108           Returns reference to hash of forwarding table entries port
109           interface identifier (iid)
110
111       $aironet->i_vlan()
112           Returns a mapping between "ifIndex" and the PVID or default VLAN.
113
114       $aironet->v_index()
115           Returns VLAN IDs
116
117       $aironet->v_name()
118           Returns VLAN names
119
120       $aironet->i_ssidlist()
121           Returns a list of SSIDs associated with interfaces.  This function
122           is "MBSSID" aware, so when using "MBSSID" can map SSIDs to the sub-
123           interface to which they belong.
124
125       $aironet->i_ssidbcast()
126           With the same keys as i_ssidlist, returns whether the given SSID is
127           being broadcast.
128
129   Table Methods imported from SNMP::Info::Layer2
130       See documentation in "TABLE METHODS" in SNMP::Info::Layer2 for details.
131
132   Table Methods imported from SNMP::Info::Entity
133       See documentation in "TABLE METHODS" in SNMP::Info::Entity for details.
134
135   Table Methods imported from SNMP::Info::EtherLike
136       See documentation in "TABLE METHODS" in SNMP::Info::EtherLike for
137       details.
138

Data Munging Callback Subroutines

140       $aironet->munge_cd11_txrate()
141           Converts units of half a megabit to human readable string.
142
143
144
145perl v5.12.0                      2009-06-12          Info::Layer2::Aironet(3)
Impressum