summaryrefslogtreecommitdiff
path: root/MIBS/transition/TN-DHCP-SNOOPING-MIB
blob: 44a2424172b89bec3a8313dbf3e34d9f7b134d24 (plain)
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
-- *****************************************************************
-- TN-DHCP-SNOOPING-MIB:  TN DHCP Snooping Private MIB
--
-- Copyright (c) 2015 by Transition Networks, Inc.
-- All Rights Reserved.
--
-- ****************************************************************

TN-DHCP-SNOOPING-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-COMPLIANCE, OBJECT-GROUP
        FROM SNMPv2-CONF
    MODULE-IDENTITY, OBJECT-TYPE
        FROM SNMPv2-SMI
    TEXTUAL-CONVENTION
        FROM SNMPv2-TC
    tnProducts
        FROM TRANSITION-SMI
    Integer32 FROM SNMPv2-SMI
    IpAddress FROM SNMPv2-SMI
    Unsigned32 FROM SNMPv2-SMI
    MacAddress FROM SNMPv2-TC
    TruthValue FROM SNMPv2-TC
    TNInterfaceIndex FROM TN-TC
    ;

tnDhcpSnoopingMib MODULE-IDENTITY
    LAST-UPDATED "201504200000Z"
    ORGANIZATION "Transition Networks, Inc."
    CONTACT-INFO
        "Transition Networks
        Technical Support

        10900 Red Circle Drive
        Minnetonka, MN 55343 USA
        Tel: +1-800-526-9267

            E-mail: techsupport@transition.com"
    DESCRIPTION
        "The mib module for DHCP settings."

        REVISION "201504200000Z"
        DESCRIPTION
        "Initial Revision of this module"
    ::= { tnProducts 147 }


tnDhcpSnoopingMibObjects OBJECT IDENTIFIER
    ::= { tnDhcpSnoopingMib 1 }

tnDhcpSnoopingConfig OBJECT IDENTIFIER
    ::= { tnDhcpSnoopingMibObjects 2 }

tnDhcpSnoopingConfigGlobals OBJECT IDENTIFIER
    ::= { tnDhcpSnoopingConfig 1 }

tnDhcpSnoopingConfigGlobalsMode OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Indicates the DHCP snooping mode operation. Possible modes are - true:
         Enable DHCP snooping mode operation. When DHCP snooping mode operation
         is enabled, the DHCP request messages will be forwarded to trusted
         ports and only allow reply packets from trusted ports. false: Disable
         DHCP snooping mode operation."
    ::= { tnDhcpSnoopingConfigGlobals 1 }

tnDhcpSnoopingConfigInterfaceTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNDhcpSnoopingConfigInterfaceEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This is a table of DHCP Snooping port configuration parameters"
    ::= { tnDhcpSnoopingConfig 2 }

tnDhcpSnoopingConfigInterfaceEntry OBJECT-TYPE
    SYNTAX      TNDhcpSnoopingConfigInterfaceEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each port has a set of parameters"
    INDEX       { tnDhcpSnoopingConfigInterfaceIfIndex }
    ::= { tnDhcpSnoopingConfigInterfaceTable 1 }

TNDhcpSnoopingConfigInterfaceEntry ::= SEQUENCE {
    tnDhcpSnoopingConfigInterfaceIfIndex      TNInterfaceIndex,
    tnDhcpSnoopingConfigInterfaceTrustMode    TruthValue
}

tnDhcpSnoopingConfigInterfaceIfIndex OBJECT-TYPE
    SYNTAX      TNInterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Logical interface number of the physical port."
    ::= { tnDhcpSnoopingConfigInterfaceEntry 1 }

tnDhcpSnoopingConfigInterfaceTrustMode OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Indicates the DHCP snooping port mode. Possible port modes are - true:
         Configures the port as trusted source of the DHCP messages. false:
         Configures the port as untrusted source of the DHCP messages."
    ::= { tnDhcpSnoopingConfigInterfaceEntry 2 }

tnDhcpSnoopingStatus OBJECT IDENTIFIER
    ::= { tnDhcpSnoopingMibObjects 3 }

tnDhcpSnoopingStatusAssignedIpTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNDhcpSnoopingStatusAssignedIpEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This is a table of assigned IP information in DHCP Snooping "
    ::= { tnDhcpSnoopingStatus 1 }

tnDhcpSnoopingStatusAssignedIpEntry OBJECT-TYPE
    SYNTAX      TNDhcpSnoopingStatusAssignedIpEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each entry has a set of parameters"
    INDEX       { tnDhcpSnoopingStatusAssignedIpMacAddress, tnDhcpSnoopingStatusAssignedIpVlanId }
    ::= { tnDhcpSnoopingStatusAssignedIpTable 1 }

