1SNMP::Info::AdslLine(3)User Contributed Perl DocumentatioSnNMP::Info::AdslLine(3)
2
3
4
6 SNMP::Info::AdslLine - SNMP Interface to the ADSL-LINE-MIB
7
9 Alexander Hartmaier
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 SNMP::Info::AdslLine is a subclass of SNMP::Info that provides
27 information about the adsl interfaces of a device.
28
29 Use or create in a subclass of SNMP::Info. Do not use directly.
30
31 Inherited Classes
32 none.
33
34 Required MIBs
35 ADSL-LINE-MIB
36
37 MIBs can be found at ftp://ftp.cisco.com/pub/mibs/v2/v2.tar.gz
38
40 none
41
43 ATUC channel table ("adslAtucChanTable")
44 This table provides one row for each ATUC channel. ADSL channel
45 interfaces are those "ifEntries" where "ifType" is equal to
46 adslInterleave(124) or adslFast(125).
47
48 $info->adsl_atuc_interleave_delay()
49 ("adslAtucChanInterleaveDelay")
50
51 $info->adsl_atuc_curr_tx_rate()
52 ("adslAtucChanCurrTxRate")
53
54 $info->adsl_atuc_prev_tx_rate()
55 ("adslAtucChanPrevTxRate")
56
57 $info->adsl_atuc_crc_block_len()
58 ("adslAtucChanCrcBlockLength")
59
60 ATUR channel table ("adslAturChanTable")
61 This table provides one row for each ATUR channel. ADSL channel
62 interfaces are those "ifEntries" where "ifType" is equal to
63 adslInterleave(124) or adslFast(125).
64
65 $info->adsl_atur_interleave_delay()
66 ("adslAturChanInterleaveDelay")
67
68 $info->adsl_atur_curr_tx_rate()
69 ("adslAturChanCurrTxRate")
70
71 $info->adsl_atur_prev_tx_rate()
72 ("adslAturChanPrevTxRate")
73
74 $info->adsl_atur_crc_block_len()
75 ("adslAturChanCrcBlockLength")
76
77
78
79perl v5.28.0 2018-11-29 SNMP::Info::AdslLine(3)