summaryrefslogtreecommitdiff
path: root/MIBS/transition/TN-DHCP-SERVER-MIB
blob: 9d506ff3f9ac45e8d02e910ea5e29569aa5fb095 (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
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
-- *****************************************************************
-- TN-DHCP-SERVER-MIB:  TN DHCP Server Private MIB
--
-- Copyright (c) 2015 by Transition Networks, Inc.
-- All Rights Reserved.
--
-- ****************************************************************

TN-DHCP-SERVER-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
    TNDisplayString FROM TN-TC
    TNInterfaceIndex FROM TN-TC
    TNRowEditorState FROM TN-TC
    TNUnsigned16 FROM TN-TC
    ;

tnDhcpServerMib 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 146 }


TNDhcpServerBindingEnum ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "This enumeration defines the type of binding."
    SYNTAX      INTEGER { none(0), automatic(1), manual(2), expired(3) }

TNDhcpServerBindingStateEnum ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "This enumeration defines the state of binding."
    SYNTAX      INTEGER { none(0), allocated(1), committed(2), expired(3) }

TNDhcpServerClientIdentifierEnum ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "This enumeration defines the type of client identifier."
    SYNTAX      INTEGER { none(0), fqdn(1), mac(2) }

TNDhcpServerNetbiosNodeEnum ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "This enumeration defines the type of NetBIOS node."
    SYNTAX      INTEGER { nodeNone(0), nodeB(1), nodeP(2), nodeM(3), nodeH(4) }

TNDhcpServerPoolEnum ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "This enumeration defines the type of DHCP pool."
    SYNTAX      INTEGER { none(0), network(1), host(2) }

tnDhcpServerMibObjects OBJECT IDENTIFIER
    ::= { tnDhcpServerMib 1 }

tnDhcpServerConfig OBJECT IDENTIFIER
    ::= { tnDhcpServerMibObjects 2 }

tnDhcpServerConfigGlobals OBJECT IDENTIFIER
    ::= { tnDhcpServerConfig 1 }

tnDhcpServerConfigGlobalsMode OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Global mode of DHCP server. true is to enable the functions of DHCP
         server and false is to disable it."
    ::= { tnDhcpServerConfigGlobals 1 }

tnDhcpServerConfigVlanTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNDhcpServerConfigVlanEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This is the table of DHCP server VLAN configuration. The index is VLAN
         ID."
    ::= { tnDhcpServerConfig 2 }

tnDhcpServerConfigVlanEntry OBJECT-TYPE
    SYNTAX      TNDhcpServerConfigVlanEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each VLAN has a set of parameters"
    INDEX       { tnDhcpServerConfigVlanIfIndex }
    ::= { tnDhcpServerConfigVlanTable 1 }

TNDhcpServerConfigVlanEntry ::= SEQUENCE {
    tnDhcpServerConfigVlanIfIndex     TNInterfaceIndex,
    tnDhcpServerConfigVlanMode    TruthValue
}

tnDhcpServerConfigVlanIfIndex OBJECT-TYPE
    SYNTAX      TNInterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Logical interface number of VLAN."
    ::= { tnDhcpServerConfigVlanEntry 1 }

tnDhcpServerConfigVlanMode OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "VLAN mode of DHCP server. true is to enable DHCP server per VLAN and
         false is to disable it per VLAN."
    ::= { tnDhcpServerConfigVlanEntry 2 }

tnDhcpServerConfigExcludedTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNDhcpServerConfigExcludedEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "The table is DHCP server excluded IP onfiguration table. The indexes
         are low IP and high IP address."
    ::= { tnDhcpServerConfig 3 }

tnDhcpServerConfigExcludedEntry OBJECT-TYPE
    SYNTAX      TNDhcpServerConfigExcludedEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each entry has a set of parameters"
    INDEX       { tnDhcpServerConfigExcludedLowIpAddress, tnDhcpServerConfigExcludedHighIpAddress }
    ::= { tnDhcpServerConfigExcludedTable 1 }

TNDhcpServerConfigExcludedEntry ::= SEQUENCE {
    tnDhcpServerConfigExcludedLowIpAddress    IpAddress,
    tnDhcpServerConfigExcludedHighIpAddress   IpAddress,
    tnDhcpServerConfigExcludedAction      TNRowEditorState
}

tnDhcpServerConfigExcludedLowIpAddress OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Low IP address."
    ::= { tnDhcpServerConfigExcludedEntry 1 }

tnDhcpServerConfigExcludedHighIpAddress OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "High IP address."
    ::= { tnDhcpServerConfigExcludedEntry 2 }

tnDhcpServerConfigExcludedAction OBJECT-TYPE
    SYNTAX      TNRowEditorState
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Action"
    ::= { tnDhcpServerConfigExcludedEntry 100 }

tnDhcpServerConfigExcludedIpTableRowEditor OBJECT IDENTIFIER
    ::= { tnDhcpServerConfig 4 }

tnDhcpServerConfigExcludedIpTableRowEditorLowIpAddress OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Low IP address."
    ::= { tnDhcpServerConfigExcludedIpTableRowEditor 1 }

tnDhcpServerConfigExcludedIpTableRowEditorHighIpAddress OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "High IP address."
    ::= { tnDhcpServerConfigExcludedIpTableRowEditor 2 }

tnDhcpServerConfigExcludedIpTableRowEditorAction OBJECT-TYPE
    SYNTAX      TNRowEditorState
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Action"
    ::= { tnDhcpServerConfigExcludedIpTableRowEditor 100 }

tnDhcpServerConfigPoolTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNDhcpServerConfigPoolEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "The table is DHCP server pool onfiguration table. The indexe is pool
         name."
    ::= { tnDhcpServerConfig 5 }

tnDhcpServerConfigPoolEntry OBJECT-TYPE
    SYNTAX      TNDhcpServerConfigPoolEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each entry has a set of parameters"
    INDEX       { tnDhcpServerConfigPoolPoolName }
    ::= { tnDhcpServerConfigPoolTable 1 }