TNDhcpSnoopingStatusAssignedIpEntry ::= SEQUENCE {
    tnDhcpSnoopingStatusAssignedIpMacAddress      MacAddress,
    tnDhcpSnoopingStatusAssignedIpVlanId      Integer32,
    tnDhcpSnoopingStatusAssignedIpIfIndex     TNInterfaceIndex,
    tnDhcpSnoopingStatusAssignedIpIpAddress   IpAddress,
    tnDhcpSnoopingStatusAssignedIpNetmask     IpAddress,
    tnDhcpSnoopingStatusAssignedIpDhcpServerIp    IpAddress
}

tnDhcpSnoopingStatusAssignedIpMacAddress OBJECT-TYPE
    SYNTAX      MacAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "MAC address."
    ::= { tnDhcpSnoopingStatusAssignedIpEntry 1 }

tnDhcpSnoopingStatusAssignedIpVlanId OBJECT-TYPE
    SYNTAX      Integer32 (1..4095)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "The VLAN id of the VLAN."
    ::= { tnDhcpSnoopingStatusAssignedIpEntry 2 }

tnDhcpSnoopingStatusAssignedIpIfIndex OBJECT-TYPE
    SYNTAX      TNInterfaceIndex
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Logical interface number of the physical port of the DHCP client."
    ::= { tnDhcpSnoopingStatusAssignedIpEntry 3 }

tnDhcpSnoopingStatusAssignedIpIpAddress OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "IP address assigned to DHCP client by DHCP server."
    ::= { tnDhcpSnoopingStatusAssignedIpEntry 4 }

tnDhcpSnoopingStatusAssignedIpNetmask OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Netmask assigned to DHCP client by DHCP server."
    ::= { tnDhcpSnoopingStatusAssignedIpEntry 5 }

tnDhcpSnoopingStatusAssignedIpDhcpServerIp OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "IP address of the DHCP server that assigns the IP address and netmask."
    ::= { tnDhcpSnoopingStatusAssignedIpEntry 6 }

tnDhcpSnoopingControl OBJECT IDENTIFIER
    ::= { tnDhcpSnoopingMibObjects 4 }

tnDhcpSnoopingControlInterfaceClearStatisticsTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNDhcpSnoopingControlInterfaceClearStatisticsEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This is a table to clear port statistics in DHCP Snooping"
    ::= { tnDhcpSnoopingControl 1 }

tnDhcpSnoopingControlInterfaceClearStatisticsEntry OBJECT-TYPE
    SYNTAX      TNDhcpSnoopingControlInterfaceClearStatisticsEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each port has a set of parameters"
    INDEX       { tnDhcpSnoopingControlInterfaceClearStatisticsIfIndex }
    ::= { tnDhcpSnoopingControlInterfaceClearStatisticsTable 1 }

TNDhcpSnoopingControlInterfaceClearStatisticsEntry ::= SEQUENCE {
    tnDhcpSnoopingControlInterfaceClearStatisticsIfIndex      TNInterfaceIndex,
    tnDhcpSnoopingControlInterfaceClearStatisticsClear    TruthValue
}

tnDhcpSnoopingControlInterfaceClearStatisticsIfIndex OBJECT-TYPE
    SYNTAX      TNInterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Logical interface number of the physical port."
    ::= { tnDhcpSnoopingControlInterfaceClearStatisticsEntry 1 }

tnDhcpSnoopingControlInterfaceClearStatisticsClear OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "clear statistics per physical port."
    ::= { tnDhcpSnoopingControlInterfaceClearStatisticsEntry 2 }

tnDhcpSnoopingStatistics OBJECT IDENTIFIER
    ::= { tnDhcpSnoopingMibObjects 5 }

tnDhcpSnoopingStatisticsInterfaceTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNDhcpSnoopingStatisticsInterfaceEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This is a table of port statistics in DHCP Snooping "
    ::= { tnDhcpSnoopingStatistics 2 }

tnDhcpSnoopingStatisticsInterfaceEntry OBJECT-TYPE
    SYNTAX      TNDhcpSnoopingStatisticsInterfaceEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each entry has a set of parameters"
    INDEX       { tnDhcpSnoopingStatisticsInterfaceIfIndex }
    ::= { tnDhcpSnoopingStatisticsInterfaceTable 1 }

