1SNMP::Info::Aggregate(3Upsme)r Contributed Perl DocumentaStNiMoPn::Info::Aggregate(3pm)
2
3
4
6 SNMP::Info::Aggregate - SNMP Interface to ifStackTable Aggregated Links
7
9 SNMP::Info Developers
10
12 # Let SNMP::Info determine the correct subclass for you.
13 my $info = new SNMP::Info(
14 AutoSpecify => 1,
15 Debug => 1,
16 DestHost => 'myrouter',
17 Community => 'public',
18 Version => 2
19 )
20 or die "Can't connect to DestHost.\n";
21
22 my $class = $info->class();
23 print "SNMP::Info determined this device to fall under subclass : $class\n";
24
26 This class provides access to Aggregated Links configuration on devices
27 supporting "ifStackTable".
28
29 Use or create in a subclass of SNMP::Info. Do not use directly.
30
31 Inherited Classes
32 SNMP::Info
33
34 Required MIBs
35 IF-MIB
36
38 "agg_ports_ifstack"
39 Returns a HASH reference mapping from slave to master port for each
40 member of a port bundle on the device. Keys are ifIndex of the
41 slave ports, Values are ifIndex of the corresponding master ports.
42
43
44
45perl v5.38.0 2023-09-04 SNMP::Info::Aggregate(3pm)