TNDhcpServerConfigPoolEntry ::= SEQUENCE {
    tnDhcpServerConfigPoolPoolName    TNDisplayString,
    tnDhcpServerConfigPoolPoolType    TNDhcpServerPoolEnum,
    tnDhcpServerConfigPoolIpv4Address     IpAddress,
    tnDhcpServerConfigPoolSubnetMask      IpAddress,
    tnDhcpServerConfigPoolSubnetBroadcast     IpAddress,
    tnDhcpServerConfigPoolLeaseDay    Unsigned32,
    tnDhcpServerConfigPoolLeaseHour   Unsigned32,
    tnDhcpServerConfigPoolLeaseMinute     Unsigned32,
    tnDhcpServerConfigPoolDomainName      TNDisplayString,
    tnDhcpServerConfigPoolDefaultRouter1      IpAddress,
    tnDhcpServerConfigPoolDefaultRouter2      IpAddress,
    tnDhcpServerConfigPoolDefaultRouter3      IpAddress,
    tnDhcpServerConfigPoolDefaultRouter4      IpAddress,
    tnDhcpServerConfigPoolDnsServer1      IpAddress,
    tnDhcpServerConfigPoolDnsServer2      IpAddress,
    tnDhcpServerConfigPoolDnsServer3      IpAddress,
    tnDhcpServerConfigPoolDnsServer4      IpAddress,
    tnDhcpServerConfigPoolNtpServer1      IpAddress,
    tnDhcpServerConfigPoolNtpServer2      IpAddress,
    tnDhcpServerConfigPoolNtpServer3      IpAddress,
    tnDhcpServerConfigPoolNtpServer4      IpAddress,
    tnDhcpServerConfigPoolNetbiosNodeType     TNDhcpServerNetbiosNodeEnum,
    tnDhcpServerConfigPoolNetbiosScope    TNDisplayString,
    tnDhcpServerConfigPoolNetbiosNameServer1      IpAddress,
    tnDhcpServerConfigPoolNetbiosNameServer2      IpAddress,
    tnDhcpServerConfigPoolNetbiosNameServer3      IpAddress,
    tnDhcpServerConfigPoolNetbiosNameServer4      IpAddress,
    tnDhcpServerConfigPoolNisDomainName   TNDisplayString,
    tnDhcpServerConfigPoolNisServer1      IpAddress,
    tnDhcpServerConfigPoolNisServer2      IpAddress,
    tnDhcpServerConfigPoolNisServer3      IpAddress,
    tnDhcpServerConfigPoolNisServer4      IpAddress,
    tnDhcpServerConfigPoolClientIdentifierType    TNDhcpServerClientIdentifierEnum,
    tnDhcpServerConfigPoolClientIdentifierFqdn    TNDisplayString,
    tnDhcpServerConfigPoolClientIdentifierMac     MacAddress,
    tnDhcpServerConfigPoolClientHardwareAddress   MacAddress,
    tnDhcpServerConfigPoolClientName      TNDisplayString,
    tnDhcpServerConfigPoolVendorClassId1      TNDisplayString,
    tnDhcpServerConfigPoolVendorSpecificInfo1     TNDisplayString,
    tnDhcpServerConfigPoolVendorClassId2      TNDisplayString,
    tnDhcpServerConfigPoolVendorSpecificInfo2     TNDisplayString,
    tnDhcpServerConfigPoolVendorClassId3      TNDisplayString,
    tnDhcpServerConfigPoolVendorSpecificInfo3     TNDisplayString,
    tnDhcpServerConfigPoolVendorClassId4      TNDisplayString,
    tnDhcpServerConfigPoolVendorSpecificInfo4     TNDisplayString,
    tnDhcpServerConfigPoolAction      TNRowEditorState
}

tnDhcpServerConfigPoolPoolName OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..32))
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Name of DHCP pool."
    ::= { tnDhcpServerConfigPoolEntry 1 }

tnDhcpServerConfigPoolPoolType OBJECT-TYPE
    SYNTAX      TNDhcpServerPoolEnum
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Type of pool. none(0) means the pool type is not defined yet.
         network(1) means the pool defines a pool of IP addresses to service
         more than one DHCP client. host(2) means the pool services for a
         specific DHCP client identified by client identifier or hardware
         address."
    ::= { tnDhcpServerConfigPoolEntry 2 }

tnDhcpServerConfigPoolIpv4Address OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Network number of the subnet. If the pool type is of network, the IP
         address can be any general IP address. If the pool type is of host, the
         IP address must be a unicast IP address."
    ::= { tnDhcpServerConfigPoolEntry 3 }

tnDhcpServerConfigPoolSubnetMask OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Subnet Mask. DHCP option 1. Specify subnet mask of the DHCP address
         pool, excluding 0.0.0.0 and 255.255.255.255."
    ::= { tnDhcpServerConfigPoolEntry 4 }

tnDhcpServerConfigPoolSubnetBroadcast OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Broadcast IP address in the subnet. DHCP option 28. Specify the
         broadcast address in use on the client's subnet."
    ::= { tnDhcpServerConfigPoolEntry 5 }

tnDhcpServerConfigPoolLeaseDay OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Number of days of lease time. DHCP option 51, 58 and 59. The value
         range is 0-365. Specify lease time that allows the client to request a
         lease time for the IP address. If all of LeaseDay, LeaseHour and
         LeaseMinute are 0's, then it means the lease time is infinite."
    ::= { tnDhcpServerConfigPoolEntry 6 }

tnDhcpServerConfigPoolLeaseHour OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Number of hours of lease time. DHCP option 51, 58 and 59. The value
         range is 0-23. Specify lease time that allows the client to request a
         lease time for the IP address. If all of LeaseDay, LeaseHour and
         LeaseMinute are 0's, then it means the lease time is infinite."
    ::= { tnDhcpServerConfigPoolEntry 7 }

tnDhcpServerConfigPoolLeaseMinute OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Number of minutes of lease time. DHCP option 51, 58 and 59. The value
         range is 0-59. Specify lease time that allows the client to request a
         lease time for the IP address. If all of LeaseDay, LeaseHour and
         LeaseMinute are 0's, then it means the lease time is infinite."
    ::= { tnDhcpServerConfigPoolEntry 8 }

tnDhcpServerConfigPoolDomainName OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..32))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Domain name. DHCP option 15. Specify domain name that client should use
         when resolving hostname via DNS."
    ::= { tnDhcpServerConfigPoolEntry 9 }

tnDhcpServerConfigPoolDefaultRouter1 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Default router 1."
    ::= { tnDhcpServerConfigPoolEntry 10 }

tnDhcpServerConfigPoolDefaultRouter2 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Default router 2."
    ::= { tnDhcpServerConfigPoolEntry 11 }

tnDhcpServerConfigPoolDefaultRouter3 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Default router 3."
    ::= { tnDhcpServerConfigPoolEntry 12 }

tnDhcpServerConfigPoolDefaultRouter4 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Default router 4."
    ::= { tnDhcpServerConfigPoolEntry 13 }

tnDhcpServerConfigPoolDnsServer1 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "DNS server 1."
    ::= { tnDhcpServerConfigPoolEntry 14 }

tnDhcpServerConfigPoolDnsServer2 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "DNS server 2."
    ::= { tnDhcpServerConfigPoolEntry 15 }

tnDhcpServerConfigPoolDnsServer3 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "DNS server 3."
    ::= { tnDhcpServerConfigPoolEntry 16 }

tnDhcpServerConfigPoolDnsServer4 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "DNS server 4."
    ::= { tnDhcpServerConfigPoolEntry 17 }

