forked from AlexandreYang/snmp-mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
A3COM-HUAWEI-DAR-MIB
executable file
·270 lines (247 loc) · 6.74 KB
/
A3COM-HUAWEI-DAR-MIB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
-- =================================================================
-- Copyright (c) 2004-2011 Hangzhou H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: The MIB is designed to get DAR(Deeper Application Recognition)
-- packet statistic information.
-- Reference: DAR-MIB
-- Version: V1.0
-- History:
-- V1.0 created by wangchenxiao
-- Initial version 2010-11-03
-- =================================================================
A3COM-HUAWEI-DAR-MIB DEFINITIONS ::= BEGIN
IMPORTS
h3cCommon
FROM A3COM-HUAWEI-OID-MIB
ifIndex
FROM IF-MIB
TEXTUAL-CONVENTION
FROM SNMPv2-TC
Counter64, OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI;
h3cDar MODULE-IDENTITY
LAST-UPDATED "201011030000Z" -- Nov. 03, 2010 GMT
ORGANIZATION
"Hangzhou H3C Technologies Co., Ltd."
CONTACT-INFO
"Platform Team H3C Technologies Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip: 100085"
DESCRIPTION
"The MIB is designed to get DAR packet statistics."
::= { h3cCommon 112 }
H3cDarProtocol ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The protocols DAR support."
SYNTAX INTEGER {
invalidProtocol(1),
bgp(2),
cifs(3),
citrix(4),
cuseeme(5),
dhcp(6),
dns(7),
egp(8),
eigrp(9),
exchange(10),
fasttrack(11),
finger(12),
ftp(13),
gnutella(14),
gopher(15),
gre(16),
http(17),
h323(18),
icmp(19),
igmp(20),
imap(21),
ip(22),
ipinip(23),
ipsec(24),
ipv6(25),
irc(26),
kerberos(27),
l2tp(28),
ldap(29),
mgcp(30),
napster(31),
netbios(32),
netshow(33),
nfs(34),
nntp(35),
notes(36),
novadign(37),
ntp(38),
pcanywhere(39),
pop3(40),
pptp(41),
printer(42),
rcmd(43),
rip(44),
rsvp(45),
rtcp(46),
rtp(47),
rtsp(48),
secureftp(49),
securehttp(50),
secureimap(51),
secureirc(52),
secureldap(53),
securenntp(54),
securepop3(55),
securetelnet(56),
sip(57),
skinny (58),
smtp(59),
snmp(60),
socks(61),
sqlnet(62),
sqlserver(63),
ssh(64),
streamwork(65),
sunrpc(66),
syslog(67),
tcp(68),
tcphandshake(69),
telnet(70),
tftp(71),
total(72),
udp(73),
unknownothers(74),
unknowntcp(75),
unknownudp(76),
userdefine001(77),
userdefine002(78),
userdefine003(79),
userdefine004(80),
userdefine005(81),
userdefine006(82),
userdefine007(83),
userdefine008(84),
userdefine009(85),
userdefine010(86),
vdolive(87),
winmx(88),
xwindows(89)
}
-- ========================================================================
-- Node definitions
-- ========================================================================
--Begin the node of h3cDarIfObjects.
h3cDarIfObjects OBJECT IDENTIFIER ::= { h3cDar 1 }
--Begin the node of h3cDarIfStatisticsObjects.
h3cDarIfStatisticsObjects OBJECT IDENTIFIER ::= { h3cDarIfObjects 1 }
-- ===============================================
-- Begin the table of h3cDarStatisticsTable.
-- ===============================================
h3cDarStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cDarStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains packet statistics of DAR."
::= { h3cDarIfStatisticsObjects 1 }
h3cDarStatisticsEntry OBJECT-TYPE
SYNTAX H3cDarStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry items."
INDEX { ifIndex, h3cDarStatisticsProtocolID }
::= { h3cDarStatisticsTable 1 }
H3cDarStatisticsEntry ::=
SEQUENCE {
h3cDarStatisticsProtocolID
H3cDarProtocol,
h3cDarStatisticsProtocolName
OCTET STRING,
h3cDarStatisticsInPkts
Counter64,
h3cDarStatisticsInBytes
Counter64,
h3cDarStatisticsInBitRate
Counter64,
h3cDarStatisticsMaxInBitRate
Counter64,
h3cDarStatisticsOutPkts
Counter64,
h3cDarStatisticsOutBytes
Counter64,
h3cDarStatisticsOutBitRate
Counter64,
h3cDarStatisticsMaxOutBitRate
Counter64
}
h3cDarStatisticsProtocolID OBJECT-TYPE
SYNTAX H3cDarProtocol
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Protocol id."
::= { h3cDarStatisticsEntry 1 }
h3cDarStatisticsProtocolName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Protocol name."
::= { h3cDarStatisticsEntry 2 }
h3cDarStatisticsInPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of incoming packets of the specific protocol."
::= { h3cDarStatisticsEntry 3 }
h3cDarStatisticsInBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of incoming octets of the specific protocol."
::= { h3cDarStatisticsEntry 4 }
h3cDarStatisticsInBitRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Incoming bitrate of the specific protocol in last 5 minutes."
::= { h3cDarStatisticsEntry 5 }
h3cDarStatisticsMaxInBitRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max incoming bitrate of the specific protocol in last 5 minutes."
::= { h3cDarStatisticsEntry 6 }
h3cDarStatisticsOutPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outgoing packets of the specific protocol."
::= { h3cDarStatisticsEntry 7 }
h3cDarStatisticsOutBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outgoing octets of the specific protocol."
::= { h3cDarStatisticsEntry 8 }
h3cDarStatisticsOutBitRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Outgoing bitrate of the specific protocol in last 5 minutes."
::= { h3cDarStatisticsEntry 9 }
h3cDarStatisticsMaxOutBitRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max outgoing bitrate of the specific protocol in last 5 minutes."
::= { h3cDarStatisticsEntry 10 }
END