TNDhcpSnoopingStatisticsInterfaceEntry ::= SEQUENCE {
    tnDhcpSnoopingStatisticsInterfaceIfIndex      TNInterfaceIndex,
    tnDhcpSnoopingStatisticsInterfaceRxDiscover   Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceRxOffer      Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceRxRequest    Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceRxDecline    Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceRxAck    Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceRxNak    Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceRxRelease    Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceRxInform     Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceRxLeaseQuery     Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceRxLeaseUnassigned    Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceRxLeaseUnknown   Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceRxLeaseActive    Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceRxDiscardChksumErr   Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceRxDiscardUntrust     Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceTxDiscover   Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceTxOffer      Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceTxRequest    Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceTxDecline    Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceTxAck    Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceTxNak    Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceTxRelease    Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceTxInform     Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceTxLeaseQuery     Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceTxLeaseUnassigned    Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceTxLeaseUnknown   Unsigned32,
    tnDhcpSnoopingStatisticsInterfaceTxLeaseActive    Unsigned32
}

tnDhcpSnoopingStatisticsInterfaceIfIndex OBJECT-TYPE
    SYNTAX      TNInterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Logical interface number of the physical port."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 1 }

tnDhcpSnoopingStatisticsInterfaceRxDiscover OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of discover (option 53 with value 1) packets received."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 2 }

tnDhcpSnoopingStatisticsInterfaceRxOffer OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of offer (option 53 with value 2) packets received."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 3 }

tnDhcpSnoopingStatisticsInterfaceRxRequest OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of request (option 53 with value 3) packets received."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 4 }

tnDhcpSnoopingStatisticsInterfaceRxDecline OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of decline (option 53 with value 4) packets received."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 5 }

tnDhcpSnoopingStatisticsInterfaceRxAck OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of ACK (option 53 with value 5) packets received."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 6 }

tnDhcpSnoopingStatisticsInterfaceRxNak OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of NAK (option 53 with value 6) packets received."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 7 }

tnDhcpSnoopingStatisticsInterfaceRxRelease OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of release (option 53 with value 7) packets received."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 8 }

tnDhcpSnoopingStatisticsInterfaceRxInform OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of inform (option 53 with value 8) packets received."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 9 }

tnDhcpSnoopingStatisticsInterfaceRxLeaseQuery OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of lease query (option 53 with value 10) packets received."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 10 }

tnDhcpSnoopingStatisticsInterfaceRxLeaseUnassigned OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of lease unassigned (option 53 with value 11) packets
         received."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 11 }

tnDhcpSnoopingStatisticsInterfaceRxLeaseUnknown OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of lease unknown (option 53 with value 12) packets received."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 12 }

tnDhcpSnoopingStatisticsInterfaceRxLeaseActive OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of lease active (option 53 with value 13) packets received."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 13 }

tnDhcpSnoopingStatisticsInterfaceRxDiscardChksumErr OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of discard packet that IP/UDP checksum is error."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 14 }

tnDhcpSnoopingStatisticsInterfaceRxDiscardUntrust OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of discard packet that are coming from untrusted port."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 15 }

tnDhcpSnoopingStatisticsInterfaceTxDiscover OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of discover (option 53 with value 1) packets transmited."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 16 }

tnDhcpSnoopingStatisticsInterfaceTxOffer OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of offer (option 53 with value 2) packets transmited."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 17 }

tnDhcpSnoopingStatisticsInterfaceTxRequest OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of request (option 53 with value 3) packets transmited."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 18 }

tnDhcpSnoopingStatisticsInterfaceTxDecline OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of decline (option 53 with value 4) packets transmited."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 19 }

tnDhcpSnoopingStatisticsInterfaceTxAck OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of ACK (option 53 with value 5) packets transmited."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 20 }

tnDhcpSnoopingStatisticsInterfaceTxNak OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of NAK (option 53 with value 6) packets transmited."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 21 }

tnDhcpSnoopingStatisticsInterfaceTxRelease OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of release (option 53 with value 7) packets transmited."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 22 }

tnDhcpSnoopingStatisticsInterfaceTxInform OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of inform (option 53 with value 8) packets transmited."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 23 }

tnDhcpSnoopingStatisticsInterfaceTxLeaseQuery OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of lease query (option 53 with value 10) packets transmited."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 24 }

tnDhcpSnoopingStatisticsInterfaceTxLeaseUnassigned OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of lease unassigned (option 53 with value 11) packets
         transmited."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 25 }

tnDhcpSnoopingStatisticsInterfaceTxLeaseUnknown OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of lease unknown (option 53 with value 12) packets
         transmited."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 26 }

tnDhcpSnoopingStatisticsInterfaceTxLeaseActive OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of lease active (option 53 with value 13) packets
         transmited."
    ::= { tnDhcpSnoopingStatisticsInterfaceEntry 27 }