tnDhcpServerConfigPoolNtpServer1 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NTP server 1."
    ::= { tnDhcpServerConfigPoolEntry 18 }

tnDhcpServerConfigPoolNtpServer2 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NTP server 2."
    ::= { tnDhcpServerConfigPoolEntry 19 }

tnDhcpServerConfigPoolNtpServer3 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NTP server 3."
    ::= { tnDhcpServerConfigPoolEntry 20 }

tnDhcpServerConfigPoolNtpServer4 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NTP server 4."
    ::= { tnDhcpServerConfigPoolEntry 21 }

tnDhcpServerConfigPoolNetbiosNodeType OBJECT-TYPE
    SYNTAX      TNDhcpServerNetbiosNodeEnum
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Type of NetBIOS node. DHCP option 46. Specify NetBIOS node type option
         to allow Netbios over TCP/IP clients which are configurable to be
         configured as described in RFC 1001/1002. nodeNone(0) means the node
         type is not defined yet. nodeB(1) means the node type is type of B.
         nodeP(2) means the node type is type of P. nodeM(3) means the node type
         is type of M. nodeH(4) means the node type is type of H."
    ::= { tnDhcpServerConfigPoolEntry 22 }

tnDhcpServerConfigPoolNetbiosScope OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..32))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NetBIOS scope. DHCP option 47. Specify the NetBIOS over TCP/IP scope
         parameter for the client as specified in RFC 1001/1002."
    ::= { tnDhcpServerConfigPoolEntry 23 }

tnDhcpServerConfigPoolNetbiosNameServer1 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NetBIOS name server 1."
    ::= { tnDhcpServerConfigPoolEntry 24 }

tnDhcpServerConfigPoolNetbiosNameServer2 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NetBIOS name server 2."
    ::= { tnDhcpServerConfigPoolEntry 25 }

tnDhcpServerConfigPoolNetbiosNameServer3 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NetBIOS name server 3."
    ::= { tnDhcpServerConfigPoolEntry 26 }

tnDhcpServerConfigPoolNetbiosNameServer4 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NetBIOS name server 4."
    ::= { tnDhcpServerConfigPoolEntry 27 }

tnDhcpServerConfigPoolNisDomainName OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..32))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NIS Domain Name. DHCP option 40. Specify the name of the client's NIS
         domain."
    ::= { tnDhcpServerConfigPoolEntry 28 }

tnDhcpServerConfigPoolNisServer1 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NIS server 1."
    ::= { tnDhcpServerConfigPoolEntry 29 }

tnDhcpServerConfigPoolNisServer2 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NIS server 2."
    ::= { tnDhcpServerConfigPoolEntry 30 }

tnDhcpServerConfigPoolNisServer3 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NIS server 3."
    ::= { tnDhcpServerConfigPoolEntry 31 }

tnDhcpServerConfigPoolNisServer4 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NIS server 4."
    ::= { tnDhcpServerConfigPoolEntry 32 }

tnDhcpServerConfigPoolClientIdentifierType OBJECT-TYPE
    SYNTAX      TNDhcpServerClientIdentifierEnum
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Type of client identifier. DHCP option 61. Specify client's unique
         identifier to be used when the pool is the type of host. none(0) means
         the client identifier type is not defined yet. fqdn(1) means the client
         identifier type is type of FQDN (Fully Qualified Domain Name). mac(2)
         means the client identifier type is type of MAC address."
    ::= { tnDhcpServerConfigPoolEntry 33 }

tnDhcpServerConfigPoolClientIdentifierFqdn OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Client's Fully Qualified Domain Name. DHCP option 61. Specify client's
         unique identifier to be used when the pool is the type of host. This
         takes effect only if ClientIdentifierType is defined fqdn(1)."
    ::= { tnDhcpServerConfigPoolEntry 34 }

tnDhcpServerConfigPoolClientIdentifierMac OBJECT-TYPE
    SYNTAX      MacAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Client's MAC address. DHCP option 61. Specify client's unique
         identifier to be used when the pool is the type of host. This takes
         effect only if ClientIdentifierType is defined as mac(2)."
    ::= { tnDhcpServerConfigPoolEntry 35 }

tnDhcpServerConfigPoolClientHardwareAddress OBJECT-TYPE
    SYNTAX      MacAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Client's hardware address. Specify client's hardware(MAC) address to be
         used when the pool is the type of host."
    ::= { tnDhcpServerConfigPoolEntry 36 }

tnDhcpServerConfigPoolClientName OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..32))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Client name. DHCP option 12. Specify the name of client to be used when
         the pool is the type of host."
    ::= { tnDhcpServerConfigPoolEntry 37 }

tnDhcpServerConfigPoolVendorClassId1 OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Vendor Class Identifier. DHCP option 60. Specify to be used by DHCP
         client to optionally identify the vendor type and configuration of a
         DHCP client. DHCP server will deliver the corresponding option 43
         specific information to the client that sends option 60 vendor class
         identifier."
    ::= { tnDhcpServerConfigPoolEntry 38 }

tnDhcpServerConfigPoolVendorSpecificInfo1 OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..66))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Vendor Specific Information. DHCP option 43. Specify vendor specific
         information corresponding to option 60 vendor class identifier.
         Therefore, the corresponding vendor class identifier must be defined
         before this specific information."
    ::= { tnDhcpServerConfigPoolEntry 39 }

tnDhcpServerConfigPoolVendorClassId2 OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Vendor Class Identifier. DHCP option 60. Specify to be used by DHCP
         client to optionally identify the vendor type and configuration of a
         DHCP client. DHCP server will deliver the corresponding option 43
         specific information to the client that sends option 60 vendor class
         identifier."
    ::= { tnDhcpServerConfigPoolEntry 40 }

tnDhcpServerConfigPoolVendorSpecificInfo2 OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..66))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Vendor Specific Information. DHCP option 43. Specify vendor specific
         information corresponding to option 60 vendor class identifier.
         Therefore, the corresponding vendor class identifier must be defined
         before this specific information."
    ::= { tnDhcpServerConfigPoolEntry 41 }

tnDhcpServerConfigPoolVendorClassId3 OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Vendor Class Identifier. DHCP option 60. Specify to be used by DHCP
         client to optionally identify the vendor type and configuration of a
         DHCP client. DHCP server will deliver the corresponding option 43
         specific information to the client that sends option 60 vendor class
         identifier."
    ::= { tnDhcpServerConfigPoolEntry 42 }

tnDhcpServerConfigPoolVendorSpecificInfo3 OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..66))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Vendor Specific Information. DHCP option 43. Specify vendor specific
         information corresponding to option 60 vendor class identifier.
         Therefore, the corresponding vendor class identifier must be defined
         before this specific information."
    ::= { tnDhcpServerConfigPoolEntry 43 }

