1SNMP::Info::Layer2::AerUosheirveC(o3n)tributed Perl DocuSmNeMnPt:a:tIinofno::Layer2::Aerohive(3)
2
3
4
6 SNMP::Info::Layer2::Aerohive - SNMP Interface to Aerohive Access Points
7
9 Eric Miller
10
12 # Let SNMP::Info determine the correct subclass for you.
13 my $aerohive = new SNMP::Info(
14 AutoSpecify => 1,
15 Debug => 1,
16 DestHost => 'myswitch',
17 Community => 'public',
18 Version => 2
19 )
20 or die "Can't connect to DestHost.\n";
21
22 my $class = $aerohive->class();
23 print "SNMP::Info determined this device to fall under subclass : $class\n";
24
26 Provides abstraction to the configuration information obtainable from
27 an Aerohive wireless Access Point through SNMP.
28
29 For speed or debugging purposes you can call the subclass directly, but
30 not after determining a more specific class using the method above.
31
32 my $aerohive = new SNMP::Info::Layer2::Aerohive(...);
33
34 Inherited Classes
35 SNMP::Info::Layer2
36
37 Required MIBs
38 AH-SYSTEM-MIB
39 AH-INTERFACE-MIB
40
41 Inherited MIBs
42 See "Required MIBs" in SNMP::Info::Layer2 for its MIB requirements.
43
45 These are methods that return scalar value from SNMP
46
47 $aerohive->vendor()
48 Returns 'aerohive'.
49
50 $aerohive->os()
51 Returns 'hive_os'.
52
53 $aerohive->serial()
54 Returns the serial number extracted from "ahSystemSerial".
55
56 $aerohive->os_ver()
57 Returns the OS versionl extracted from "sysDescr".
58
59 $aerohive->os_bin()
60 Returns the firmware version extracted from "ahFirmwareVersion".
61
62 $aerohive->model()
63 Returns the model extracted from "sysDescr".
64
65 Overrides
66 $aerohive->layers()
67 Returns 00000111. Layer 2 and Layer 3 functionality through
68 proprietary MIBs.
69
70 Global Methods imported from SNMP::Info::Layer2
71 See "GLOBALS" in SNMP::Info::Layer2 for details.
72
74 These are methods that return tables of information in the form of a
75 reference to a hash.
76
77 $aerohive->i_ssidlist()
78 Returns reference to hash. SSID's recognized by the radio
79 interface.
80
81 $aerohive->i_ssidmac()
82 With the same keys as i_ssidlist, returns the Basic service set
83 identification (BSSID), MAC address, the AP is using for the SSID.
84
85 $aerohive->i_80211channel()
86 Returns reference to hash. Current operating frequency channel of
87 the radio interface.
88
89 "ahRadioChannel"
90
91 $aerohive->dot11_cur_tx_pwr_mw()
92 Returns reference to hash. Current transmit power, in milliwatts,
93 of the radio interface.
94
95 "ahRadioTxPower"
96
97 $aironet->cd11_port()
98 Returns radio interfaces.
99
100 $aironet->cd11_mac()
101 Returns client radio interface MAC addresses.
102
103 Overrides
104 $aerohive->bp_index()
105 Simulates bridge MIB by returning reference to a hash mapping
106 i_index() to the interface iid.
107
108 $aerohive->qb_fw_port()
109 Returns reference to hash of forwarding table entries port
110 interface identifier (iid)
111
112 $aerohive->qb_fw_mac()
113 Returns reference to hash of forwarding table MAC Addresses
114
115 "ahClientMac"
116
117 $aerohive->qb_fw_vlan()
118 Returns reference to hash of forwarding table entries VLAN ID
119
120 "ahClientVLAN"
121
122 Arp Cache Table Augmentation
123 The AP has knowledge of MAC->IP mappings for wireless clients.
124 Augmenting the arp cache data with these MAC->IP mappings enables
125 visibility for stations that only communicate locally.
126
127 $aerohive->at_paddr()
128 "ahClientMac"
129
130 $aerohive->at_netaddr()
131 "ahClientIP"
132
133 Table Methods imported from SNMP::Info::Layer2
134 See "TABLE METHODS" in SNMP::Info::Layer2 for details.
135
136
137
138perl v5.28.0 2018-11-29 SNMP::Info::Layer2::Aerohive(3)