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
38 none
39
41 ATUC channel table ("adslAtucChanTable")
42 This table provides one row for each ATUC channel. ADSL channel
43 interfaces are those "ifEntries" where "ifType" is equal to
44 adslInterleave(124) or adslFast(125).
45
46 $info->adsl_atuc_interleave_delay()
47 ("adslAtucChanInterleaveDelay")
48
49 $info->adsl_atuc_curr_tx_rate()
50 ("adslAtucChanCurrTxRate")
51
52 $info->adsl_atuc_prev_tx_rate()
53 ("adslAtucChanPrevTxRate")
54
55 $info->adsl_atuc_crc_block_len()
56 ("adslAtucChanCrcBlockLength")
57
58 ATUR channel table ("adslAturChanTable")
59 This table provides one row for each ATUR channel. ADSL channel
60 interfaces are those "ifEntries" where "ifType" is equal to
61 adslInterleave(124) or adslFast(125).
62
63 $info->adsl_atur_interleave_delay()
64 ("adslAturChanInterleaveDelay")
65
66 $info->adsl_atur_curr_tx_rate()
67 ("adslAturChanCurrTxRate")
68
69 $info->adsl_atur_prev_tx_rate()
70 ("adslAturChanPrevTxRate")
71
72 $info->adsl_atur_crc_block_len()
73 ("adslAturChanCrcBlockLength")
74
75
76
77perl v5.36.1 2023-07-17 SNMP::Info::AdslLine(3)