-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoids.pm
71 lines (66 loc) · 2.64 KB
/
oids.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/perl
#
# Get CMTS Status from upstream interfaces
#
# oids for specific query's to cmts
#
# oids.pm
#
# Copyright (C) 2008 Fernando André < netriver at gmail . com >
#
# This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public
# License as published by the Free Software Foundation; Version 2 of the License
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE.
# See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# A copy online can be found at http://www.gnu.org/licenses/gpl-2.0.html
#
%cisco = (
frequencia => '1.3.6.1.2.1.10.127.1.1.2.1.2.',
modulacao => '1.3.6.1.2.1.10.127.1.1.2.1.4.',
channelwidth => '1.3.6.1.2.1.10.127.1.1.2.1.3.',
powerlevel => '1.3.6.1.2.1.10.127.1.2.2.1.3.',
descricao => '1.3.6.1.2.1.2.2.1.2',
online => '1.3.6.1.4.1.9.9.116.1.4.1.1.5.',
total => '1.3.6.1.4.1.9.9.116.1.4.1.1.3.',
snr => '1.3.6.1.2.1.10.127.1.1.4.1.5.',
downstreamfreq => '1.3.6.1.2.1.10.127.1.1.1.1.2.'
);
%terayon = (
frequencia => '1.3.6.1.2.1.10.127.1.1.2.1.2.',
modulacao => '1.3.6.1.2.1.10.127.1.1.2.1.4.',
channelwidth => '1.3.6.1.2.1.10.127.1.1.2.1.3.',
powerlevel => '1.3.6.1.4.1.9.9.116.1.4.1.1.6.',
descricao => '1.3.6.1.2.1.2.2.1.2',
online => '1.3.6.1.4.1.1456.3.1.1.2.1.6.1.2.',
total => '1.3.6.1.4.1.1456.3.1.1.2.1.6.1.1.',
snr => '1.3.6.1.2.1.10.127.1.1.4.1.5.',
downstreamfreq => '1.3.6.1.2.1.10.127.1.1.1.1.2.'
);
%arris = (
frequencia => '1.3.6.1.2.1.10.127.1.1.2.1.2.',
modulacao => '1.3.6.1.2.1.10.127.1.1.2.1.4.',
channelwidth => '1.3.6.1.2.1.10.127.1.1.2.1.3.',
powerlevel => '',
descricao => '1.3.6.1.2.1.2.2.1.2',
online => '1.3.6.1.4.1.9.9.116.1.4.1.1.5.',
total => '1.3.6.1.4.1.9.9.116.1.4.1.1.3.',
snr => '1.3.6.1.2.1.10.127.1.1.4.1.5.',
downstreamfreq => '1.3.6.1.2.1.10.127.1.1.1.1.2.'
);
%cuda = (
frequencia => '1.3.6.1.2.1.10.127.1.1.2.1.2.',
modulacao => '1.3.6.1.2.1.10.127.1.1.2.1.4.',
channelwidth => '1.3.6.1.2.1.10.127.1.1.2.1.3.',
powerlevel => '',
descricao => '1.3.6.1.2.1.2.2.1.2',
online => '1.3.6.1.4.1.3493.2.4.1.1.25.1.21.',
total => '.1.3.6.1.4.1.3493.2.4.1.1.25.1.21.',
snr => '1.3.6.1.2.1.10.127.1.1.4.1.5.',
downstreamfreq => '1.3.6.1.2.1.10.127.1.1.1.1.2.'
);