1SNMP::Info::CiscoQOS(3)User Contributed Perl DocumentatioSnNMP::Info::CiscoQOS(3)
2
3
4
6 SNMP::Info::CiscoQOS - SNMP Interface to Cisco's Quality of Service
7 MIBs
8
10 Alexander Hartmaier
11
13 # Let SNMP::Info determine the correct subclass for you.
14 my $qos = 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 = $qos->class();
24 print "SNMP::Info determined this device to fall under subclass : $class\n";
25
27 SNMP::Info::CiscoQOS is a subclass of SNMP::Info that provides
28 information about a cisco device's QoS config.
29
30 Use or create in a subclass of SNMP::Info. Do not use directly.
31
32 Inherited Classes
33 none.
34
35 Required MIBs
36 CISCO-CLASS-BASED-QOS-MIB
37
39 none
40
42 Service Policy Table ("cbQosServicePolicyTable")
43 This table describes the interfaces/media types and the policy map that
44 are attached to it.
45
46 $qos->qos_i_index()
47 ("cbQosIfIndex")
48
49 $qos->qos_i_type()
50 ("cbQosIfType")
51
52 $qos->qos_pol_direction()
53 ("cbQosPolicyDirection")
54
55 Class Map Objects Table ("cbQosObjectsTable")
56 $qos->qos_obj_index()
57 ("cbQosConfigIndex")
58
59 $qos->qos_obj_type()
60 ("cbQosObjectsType")
61
62 $qos->qos_obj_parent()
63 ("cbQosParentObjectsIndex")
64
65 Class Map Configuration Table ("cbQosCMCfgTable")
66 $qos->qos_cm_name()
67 ("cbQosCMName")
68
69 $qos->qos_cm_desc()
70 ("cbQosCMDesc")
71
72 $qos->qos_cm_info()
73 ("cbQosCMInfo")
74
75 Class Map Stats Table ("cbQosCMStatsTable")
76 $qos->qos_octet_pre()
77 ("cbQosCMPrePolicyByte")
78
79 $qos->qos_octet_post()
80 ("cbQosCMPostPolicyByte")
81
82 Queueing Configuration Table ("cbQosQueueingCfgTable")
83 $qos->qos_queueingcfg_bw()
84 ("cbQosQueueingCfgBandwidth")
85
86 $qos->qos_queueingcfg_bw_units()
87 ("cbQosQueueingCfgBandwidthUnits")
88
89
90
91perl v5.34.0 2022-01-21 SNMP::Info::CiscoQOS(3)