tnDhcpServerConfigPoolVendorClassId4 OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Vendor Class Identifier. DHCP option 60. Specify to be used by DHCP
         client to optionally identify the vendor type and configuration of a
         DHCP client. DHCP server will deliver the corresponding option 43
         specific information to the client that sends option 60 vendor class
         identifier."
    ::= { tnDhcpServerConfigPoolEntry 44 }

tnDhcpServerConfigPoolVendorSpecificInfo4 OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..66))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Vendor Specific Information. DHCP option 43. Specify vendor specific
         information corresponding to option 60 vendor class identifier.
         Therefore, the corresponding vendor class identifier must be defined
         before this specific information."
    ::= { tnDhcpServerConfigPoolEntry 45 }

tnDhcpServerConfigPoolAction OBJECT-TYPE
    SYNTAX      TNRowEditorState
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Action"
    ::= { tnDhcpServerConfigPoolEntry 100 }

tnDhcpServerConfigPoolTableRowEditor OBJECT IDENTIFIER
    ::= { tnDhcpServerConfig 6 }

tnDhcpServerConfigPoolTableRowEditorPoolName OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..32))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Name of DHCP pool."
    ::= { tnDhcpServerConfigPoolTableRowEditor 1 }

tnDhcpServerConfigPoolTableRowEditorPoolType OBJECT-TYPE
    SYNTAX      TNDhcpServerPoolEnum
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Type of pool. none(0) means the pool type is not defined yet.
         network(1) means the pool defines a pool of IP addresses to service
         more than one DHCP client. host(2) means the pool services for a
         specific DHCP client identified by client identifier or hardware
         address."
    ::= { tnDhcpServerConfigPoolTableRowEditor 2 }

tnDhcpServerConfigPoolTableRowEditorIpv4Address OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Network number of the subnet. If the pool type is of network, the IP
         address can be any general IP address. If the pool type is of host, the
         IP address must be a unicast IP address."
    ::= { tnDhcpServerConfigPoolTableRowEditor 3 }

tnDhcpServerConfigPoolTableRowEditorSubnetMask OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Subnet Mask. DHCP option 1. Specify subnet mask of the DHCP address
         pool, excluding 0.0.0.0 and 255.255.255.255."
    ::= { tnDhcpServerConfigPoolTableRowEditor 4 }

tnDhcpServerConfigPoolTableRowEditorSubnetBroadcast OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Broadcast IP address in the subnet. DHCP option 28. Specify the
         broadcast address in use on the client's subnet."
    ::= { tnDhcpServerConfigPoolTableRowEditor 5 }

tnDhcpServerConfigPoolTableRowEditorLeaseDay OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Number of days of lease time. DHCP option 51, 58 and 59. The value
         range is 0-365. Specify lease time that allows the client to request a
         lease time for the IP address. If all of LeaseDay, LeaseHour and
         LeaseMinute are 0's, then it means the lease time is infinite."
    ::= { tnDhcpServerConfigPoolTableRowEditor 6 }

tnDhcpServerConfigPoolTableRowEditorLeaseHour OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Number of hours of lease time. DHCP option 51, 58 and 59. The value
         range is 0-23. Specify lease time that allows the client to request a
         lease time for the IP address. If all of LeaseDay, LeaseHour and
         LeaseMinute are 0's, then it means the lease time is infinite."
    ::= { tnDhcpServerConfigPoolTableRowEditor 7 }

tnDhcpServerConfigPoolTableRowEditorLeaseMinute OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Number of minutes of lease time. DHCP option 51, 58 and 59. The value
         range is 0-59. Specify lease time that allows the client to request a
         lease time for the IP address. If all of LeaseDay, LeaseHour and
         LeaseMinute are 0's, then it means the lease time is infinite."
    ::= { tnDhcpServerConfigPoolTableRowEditor 8 }

tnDhcpServerConfigPoolTableRowEditorDomainName OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..32))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Domain name. DHCP option 15. Specify domain name that client should use
         when resolving hostname via DNS."
    ::= { tnDhcpServerConfigPoolTableRowEditor 9 }

tnDhcpServerConfigPoolTableRowEditorDefaultRouter1 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Default router 1."
    ::= { tnDhcpServerConfigPoolTableRowEditor 10 }

tnDhcpServerConfigPoolTableRowEditorDefaultRouter2 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Default router 2."
    ::= { tnDhcpServerConfigPoolTableRowEditor 11 }

tnDhcpServerConfigPoolTableRowEditorDefaultRouter3 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Default router 3."
    ::= { tnDhcpServerConfigPoolTableRowEditor 12 }

tnDhcpServerConfigPoolTableRowEditorDefaultRouter4 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Default router 4."
    ::= { tnDhcpServerConfigPoolTableRowEditor 13 }

tnDhcpServerConfigPoolTableRowEditorDnsServer1 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "DNS server 1."
    ::= { tnDhcpServerConfigPoolTableRowEditor 14 }

tnDhcpServerConfigPoolTableRowEditorDnsServer2 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "DNS server 2."
    ::= { tnDhcpServerConfigPoolTableRowEditor 15 }

tnDhcpServerConfigPoolTableRowEditorDnsServer3 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "DNS server 3."
    ::= { tnDhcpServerConfigPoolTableRowEditor 16 }

tnDhcpServerConfigPoolTableRowEditorDnsServer4 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "DNS server 4."
    ::= { tnDhcpServerConfigPoolTableRowEditor 17 }

tnDhcpServerConfigPoolTableRowEditorNtpServer1 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NTP server 1."
    ::= { tnDhcpServerConfigPoolTableRowEditor 18 }

tnDhcpServerConfigPoolTableRowEditorNtpServer2 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NTP server 2."
    ::= { tnDhcpServerConfigPoolTableRowEditor 19 }

tnDhcpServerConfigPoolTableRowEditorNtpServer3 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NTP server 3."
    ::= { tnDhcpServerConfigPoolTableRowEditor 20 }

tnDhcpServerConfigPoolTableRowEditorNtpServer4 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NTP server 4."
    ::= { tnDhcpServerConfigPoolTableRowEditor 21 }

tnDhcpServerConfigPoolTableRowEditorNetbiosNodeType OBJECT-TYPE
    SYNTAX      TNDhcpServerNetbiosNodeEnum
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Type of NetBIOS node. DHCP option 46. Specify NetBIOS node type option
         to allow Netbios over TCP/IP clients which are configurable to be
         configured as described in RFC 1001/1002. nodeNone(0) means the node
         type is not defined yet. nodeB(1) means the node type is type of B.
         nodeP(2) means the node type is type of P. nodeM(3) means the node type
         is type of M. nodeH(4) means the node type is type of H."
    ::= { tnDhcpServerConfigPoolTableRowEditor 22 }

