This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
ALTIGA-NAT-STATS-MIB
437 lines (386 loc) · 13.4 KB
/
ALTIGA-NAT-STATS-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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
-- *------------------------------------------------------------------
-- * ALTIGA-NAT-STATS-MIB.my: Altiga NAT Statistics MIB.
-- *
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
-- *
-- * Copyright (c) 2002 by Cisco Systems, Inc.
-- * All rights reserved.
-- *
-- *------------------------------------------------------------------
ALTIGA-NAT-STATS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, IpAddress, Integer32, Counter32, Unsigned32
FROM SNMPv2-SMI
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
alStatsNat, alNatGroup
FROM ALTIGA-MIB
alNatMibModule
FROM ALTIGA-GLOBAL-REG;
altigaNatStatsMibModule MODULE-IDENTITY
LAST-UPDATED "200209051300Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: [email protected]"
DESCRIPTION
"The Altiga NAT Statistics MIB models counters and objects that are
of management interest for NAT.
Acronyms
The following acronyms are used in this document:
MIB: Management Information Base
NAT: Network Address Translation
"
REVISION "200209051300Z"
DESCRIPTION
"Added module compliance."
REVISION "200207100000Z"
DESCRIPTION
"Updated with new header"
::= { alNatMibModule 2 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- MIB Objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
alStatsNatGlobal OBJECT IDENTIFIER ::= { alStatsNat 1 }
alNatStatsPacketsIn OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of inbound packets that have been translated."
::= { alStatsNatGlobal 1 }
alNatStatsPacketsOut OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of outbound packets that have been translated."
::= { alStatsNatGlobal 2 }
alNatStatsTotalTranslations OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of sessions that have been established."
::= { alStatsNatGlobal 3 }
alNatStatsActiveTranslations OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The active number of sessions that are established."
::= { alStatsNatGlobal 4 }
alNatStatsMaxTranslations OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of sessions that have been established at any one time."
::= { alStatsNatGlobal 5 }
alNatTranslationTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlNatTranslationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of active NAT sessions."
::= { alStatsNat 2 }
alNatTranslationEntry OBJECT-TYPE
SYNTAX AlNatTranslationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the alNatTranslationTable."
INDEX { alNatTranslationSrcAddress,
alNatTranslationSrcPort,
alNatTranslationDestAddress,
alNatTranslationDestPort}
::= { alNatTranslationTable 1 }
AlNatTranslationEntry ::= SEQUENCE {
alNatTranslationSrcAddress IpAddress,
alNatTranslationSrcPort Integer32,
alNatTranslationDestAddress IpAddress,
alNatTranslationDestPort Integer32,
alNatTranslationAddress IpAddress,
alNatTranslationPort Integer32,
alNatTranslationAge Unsigned32,
alNatTranslationType INTEGER,
alNatTranslationDirection INTEGER,
alNatTranslationBytes Counter32,
alNatTranslationPackets Counter32
}
alNatTranslationSrcAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The internal source address to be translated."
::= { alNatTranslationEntry 1 }
alNatTranslationSrcPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The internal source port to be translated."
::= { alNatTranslationEntry 2 }
alNatTranslationDestAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The external destination address."
::= { alNatTranslationEntry 3 }
alNatTranslationDestPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The external destinatin port."
::= { alNatTranslationEntry 4 }
alNatTranslationAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The translated internal source address."
::= { alNatTranslationEntry 5 }
alNatTranslationPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The translated internal source port."
::= { alNatTranslationEntry 6 }
alNatTranslationAge OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The age of this entry in seconds."
::= { alNatTranslationEntry 7 }
alNatTranslationType OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
portMapTcp (1),
portMapUdp (2),
portMapTcpUdp(3),
noPortMap (4),
ftpProxy (8),
tftpProxy (16),
nbnsTcpProxy (32),
nbnsUdpProxy (64),
nbdgsvcProxy (128),
h225TcpProxy (256),
h245Proxy(512),
rasProxy (1024),
ilsProxy (2048),
all(4095)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of this entry."
::= { alNatTranslationEntry 8 }
alNatTranslationDirection OBJECT-TYPE
SYNTAX INTEGER {
inbound (1),
outbound (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The direction that this rule acts upon."
::= { alNatTranslationEntry 9 }
alNatTranslationBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of bytes that have been translated."
::= { alNatTranslationEntry 10 }
alNatTranslationPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets that have been translated."
::= { alNatTranslationEntry 11 }
alNatAllTranslationTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlNatAllTranslationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of active NAT sessions."
::= { alStatsNat 3 }
alNatAllTranslationEntry OBJECT-TYPE
SYNTAX AlNatAllTranslationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the alNatAllTranslationTable."
INDEX { alNatAllTranslationSrcAddress,
alNatAllTranslationSrcPort,
alNatAllTranslationDestAddress,
alNatAllTranslationDestPort,
alNatAllTranslationType }
::= { alNatAllTranslationTable 1 }
AlNatAllTranslationEntry ::= SEQUENCE {
alNatAllTranslationSrcAddress IpAddress,
alNatAllTranslationSrcPort Integer32,
alNatAllTranslationDestAddress IpAddress,
alNatAllTranslationDestPort Integer32,
alNatAllTranslationAddress IpAddress,
alNatAllTranslationPort Integer32,
alNatAllTranslationAge Unsigned32,
alNatAllTranslationType INTEGER,
alNatAllTranslationDirection INTEGER,
alNatAllTranslationBytes Counter32,
alNatAllTranslationPackets Counter32
}
alNatAllTranslationSrcAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The internal source address to be translated."
::= { alNatAllTranslationEntry 1 }
alNatAllTranslationSrcPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The internal source port to be translated."
::= { alNatAllTranslationEntry 2 }
alNatAllTranslationDestAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The external destination address."
::= { alNatAllTranslationEntry 3 }
alNatAllTranslationDestPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The external destinatin port."
::= { alNatAllTranslationEntry 4 }
alNatAllTranslationAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The translated internal source address."
::= { alNatAllTranslationEntry 5 }
alNatAllTranslationPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The translated internal source port."
::= { alNatAllTranslationEntry 6 }
alNatAllTranslationAge OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The age of this entry in seconds."
::= { alNatAllTranslationEntry 7 }
alNatAllTranslationType OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
portMapTcp (1),
portMapUdp (2),
portMapTcpUdp(3),
noPortMap (4),
ftpProxy (8),
tftpProxy (16),
nbnsTcpProxy (32),
nbnsUdpProxy (64),
nbdgsvcProxy (128),
h225TcpProxy (256),
h245Proxy(512),
rasProxy (1024),
ilsProxy (2048),
all(4095)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of this entry."
::= { alNatAllTranslationEntry 8 }
alNatAllTranslationDirection OBJECT-TYPE
SYNTAX INTEGER {
inbound (1),
outbound (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The direction that this rule acts upon."
::= { alNatAllTranslationEntry 9 }
alNatAllTranslationBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of bytes that have been translated."
::= { alNatAllTranslationEntry 10 }
alNatAllTranslationPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets that have been translated."
::= { alNatAllTranslationEntry 11 }
altigaNatStatsMibConformance OBJECT IDENTIFIER ::= { altigaNatStatsMibModule 1 }
altigaNatStatsMibCompliances OBJECT IDENTIFIER ::= { altigaNatStatsMibConformance 1 }
altigaNatStatsMibCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for agents which
implement the Altiga NAT Statistics MIB."
MODULE
MANDATORY-GROUPS {
altigaNatStatsGroup
}
::= { altigaNatStatsMibCompliances 1 }
altigaNatStatsGroup OBJECT-GROUP
OBJECTS
{
alNatStatsPacketsIn,
alNatStatsPacketsOut,
alNatStatsTotalTranslations,
alNatStatsActiveTranslations,
alNatStatsMaxTranslations,
alNatTranslationSrcAddress,
alNatTranslationSrcPort,
alNatTranslationDestAddress,
alNatTranslationDestPort,
alNatTranslationAddress,
alNatTranslationPort,
alNatTranslationAge,
alNatTranslationType,
alNatTranslationDirection,
alNatTranslationBytes,
alNatTranslationPackets,
alNatAllTranslationSrcAddress,
alNatAllTranslationSrcPort,
alNatAllTranslationDestAddress,
alNatAllTranslationDestPort,
alNatAllTranslationAddress,
alNatAllTranslationPort,
alNatAllTranslationAge,
alNatAllTranslationType,
alNatAllTranslationDirection,
alNatAllTranslationBytes,
alNatAllTranslationPackets
}
STATUS current
DESCRIPTION
"The objects for NAT statistics"
::= { alNatGroup 2 }
END