tnDhcpSnoopingMibConformance OBJECT IDENTIFIER
    ::= { tnDhcpSnoopingMib 2 }

tnDhcpSnoopingMibCompliances OBJECT IDENTIFIER
    ::= { tnDhcpSnoopingMibConformance 1 }

tnDhcpSnoopingMibGroups OBJECT IDENTIFIER
    ::= { tnDhcpSnoopingMibConformance 2 }

tnDhcpSnoopingConfigGlobalsInfoGroup OBJECT-GROUP
    OBJECTS     { tnDhcpSnoopingConfigGlobalsMode }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnDhcpSnoopingMibGroups 1 }

tnDhcpSnoopingConfigInterfaceInfoGroup OBJECT-GROUP
    OBJECTS     { tnDhcpSnoopingConfigInterfaceTrustMode }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnDhcpSnoopingMibGroups 2 }

tnDhcpSnoopingStatusAssignedIpTableInfoGroup OBJECT-GROUP
    OBJECTS     { tnDhcpSnoopingStatusAssignedIpIfIndex, 
                  tnDhcpSnoopingStatusAssignedIpIpAddress, 
                  tnDhcpSnoopingStatusAssignedIpNetmask, 
                  tnDhcpSnoopingStatusAssignedIpDhcpServerIp }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnDhcpSnoopingMibGroups 3 }

tnDhcpSnoopingControlInterfaceClearStatisticsTableInfoGroup OBJECT-GROUP
    OBJECTS     { tnDhcpSnoopingControlInterfaceClearStatisticsClear }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnDhcpSnoopingMibGroups 4 }

tnDhcpSnoopingStatisticsInterfaceTableInfoGroup OBJECT-GROUP
    OBJECTS     { tnDhcpSnoopingStatisticsInterfaceRxDiscover, 
                  tnDhcpSnoopingStatisticsInterfaceRxOffer, 
                  tnDhcpSnoopingStatisticsInterfaceRxRequest, 
                  tnDhcpSnoopingStatisticsInterfaceRxDecline, 
                  tnDhcpSnoopingStatisticsInterfaceRxAck, 
                  tnDhcpSnoopingStatisticsInterfaceRxNak, 
                  tnDhcpSnoopingStatisticsInterfaceRxRelease, 
                  tnDhcpSnoopingStatisticsInterfaceRxInform, 
                  tnDhcpSnoopingStatisticsInterfaceRxLeaseQuery, 
                  tnDhcpSnoopingStatisticsInterfaceRxLeaseUnassigned, 
                  tnDhcpSnoopingStatisticsInterfaceRxLeaseUnknown, 
                  tnDhcpSnoopingStatisticsInterfaceRxLeaseActive, 
                  tnDhcpSnoopingStatisticsInterfaceRxDiscardChksumErr, 
                  tnDhcpSnoopingStatisticsInterfaceRxDiscardUntrust, 
                  tnDhcpSnoopingStatisticsInterfaceTxDiscover, 
                  tnDhcpSnoopingStatisticsInterfaceTxOffer, 
                  tnDhcpSnoopingStatisticsInterfaceTxRequest, 
                  tnDhcpSnoopingStatisticsInterfaceTxDecline, 
                  tnDhcpSnoopingStatisticsInterfaceTxAck, 
                  tnDhcpSnoopingStatisticsInterfaceTxNak, 
                  tnDhcpSnoopingStatisticsInterfaceTxRelease, 
                  tnDhcpSnoopingStatisticsInterfaceTxInform, 
                  tnDhcpSnoopingStatisticsInterfaceTxLeaseQuery, 
                  tnDhcpSnoopingStatisticsInterfaceTxLeaseUnassigned, 
                  tnDhcpSnoopingStatisticsInterfaceTxLeaseUnknown, 
                  tnDhcpSnoopingStatisticsInterfaceTxLeaseActive }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnDhcpSnoopingMibGroups 5 }

tnDhcpSnoopingMibCompliance MODULE-COMPLIANCE
    STATUS      current
    DESCRIPTION
        "The compliance statement for the implementation."

    MODULE      -- this module

        MANDATORY-GROUPS        { tnDhcpSnoopingConfigGlobalsInfoGroup, 
                  tnDhcpSnoopingConfigInterfaceInfoGroup, 
                  tnDhcpSnoopingStatusAssignedIpTableInfoGroup, 
                  tnDhcpSnoopingControlInterfaceClearStatisticsTableInfoGroup, 
                  tnDhcpSnoopingStatisticsInterfaceTableInfoGroup }

    ::= { tnDhcpSnoopingMibCompliances 1 }

END