tnDhcpServerConfigPoolTableRowEditorNetbiosScope OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..32))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NetBIOS scope. DHCP option 47. Specify the NetBIOS over TCP/IP scope
         parameter for the client as specified in RFC 1001/1002."
    ::= { tnDhcpServerConfigPoolTableRowEditor 23 }

tnDhcpServerConfigPoolTableRowEditorNetbiosNameServer1 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NetBIOS name server 1."
    ::= { tnDhcpServerConfigPoolTableRowEditor 24 }

tnDhcpServerConfigPoolTableRowEditorNetbiosNameServer2 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NetBIOS name server 2."
    ::= { tnDhcpServerConfigPoolTableRowEditor 25 }

tnDhcpServerConfigPoolTableRowEditorNetbiosNameServer3 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NetBIOS name server 3."
    ::= { tnDhcpServerConfigPoolTableRowEditor 26 }

tnDhcpServerConfigPoolTableRowEditorNetbiosNameServer4 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NetBIOS name server 4."
    ::= { tnDhcpServerConfigPoolTableRowEditor 27 }

tnDhcpServerConfigPoolTableRowEditorNisDomainName OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..32))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NIS Domain Name. DHCP option 40. Specify the name of the client's NIS
         domain."
    ::= { tnDhcpServerConfigPoolTableRowEditor 28 }

tnDhcpServerConfigPoolTableRowEditorNisServer1 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NIS server 1."
    ::= { tnDhcpServerConfigPoolTableRowEditor 29 }

tnDhcpServerConfigPoolTableRowEditorNisServer2 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NIS server 2."
    ::= { tnDhcpServerConfigPoolTableRowEditor 30 }

tnDhcpServerConfigPoolTableRowEditorNisServer3 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NIS server 3."
    ::= { tnDhcpServerConfigPoolTableRowEditor 31 }

tnDhcpServerConfigPoolTableRowEditorNisServer4 OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "NIS server 4."
    ::= { tnDhcpServerConfigPoolTableRowEditor 32 }

tnDhcpServerConfigPoolTableRowEditorClientIdentifierType OBJECT-TYPE
    SYNTAX      TNDhcpServerClientIdentifierEnum
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Type of client identifier. DHCP option 61. Specify client's unique
         identifier to be used when the pool is the type of host. none(0) means
         the client identifier type is not defined yet. fqdn(1) means the client
         identifier type is type of FQDN (Fully Qualified Domain Name). mac(2)
         means the client identifier type is type of MAC address."
    ::= { tnDhcpServerConfigPoolTableRowEditor 33 }

tnDhcpServerConfigPoolTableRowEditorClientIdentifierFqdn OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Client's Fully Qualified Domain Name. DHCP option 61. Specify client's
         unique identifier to be used when the pool is the type of host. This
         takes effect only if ClientIdentifierType is defined fqdn(1)."
    ::= { tnDhcpServerConfigPoolTableRowEditor 34 }

tnDhcpServerConfigPoolTableRowEditorClientIdentifierMac OBJECT-TYPE
    SYNTAX      MacAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Client's MAC address. DHCP option 61. Specify client's unique
         identifier to be used when the pool is the type of host. This takes
         effect only if ClientIdentifierType is defined as mac(2)."
    ::= { tnDhcpServerConfigPoolTableRowEditor 35 }

tnDhcpServerConfigPoolTableRowEditorClientHardwareAddress OBJECT-TYPE
    SYNTAX      MacAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Client's hardware address. Specify client's hardware(MAC) address to be
         used when the pool is the type of host."
    ::= { tnDhcpServerConfigPoolTableRowEditor 36 }

tnDhcpServerConfigPoolTableRowEditorClientName OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..32))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Client name. DHCP option 12. Specify the name of client to be used when
         the pool is the type of host."
    ::= { tnDhcpServerConfigPoolTableRowEditor 37 }

tnDhcpServerConfigPoolTableRowEditorVendorClassId1 OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Vendor Class Identifier. DHCP option 60. Specify to be used by DHCP
         client to optionally identify the vendor type and configuration of a
         DHCP client. DHCP server will deliver the corresponding option 43
         specific information to the client that sends option 60 vendor class
         identifier."
    ::= { tnDhcpServerConfigPoolTableRowEditor 38 }

tnDhcpServerConfigPoolTableRowEditorVendorSpecificInfo1 OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..66))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Vendor Specific Information. DHCP option 43. Specify vendor specific
         information corresponding to option 60 vendor class identifier.
         Therefore, the corresponding vendor class identifier must be defined
         before this specific information."
    ::= { tnDhcpServerConfigPoolTableRowEditor 39 }

tnDhcpServerConfigPoolTableRowEditorVendorClassId2 OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Vendor Class Identifier. DHCP option 60. Specify to be used by DHCP
         client to optionally identify the vendor type and configuration of a
         DHCP client. DHCP server will deliver the corresponding option 43
         specific information to the client that sends option 60 vendor class
         identifier."
    ::= { tnDhcpServerConfigPoolTableRowEditor 40 }

tnDhcpServerConfigPoolTableRowEditorVendorSpecificInfo2 OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..66))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Vendor Specific Information. DHCP option 43. Specify vendor specific
         information corresponding to option 60 vendor class identifier.
         Therefore, the corresponding vendor class identifier must be defined
         before this specific information."
    ::= { tnDhcpServerConfigPoolTableRowEditor 41 }

tnDhcpServerConfigPoolTableRowEditorVendorClassId3 OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Vendor Class Identifier. DHCP option 60. Specify to be used by DHCP
         client to optionally identify the vendor type and configuration of a
         DHCP client. DHCP server will deliver the corresponding option 43
         specific information to the client that sends option 60 vendor class
         identifier."
    ::= { tnDhcpServerConfigPoolTableRowEditor 42 }

tnDhcpServerConfigPoolTableRowEditorVendorSpecificInfo3 OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..66))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Vendor Specific Information. DHCP option 43. Specify vendor specific
         information corresponding to option 60 vendor class identifier.
         Therefore, the corresponding vendor class identifier must be defined
         before this specific information."
    ::= { tnDhcpServerConfigPoolTableRowEditor 43 }

tnDhcpServerConfigPoolTableRowEditorVendorClassId4 OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Vendor Class Identifier. DHCP option 60. Specify to be used by DHCP
         client to optionally identify the vendor type and configuration of a
         DHCP client. DHCP server will deliver the corresponding option 43
         specific information to the client that sends option 60 vendor class
         identifier."
    ::= { tnDhcpServerConfigPoolTableRowEditor 44 }

tnDhcpServerConfigPoolTableRowEditorVendorSpecificInfo4 OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..66))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Vendor Specific Information. DHCP option 43. Specify vendor specific
         information corresponding to option 60 vendor class identifier.
         Therefore, the corresponding vendor class identifier must be defined
         before this specific information."
    ::= { tnDhcpServerConfigPoolTableRowEditor 45 }

tnDhcpServerConfigPoolTableRowEditorAction OBJECT-TYPE
    SYNTAX      TNRowEditorState
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Action"
    ::= { tnDhcpServerConfigPoolTableRowEditor 100 }

tnDhcpServerStatus OBJECT IDENTIFIER
    ::= { tnDhcpServerMibObjects 3 }

tnDhcpServerStatusDeclinedTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNDhcpServerStatusDeclinedEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This is a table of IP addresses declined by DHCP client."
    ::= { tnDhcpServerStatus 1 }

tnDhcpServerStatusDeclinedEntry OBJECT-TYPE
    SYNTAX      TNDhcpServerStatusDeclinedEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each entry has a declined IP address."
    INDEX       { tnDhcpServerStatusDeclinedEntryNo }
    ::= { tnDhcpServerStatusDeclinedTable 1 }

TNDhcpServerStatusDeclinedEntry ::= SEQUENCE {
    tnDhcpServerStatusDeclinedEntryNo     Integer32,
    tnDhcpServerStatusDeclinedIpv4Address     IpAddress
}

tnDhcpServerStatusDeclinedEntryNo OBJECT-TYPE
    SYNTAX      Integer32 (0..2147483647)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "The number of entry. The number starts from 1."
    ::= { tnDhcpServerStatusDeclinedEntry 1 }

tnDhcpServerStatusDeclinedIpv4Address OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "IPv4 address declined by DHCP client."
    ::= { tnDhcpServerStatusDeclinedEntry 2 }

tnDhcpServerStatusStatistics OBJECT IDENTIFIER
    ::= { tnDhcpServerStatus 2 }

tnDhcpServerStatusStatisticsDiscoverCnt OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Number of DHCP DISCOVER messages received."
    ::= { tnDhcpServerStatusStatistics 1 }

tnDhcpServerStatusStatisticsOfferCnt OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Number of DHCP OFFER messages sent."
    ::= { tnDhcpServerStatusStatistics 2 }

tnDhcpServerStatusStatisticsRequestCnt OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Number of DHCP REQUEST messages received."
    ::= { tnDhcpServerStatusStatistics 3 }

tnDhcpServerStatusStatisticsAckCnt OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Number of DHCP ACK messages sent."
    ::= { tnDhcpServerStatusStatistics 4 }

tnDhcpServerStatusStatisticsNakCnt OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Number of DHCP NAK messages sent."
    ::= { tnDhcpServerStatusStatistics 5 }

tnDhcpServerStatusStatisticsDeclineCnt OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Number of DHCP DECLINE messages received."
    ::= { tnDhcpServerStatusStatistics 6 }

tnDhcpServerStatusStatisticsReleaseCnt OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Number of DHCP RELEASE messages received."
    ::= { tnDhcpServerStatusStatistics 7 }

tnDhcpServerStatusStatisticsInformCnt OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Number of DHCP INFORM messages received."
    ::= { tnDhcpServerStatusStatistics 8 }

tnDhcpServerStatusBindingTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNDhcpServerStatusBindingEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This is a table of binding data."
    ::= { tnDhcpServerStatus 3 }

tnDhcpServerStatusBindingEntry OBJECT-TYPE
    SYNTAX      TNDhcpServerStatusBindingEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each entry has the binding data."
    INDEX       { tnDhcpServerStatusBindingIpAddress }
    ::= { tnDhcpServerStatusBindingTable 1 }

TNDhcpServerStatusBindingEntry ::= SEQUENCE {
    tnDhcpServerStatusBindingIpAddress    IpAddress,
    tnDhcpServerStatusBindingState    TNDhcpServerBindingStateEnum,
    tnDhcpServerStatusBindingType     TNDhcpServerBindingEnum,
    tnDhcpServerStatusBindingPoolName     TNDisplayString,
    tnDhcpServerStatusBindingServerId     IpAddress,
    tnDhcpServerStatusBindingVlanId   TNUnsigned16,
    tnDhcpServerStatusBindingSubnetMask   IpAddress,
    tnDhcpServerStatusBindingClientIdentifierType     TNDhcpServerClientIdentifierEnum,
    tnDhcpServerStatusBindingClientIdentifierFqdn     TNDisplayString,
    tnDhcpServerStatusBindingClientIdentifierMac      MacAddress,
    tnDhcpServerStatusBindingMacAddress   MacAddress,
    tnDhcpServerStatusBindingLease    TNDisplayString,
    tnDhcpServerStatusBindingTimeToExpire     TNDisplayString
}

tnDhcpServerStatusBindingIpAddress OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "IP address."
    ::= { tnDhcpServerStatusBindingEntry 1 }

tnDhcpServerStatusBindingState OBJECT-TYPE
    SYNTAX      TNDhcpServerBindingStateEnum
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "State of binding. none(0) means the binding is not in use. allocated(1)
         means the binding is allocated to the new DHCP client who send
         DHCPDISCOVER. committed(2) means the binding is committed as the DHCP
         process is completed successfully. expired(3) means the lease of the
         binding expired."
    ::= { tnDhcpServerStatusBindingEntry 2 }

tnDhcpServerStatusBindingType OBJECT-TYPE
    SYNTAX      TNDhcpServerBindingEnum
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Type of binding. none(0) means the binding is not in use. automatic(1)
         means the binding is mapped to network-type pool. manual(2) means the
         binding is mapped to host-type pool. expired(3) means the lease of the
         binding expired."
    ::= { tnDhcpServerStatusBindingEntry 3 }

tnDhcpServerStatusBindingPoolName OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..32))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Name of the pool that creates the binding."
    ::= { tnDhcpServerStatusBindingEntry 4 }

tnDhcpServerStatusBindingServerId OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "IP address of the DHCP server to service the binding."
    ::= { tnDhcpServerStatusBindingEntry 5 }

tnDhcpServerStatusBindingVlanId OBJECT-TYPE
    SYNTAX      TNUnsigned16
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The VLAN where the binding works on."
    ::= { tnDhcpServerStatusBindingEntry 6 }

tnDhcpServerStatusBindingSubnetMask OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Subnet mask of the DHCP client."
    ::= { tnDhcpServerStatusBindingEntry 7 }

tnDhcpServerStatusBindingClientIdentifierType OBJECT-TYPE
    SYNTAX      TNDhcpServerClientIdentifierEnum
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Type of client identifier. DHCP option 61. Specify client's unique
         identifier to be used when the pool is the type of host. none(0) means
         the client identifier type is not defined yet. fqdn(1) means the client
         identifier type is type of FQDN (Fully Qualified Domain Name). mac(2)
         means the client identifier type is type of MAC address."
    ::= { tnDhcpServerStatusBindingEntry 8 }

tnDhcpServerStatusBindingClientIdentifierFqdn OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..64))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Client's Fully Qualified Domain Name. DHCP option 61."
    ::= { tnDhcpServerStatusBindingEntry 9 }

tnDhcpServerStatusBindingClientIdentifierMac OBJECT-TYPE
    SYNTAX      MacAddress
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Client's MAC address. DHCP option 61."
    ::= { tnDhcpServerStatusBindingEntry 10 }

tnDhcpServerStatusBindingMacAddress OBJECT-TYPE
    SYNTAX      MacAddress
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "MAC address of the DHCP client."
    ::= { tnDhcpServerStatusBindingEntry 11 }

tnDhcpServerStatusBindingLease OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..64))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Lease time of the binding."
    ::= { tnDhcpServerStatusBindingEntry 12 }

tnDhcpServerStatusBindingTimeToExpire OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..64))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "remaining time to expire."
    ::= { tnDhcpServerStatusBindingEntry 13 }

tnDhcpServerControl OBJECT IDENTIFIER
    ::= { tnDhcpServerMibObjects 4 }

tnDhcpServerControlStatistics OBJECT IDENTIFIER
    ::= { tnDhcpServerControl 1 }

tnDhcpServerControlStatisticsClear OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Clear all statistics."
    ::= { tnDhcpServerControlStatistics 1 }

tnDhcpServerControlBinding OBJECT IDENTIFIER
    ::= { tnDhcpServerControl 2 }

tnDhcpServerControlBindingClearByIp OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Clear binding with the IP address. If 0.0.0.0 then do nothing."
    ::= { tnDhcpServerControlBinding 1 }

tnDhcpServerControlBindingClearByType OBJECT-TYPE
    SYNTAX      TNDhcpServerBindingEnum
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Clear binding by binding type. If none(0) then do nothing."
    ::= { tnDhcpServerControlBinding 2 }

tnDhcpServerMibConformance OBJECT IDENTIFIER
    ::= { tnDhcpServerMib 2 }

tnDhcpServerMibCompliances OBJECT IDENTIFIER
    ::= { tnDhcpServerMibConformance 1 }

tnDhcpServerMibGroups OBJECT IDENTIFIER
    ::= { tnDhcpServerMibConformance 2 }

tnDhcpServerConfigGlobalsInfoGroup OBJECT-GROUP
    OBJECTS     { tnDhcpServerConfigGlobalsMode }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnDhcpServerMibGroups 1 }

tnDhcpServerConfigVlanTableInfoGroup OBJECT-GROUP
    OBJECTS     { tnDhcpServerConfigVlanMode }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnDhcpServerMibGroups 2 }

tnDhcpServerConfigExcludedTableInfoGroup OBJECT-GROUP
    OBJECTS     { tnDhcpServerConfigExcludedAction }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnDhcpServerMibGroups 3 }

tnDhcpServerConfigExcludedIpTableRowEditorInfoGroup OBJECT-GROUP
    OBJECTS     { tnDhcpServerConfigExcludedIpTableRowEditorLowIpAddress, 
                  tnDhcpServerConfigExcludedIpTableRowEditorHighIpAddress, 
                  tnDhcpServerConfigExcludedIpTableRowEditorAction }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnDhcpServerMibGroups 4 }

tnDhcpServerConfigPoolTableInfoGroup OBJECT-GROUP
    OBJECTS     { tnDhcpServerConfigPoolPoolType, 
                  tnDhcpServerConfigPoolIpv4Address, 
                  tnDhcpServerConfigPoolSubnetMask, 
                  tnDhcpServerConfigPoolSubnetBroadcast, 
                  tnDhcpServerConfigPoolLeaseDay, 
                  tnDhcpServerConfigPoolLeaseHour, 
                  tnDhcpServerConfigPoolLeaseMinute, 
                  tnDhcpServerConfigPoolDomainName, 
                  tnDhcpServerConfigPoolDefaultRouter1, 
                  tnDhcpServerConfigPoolDefaultRouter2, 
                  tnDhcpServerConfigPoolDefaultRouter3, 
                  tnDhcpServerConfigPoolDefaultRouter4, 
                  tnDhcpServerConfigPoolDnsServer1, 
                  tnDhcpServerConfigPoolDnsServer2, 
                  tnDhcpServerConfigPoolDnsServer3, 
                  tnDhcpServerConfigPoolDnsServer4, 
                  tnDhcpServerConfigPoolNtpServer1, 
                  tnDhcpServerConfigPoolNtpServer2, 
                  tnDhcpServerConfigPoolNtpServer3, 
                  tnDhcpServerConfigPoolNtpServer4, 
                  tnDhcpServerConfigPoolNetbiosNodeType, 
                  tnDhcpServerConfigPoolNetbiosScope, 
                  tnDhcpServerConfigPoolNetbiosNameServer1, 
                  tnDhcpServerConfigPoolNetbiosNameServer2, 
                  tnDhcpServerConfigPoolNetbiosNameServer3, 
                  tnDhcpServerConfigPoolNetbiosNameServer4, 
                  tnDhcpServerConfigPoolNisDomainName, 
                  tnDhcpServerConfigPoolNisServer1, 
                  tnDhcpServerConfigPoolNisServer2, 
                  tnDhcpServerConfigPoolNisServer3, 
                  tnDhcpServerConfigPoolNisServer4, 
                  tnDhcpServerConfigPoolClientIdentifierType, 
                  tnDhcpServerConfigPoolClientIdentifierFqdn, 
                  tnDhcpServerConfigPoolClientIdentifierMac, 
                  tnDhcpServerConfigPoolClientHardwareAddress, 
                  tnDhcpServerConfigPoolClientName, 
                  tnDhcpServerConfigPoolVendorClassId1, 
                  tnDhcpServerConfigPoolVendorSpecificInfo1, 
                  tnDhcpServerConfigPoolVendorClassId2, 
                  tnDhcpServerConfigPoolVendorSpecificInfo2, 
                  tnDhcpServerConfigPoolVendorClassId3, 
                  tnDhcpServerConfigPoolVendorSpecificInfo3, 
                  tnDhcpServerConfigPoolVendorClassId4, 
                  tnDhcpServerConfigPoolVendorSpecificInfo4, 
                  tnDhcpServerConfigPoolAction }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnDhcpServerMibGroups 5 }

tnDhcpServerConfigPoolTableRowEditorInfoGroup OBJECT-GROUP
    OBJECTS     { tnDhcpServerConfigPoolTableRowEditorPoolName, 
                  tnDhcpServerConfigPoolTableRowEditorPoolType, 
                  tnDhcpServerConfigPoolTableRowEditorIpv4Address, 
                  tnDhcpServerConfigPoolTableRowEditorSubnetMask, 
                  tnDhcpServerConfigPoolTableRowEditorSubnetBroadcast, 
                  tnDhcpServerConfigPoolTableRowEditorLeaseDay, 
                  tnDhcpServerConfigPoolTableRowEditorLeaseHour, 
                  tnDhcpServerConfigPoolTableRowEditorLeaseMinute, 
                  tnDhcpServerConfigPoolTableRowEditorDomainName, 
                  tnDhcpServerConfigPoolTableRowEditorDefaultRouter1, 
                  tnDhcpServerConfigPoolTableRowEditorDefaultRouter2, 
                  tnDhcpServerConfigPoolTableRowEditorDefaultRouter3, 
                  tnDhcpServerConfigPoolTableRowEditorDefaultRouter4, 
                  tnDhcpServerConfigPoolTableRowEditorDnsServer1, 
                  tnDhcpServerConfigPoolTableRowEditorDnsServer2, 
                  tnDhcpServerConfigPoolTableRowEditorDnsServer3, 
                  tnDhcpServerConfigPoolTableRowEditorDnsServer4, 
                  tnDhcpServerConfigPoolTableRowEditorNtpServer1, 
                  tnDhcpServerConfigPoolTableRowEditorNtpServer2, 
                  tnDhcpServerConfigPoolTableRowEditorNtpServer3, 
                  tnDhcpServerConfigPoolTableRowEditorNtpServer4, 
                  tnDhcpServerConfigPoolTableRowEditorNetbiosNodeType, 
                  tnDhcpServerConfigPoolTableRowEditorNetbiosScope, 
                  tnDhcpServerConfigPoolTableRowEditorNetbiosNameServer1, 
                  tnDhcpServerConfigPoolTableRowEditorNetbiosNameServer2, 
                  tnDhcpServerConfigPoolTableRowEditorNetbiosNameServer3, 
                  tnDhcpServerConfigPoolTableRowEditorNetbiosNameServer4, 
                  tnDhcpServerConfigPoolTableRowEditorNisDomainName, 
                  tnDhcpServerConfigPoolTableRowEditorNisServer1, 
                  tnDhcpServerConfigPoolTableRowEditorNisServer2, 
                  tnDhcpServerConfigPoolTableRowEditorNisServer3, 
                  tnDhcpServerConfigPoolTableRowEditorNisServer4, 
                  tnDhcpServerConfigPoolTableRowEditorClientIdentifierType, 
                  tnDhcpServerConfigPoolTableRowEditorClientIdentifierFqdn, 
                  tnDhcpServerConfigPoolTableRowEditorClientIdentifierMac, 
                  tnDhcpServerConfigPoolTableRowEditorClientHardwareAddress, 
                  tnDhcpServerConfigPoolTableRowEditorClientName, 
                  tnDhcpServerConfigPoolTableRowEditorVendorClassId1, 
                  tnDhcpServerConfigPoolTableRowEditorVendorSpecificInfo1, 
                  tnDhcpServerConfigPoolTableRowEditorVendorClassId2, 
                  tnDhcpServerConfigPoolTableRowEditorVendorSpecificInfo2, 
                  tnDhcpServerConfigPoolTableRowEditorVendorClassId3, 
                  tnDhcpServerConfigPoolTableRowEditorVendorSpecificInfo3, 
                  tnDhcpServerConfigPoolTableRowEditorVendorClassId4, 
                  tnDhcpServerConfigPoolTableRowEditorVendorSpecificInfo4, 
                  tnDhcpServerConfigPoolTableRowEditorAction }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnDhcpServerMibGroups 6 }

tnDhcpServerStatusDeclinedTableInfoGroup OBJECT-GROUP
    OBJECTS     { tnDhcpServerStatusDeclinedIpv4Address }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnDhcpServerMibGroups 7 }

tnDhcpServerStatusStatisticsInfoGroup OBJECT-GROUP
    OBJECTS     { tnDhcpServerStatusStatisticsDiscoverCnt, 
                  tnDhcpServerStatusStatisticsOfferCnt, 
                  tnDhcpServerStatusStatisticsRequestCnt, 
                  tnDhcpServerStatusStatisticsAckCnt, 
                  tnDhcpServerStatusStatisticsNakCnt, 
                  tnDhcpServerStatusStatisticsDeclineCnt, 
                  tnDhcpServerStatusStatisticsReleaseCnt, 
                  tnDhcpServerStatusStatisticsInformCnt }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnDhcpServerMibGroups 8 }

tnDhcpServerStatusBindingTableInfoGroup OBJECT-GROUP
    OBJECTS     { tnDhcpServerStatusBindingState, 
                  tnDhcpServerStatusBindingType, 
                  tnDhcpServerStatusBindingPoolName, 
                  tnDhcpServerStatusBindingServerId, 
                  tnDhcpServerStatusBindingVlanId, 
                  tnDhcpServerStatusBindingSubnetMask, 
                  tnDhcpServerStatusBindingClientIdentifierType, 
                  tnDhcpServerStatusBindingClientIdentifierFqdn, 
                  tnDhcpServerStatusBindingClientIdentifierMac, 
                  tnDhcpServerStatusBindingMacAddress, 
                  tnDhcpServerStatusBindingLease, 
                  tnDhcpServerStatusBindingTimeToExpire }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnDhcpServerMibGroups 9 }

tnDhcpServerControlStatisticsInfoGroup OBJECT-GROUP
    OBJECTS     { tnDhcpServerControlStatisticsClear }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnDhcpServerMibGroups 10 }

tnDhcpServerControlBindingInfoGroup OBJECT-GROUP
    OBJECTS     { tnDhcpServerControlBindingClearByIp, 
                  tnDhcpServerControlBindingClearByType }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnDhcpServerMibGroups 11 }

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

    MODULE      -- this module

        MANDATORY-GROUPS        { tnDhcpServerConfigGlobalsInfoGroup, 
                  tnDhcpServerConfigVlanTableInfoGroup, 
                  tnDhcpServerConfigExcludedTableInfoGroup, 
                  tnDhcpServerConfigExcludedIpTableRowEditorInfoGroup, 
                  tnDhcpServerConfigPoolTableInfoGroup, 
                  tnDhcpServerConfigPoolTableRowEditorInfoGroup, 
                  tnDhcpServerStatusDeclinedTableInfoGroup, 
                  tnDhcpServerStatusStatisticsInfoGroup, 
                  tnDhcpServerStatusBindingTableInfoGroup, 
                  tnDhcpServerControlStatisticsInfoGroup, 
                  tnDhcpServerControlBindingInfoGroup }

    ::= { tnDhcpServerMibCompliances 1 }

END