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
|
-- *****************************************************************
-- DLINKSW-NTP-MIB.mib : D-Link NTP MIB
--
-- Copyright (c) 2014 D-Link Corporation, all rights reserved.
--
-- *****************************************************************
DLINKSW-NTP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION,
TruthValue,
RowStatus
FROM SNMPv2-TC
InetAddressType,
InetAddress,
InetAddressPrefixLength
FROM INET-ADDRESS-MIB
DisplayString
FROM RFC1213-MIB
InterfaceIndex, InterfaceIndexOrZero
FROM IF-MIB
dlinkIndustrialCommon
FROM DLINK-ID-REC-MIB;
dlinkSwNtpMIB MODULE-IDENTITY
LAST-UPDATED "201409150000Z"
ORGANIZATION "D-Link Corp."
CONTACT-INFO
" D-Link Corporation
Postal: No. 289, Sinhu 3rd Rd., Neihu District,
Taipei City 114, Taiwan, R.O.C
Tel: +886-2-66000123
E-mail: tsd@dlink.com.tw
"
DESCRIPTION
"The Structure of NTP for the proprietary enterprise."
REVISION "201409150000Z"
DESCRIPTION
"This is the first version of the MIB file.
"
::= { dlinkIndustrialCommon 182 }
-- -----------------------------------------------------------------------------
dNtpMIBNotifications OBJECT IDENTIFIER ::= { dlinkSwNtpMIB 0 }
dNtpMIBObjects OBJECT IDENTIFIER ::= { dlinkSwNtpMIB 1 }
dNtpMIBConformance OBJECT IDENTIFIER ::= { dlinkSwNtpMIB 2 }
-- -----------------------------------------------------------------------------
-- ********************************************************************
-- dNtpCtrl OBJECT IDENTIFIER ::= { dNtpMIBObjects 1 }
-- ********************************************************************
dNtpCtrl OBJECT IDENTIFIER ::= { dNtpMIBObjects 1 }
dNtpServiceEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object enables/disables the NTP service on the device."
DEFVAL { false }
::= { dNtpCtrl 1 }
dNtpAuthenticateEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object enables/disables NTP authentication on the device."
DEFVAL { true }
::= { dNtpCtrl 2 }
dNtpUpdateCalendarEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object enables/disables periodically update calendar."
DEFVAL { false }
::= { dNtpCtrl 3 }
dNtpMaxAssociations OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object used to configure the maximum number of NTP peers and
clients on the device."
DEFVAL { 32 }
::= { dNtpCtrl 4 }
dNtpBroadcastDelay OBJECT-TYPE
SYNTAX INTEGER (1..999999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object used to configure NTP broadcast delay in millisecond."
DEFVAL { 300 }
::= { dNtpCtrl 5 }
dNtpControlKey OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object used to Specify the key ID for the NTP control message."
DEFVAL { 0 }
::= { dNtpCtrl 6 }
dNtpRequestKey OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object used to Specify the key ID for the NTP mode 7 packets."
DEFVAL { 0 }
::= { dNtpCtrl 7 }
dNtpMasterStratum OBJECT-TYPE
SYNTAX INTEGER(0..15)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object used to configure switch act as NTP master clock.
Note:Valid stratum is 1-15, 0 for disable."
::= { dNtpCtrl 8 }
-- ********************************************************************
-- dNtpAccessGroupTable OBJECT IDENTIFIER ::= { dNtpMIBObjects 2 }
-- ********************************************************************
dNtpAccessGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF DNtpAccessGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes the access group of NTP."
::= { dNtpMIBObjects 2 }
dNtpAccessGroupEntry OBJECT-TYPE
SYNTAX DNtpAccessGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a list of information contained in the dNtpAccessGroupTable."
INDEX {
dNtpAccessGroupVrfName,
dNtpAccessGroupIpAddressType,
dNtpAccessGroupIpAddress,
dNtpAccessGroupIpAddressPrefixLength}
::= { dNtpAccessGroupTable 1 }
DNtpAccessGroupEntry ::=
SEQUENCE {
dNtpAccessGroupVrfName
DisplayString,
dNtpAccessGroupIpAddressType
InetAddressType,
dNtpAccessGroupIpAddress
InetAddress,
dNtpAccessGroupIpAddressPrefixLength
InetAddressPrefixLength,
dNtpAccessGroupIgnore
TruthValue,
dNtpAccessGroupNoModify
TruthValue,
dNtpAccessGroupNoQuery
TruthValue,
dNtpAccessGroupNoPeer
TruthValue,
dNtpAccessGroupNoServe
TruthValue,
dNtpAccessGroupNoTrust
TruthValue,
dNtpAccessGroupVersion
TruthValue,
dNtpAccessGroupRowStatus
RowStatus
}
dNtpAccessGroupVrfName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..12))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the name of the routing forwarding instance.
A zero length string indicates the VRF name is not specified.
For the platform that doesn't support VRF, only a zero length string
is allowed for this object.
"
::= { dNtpAccessGroupEntry 1 }
dNtpAccessGroupIpAddressType OBJECT-TYPE
SYNTAX InetAddressType {ipv4(1), ipv6(2), ipv6z(4) }
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Internet address type of access group."
::= { dNtpAccessGroupEntry 2 }
dNtpAccessGroupIpAddress OBJECT-TYPE
SYNTAX InetAddress (SIZE (4|16|20))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IP address expressed in dotted-quad form is the address of a host or network.
Note:use 0.0.0.0 for default entry"
::= { dNtpAccessGroupEntry 3 }
dNtpAccessGroupIpAddressPrefixLength OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The length of the prefix associated with the IP address of this entry."
::= { dNtpAccessGroupEntry 4 }
dNtpAccessGroupIgnore OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object can deny packets of all kinds, including NTP control queries."
DEFVAL { false }
::= { dNtpAccessGroupEntry 5 }
dNtpAccessGroupNoModify OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object can deny NTP control queries which attempt to modify
the state of the server."
DEFVAL { false }
::= { dNtpAccessGroupEntry 6 }
dNtpAccessGroupNoQuery OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object can deny all NTP control queries."
DEFVAL { false }
::= { dNtpAccessGroupEntry 7 }
dNtpAccessGroupNoPeer OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object can deny packets that might mobilize
an association unless authenticated."
DEFVAL { false }
::= { dNtpAccessGroupEntry 8 }
dNtpAccessGroupNoServe OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object can deny all packets except NTP control queries."
DEFVAL { false }
::= { dNtpAccessGroupEntry 9 }
dNtpAccessGroupNoTrust OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object can deny packets that are not cryptographically authenticated."
DEFVAL { false }
::= { dNtpAccessGroupEntry 10 }
dNtpAccessGroupVersion OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object can deny packets that do not match the current NTP version."
DEFVAL { false }
::= { dNtpAccessGroupEntry 11 }
dNtpAccessGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes the state of the access group entry."
::= { dNtpAccessGroupEntry 99 }
-- ********************************************************************
-- dNtpAccessInterfaceTable OBJECT IDENTIFIER ::= { dNtpMIBObjects 3 }
-- ********************************************************************
dNtpAccessInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF DNtpAccessInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes the interface control of NTP."
::= { dNtpMIBObjects 3 }
dNtpAccessInterfaceEntry OBJECT-TYPE
SYNTAX DNtpAccessInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a list of information contained in the dNtpAccessInterfaceTable."
INDEX {dNtpAccessInterfaceIfIndex}
::= { dNtpAccessInterfaceTable 1 }
DNtpAccessInterfaceEntry ::=
SEQUENCE {
dNtpAccessInterfaceIfIndex
InterfaceIndex,
dNtpAccessInterfaceEnabled
TruthValue
}
dNtpAccessInterfaceIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex value of the interface is determined by the agent."
::= { dNtpAccessInterfaceEntry 1 }
dNtpAccessInterfaceEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicate if NTP receive packet from this interface."
DEFVAL { true }
::= { dNtpAccessInterfaceEntry 2 }
-- ********************************************************************
-- dNtpAuthenticationKeyTable OBJECT IDENTIFIER ::= { dNtpMIBObjects 4 }
-- ********************************************************************
dNtpAuthenticationKeyTable OBJECT-TYPE
SYNTAX SEQUENCE OF DNtpAuthenticationKeyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes the access group of NTP."
::= { dNtpMIBObjects 4 }
dNtpAuthenticationKeyEntry OBJECT-TYPE
SYNTAX DNtpAuthenticationKeyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a list of information contained in the
dNtpAuthenticationKeyTable."
INDEX {dNtpAuthenticationKeyId}
::= { dNtpAuthenticationKeyTable 1 }
DNtpAuthenticationKeyEntry ::=
SEQUENCE {
dNtpAuthenticationKeyId
INTEGER,
dNtpAuthenticationKeyType
DisplayString,
dNtpAuthenticationKeyValue
DisplayString,
dNtpAuthenticationKeyTrusted
TruthValue,
dNtpAuthenticationKeyStatus
RowStatus
}
dNtpAuthenticationKeyId OBJECT-TYPE
SYNTAX INTEGER(1..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object used to define authentication key ID for NTP."
::= { dNtpAuthenticationKeyEntry 1 }
dNtpAuthenticationKeyType OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..12))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object used to define authentication key type for NTP.
Note: Only support md5 now."
::= { dNtpAuthenticationKeyEntry 2 }
dNtpAuthenticationKeyValue OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object used to define authentication key value for NTP."
::= { dNtpAuthenticationKeyEntry 3 }
dNtpAuthenticationKeyTrusted OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to trust an NTP key on the device."
DEFVAL { false }
::= { dNtpAuthenticationKeyEntry 4 }
dNtpAuthenticationKeyStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes the state of the authentication key entry."
::= { dNtpAuthenticationKeyEntry 99 }
-- ********************************************************************
-- dNtpCfgBroadcastClientTable OBJECT IDENTIFIER ::= { dNtpMIBObjects 5 }
-- ********************************************************************
dNtpCfgBroadcastClientTable OBJECT-TYPE
SYNTAX SEQUENCE OF DNtpCfgBroadcastClientEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes the broadcast client of NTP."
::= { dNtpMIBObjects 5 }
dNtpCfgBroadcastClientEntry OBJECT-TYPE
SYNTAX DNtpCfgBroadcastClientEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a list of information contained in the dNtpCfgBroadcastClientTable."
INDEX {dNtpCfgBroadcastClientIfIndex}
::= { dNtpCfgBroadcastClientTable 1 }
DNtpCfgBroadcastClientEntry ::=
SEQUENCE {
dNtpCfgBroadcastClientIfIndex
InterfaceIndex,
dNtpCfgBroadcastClientKeyId
INTEGER,
dNtpCfgBroadcastClientStatus
RowStatus
}
dNtpCfgBroadcastClientIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex value of the interface is determined by the agent."
::= { dNtpCfgBroadcastClientEntry 1 }
dNtpCfgBroadcastClientKeyId OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the authentication key ID used for this entry.
0 means no key ID used."
DEFVAL { 0 }
::= { dNtpCfgBroadcastClientEntry 2 }
dNtpCfgBroadcastClientStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes the state of the NTP broadcast client entry."
::= { dNtpCfgBroadcastClientEntry 99 }
-- ********************************************************************
-- dNtpCfgBroadcastServerTable OBJECT IDENTIFIER ::= { dNtpMIBObjects 6 }
-- ********************************************************************
dNtpCfgBroadcastServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF DNtpCfgBroadcastServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes the broadcast server of NTP."
::= { dNtpMIBObjects 6 }
dNtpCfgBroadcastServerEntry OBJECT-TYPE
SYNTAX DNtpCfgBroadcastServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a list of information contained in the dNtpCfgBroadcastServerTable."
INDEX {dNtpCfgBroadcastServerIfIndex}
::= { dNtpCfgBroadcastServerTable 1 }
DNtpCfgBroadcastServerEntry ::=
SEQUENCE {
dNtpCfgBroadcastServerIfIndex
InterfaceIndex,
dNtpCfgBroadcastServerVersion
INTEGER,
dNtpCfgBroadcastServerKeyId
INTEGER,
dNtpCfgBroadcastServerStatus
RowStatus
}
dNtpCfgBroadcastServerIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex value of the interface is determined by the agent."
::= { dNtpCfgBroadcastServerEntry 1 }
dNtpCfgBroadcastServerVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the NTP version number."
DEFVAL { 4 }
::= { dNtpCfgBroadcastServerEntry 2 }
dNtpCfgBroadcastServerKeyId OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the authentication key ID used for this entry.
0 means no key ID used."
DEFVAL { 0 }
::= { dNtpCfgBroadcastServerEntry 3 }
dNtpCfgBroadcastServerStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes the state of the NTP broadcast server entry."
::= { dNtpCfgBroadcastServerEntry 99 }
-- ********************************************************************
-- dNtpCfgMulticastClientTable OBJECT IDENTIFIER ::= { dNtpMIBObjects 7 }
-- ********************************************************************
dNtpCfgMulticastClientTable OBJECT-TYPE
SYNTAX SEQUENCE OF DNtpCfgMulticastClientEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes the multicast client of NTP."
::= { dNtpMIBObjects 7 }
dNtpCfgMulticastClientEntry OBJECT-TYPE
SYNTAX DNtpCfgMulticastClientEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a list of information contained in the dNtpCfgMulticastClientTable."
INDEX {
dNtpCfgMulticastClientIfIndex,
dNtpCfgMulticastClientIpAddressType,
dNtpCfgMulticastClientIpAddress}
::= { dNtpCfgMulticastClientTable 1 }
DNtpCfgMulticastClientEntry ::=
SEQUENCE {
dNtpCfgMulticastClientIfIndex
InterfaceIndex,
dNtpCfgMulticastClientIpAddressType
InetAddressType,
dNtpCfgMulticastClientIpAddress
InetAddress,
dNtpCfgMulticastClientKeyId
INTEGER,
dNtpCfgMulticastClientStatus
RowStatus
}
dNtpCfgMulticastClientIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the ifIndex value of the interface
is determined by the agent."
::= { dNtpCfgMulticastClientEntry 1 }
dNtpCfgMulticastClientIpAddressType OBJECT-TYPE
SYNTAX InetAddressType {ipv4(1), ipv6(2)}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Internet address type of Ntp peer."
::= { dNtpCfgMulticastClientEntry 2 }
dNtpCfgMulticastClientIpAddress OBJECT-TYPE
SYNTAX InetAddress (SIZE (4|16))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IP address expressed in dotted-quad form is the address of Ntp peer."
::= { dNtpCfgMulticastClientEntry 3 }
dNtpCfgMulticastClientKeyId OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the authentication key ID used for this entry.
0 means no key ID used."
DEFVAL { 0 }
::= { dNtpCfgMulticastClientEntry 4 }
dNtpCfgMulticastClientStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes the state of the NTP multicast client entry."
::= { dNtpCfgMulticastClientEntry 99 }
-- ********************************************************************
-- dNtpCfgMulticastServerTable OBJECT IDENTIFIER ::= { dNtpMIBObjects 8 }
-- ********************************************************************
dNtpCfgMulticastServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF DNtpCfgMulticastServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes the multicast server of NTP."
::= { dNtpMIBObjects 8 }
dNtpCfgMulticastServerEntry OBJECT-TYPE
SYNTAX DNtpCfgMulticastServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a list of information contained in the dNtpCfgMulticastServerTable."
INDEX {
dNtpCfgMulticastServerIfIndex,
dNtpCfgMulticastServerIpAddressType,
dNtpCfgMulticastServerIpAddress}
::= { dNtpCfgMulticastServerTable 1 }
DNtpCfgMulticastServerEntry ::=
SEQUENCE {
dNtpCfgMulticastServerIfIndex
InterfaceIndex,
dNtpCfgMulticastServerIpAddressType
InetAddressType,
dNtpCfgMulticastServerIpAddress
InetAddress,
dNtpCfgMulticastServerVersion
INTEGER,
dNtpCfgMulticastServerKeyId
INTEGER,
dNtpCfgMulticastServerTtl
INTEGER,
dNtpCfgMulticastServerStatus
RowStatus
}
dNtpCfgMulticastServerIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the ifIndex value of the interface
is determined by the agent."
::= { dNtpCfgMulticastServerEntry 1 }
dNtpCfgMulticastServerIpAddressType OBJECT-TYPE
SYNTAX InetAddressType {ipv4(1), ipv6(2)}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Internet address type of Ntp peer."
::= { dNtpCfgMulticastServerEntry 2 }
dNtpCfgMulticastServerIpAddress OBJECT-TYPE
SYNTAX InetAddress (SIZE (4|16))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IP address expressed in dotted-quad form is the address of Ntp peer."
::= { dNtpCfgMulticastServerEntry 3 }
dNtpCfgMulticastServerVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the NTP version number."
DEFVAL { 4 }
::= { dNtpCfgMulticastServerEntry 4 }
dNtpCfgMulticastServerKeyId OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the authentication key ID used for this entry.
0 means no key ID used."
DEFVAL { 0 }
::= { dNtpCfgMulticastServerEntry 5 }
dNtpCfgMulticastServerTtl OBJECT-TYPE
SYNTAX INTEGER(1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object Specified the TTL value for NTP messages."
DEFVAL { 16 }
::= { dNtpCfgMulticastServerEntry 6 }
dNtpCfgMulticastServerStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes the state of the NTP multicast server entry."
::= { dNtpCfgMulticastServerEntry 99 }
-- ********************************************************************
-- dNtpCfgPeerTable OBJECT IDENTIFIER ::= { dNtpMIBObjects 9 }
-- ********************************************************************
dNtpCfgPeerTable OBJECT-TYPE
SYNTAX SEQUENCE OF DNtpCfgPeerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes the symmetric peer of NTP."
::= { dNtpMIBObjects 9 }
dNtpCfgPeerEntry OBJECT-TYPE
SYNTAX DNtpCfgPeerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a list of information contained in the dNtpCfgPeerTable."
INDEX {
dNtpCfgPeerVrfName,
dNtpCfgPeerIpAddressType,
dNtpCfgPeerIpAddress}
::= { dNtpCfgPeerTable 1 }
DNtpCfgPeerEntry ::=
SEQUENCE {
dNtpCfgPeerVrfName
DisplayString,
dNtpCfgPeerIpAddressType
InetAddressType,
dNtpCfgPeerIpAddress
InetAddress,
dNtpCfgPeerVersion
INTEGER,
dNtpCfgPeerKeyId
INTEGER,
dNtpCfgPeerPrefer
TruthValue,
dNtpCfgPeerMinPoll
INTEGER,
dNtpCfgPeerMaxPoll
INTEGER,
dNtpCfgPeerStatus
RowStatus
}
dNtpCfgPeerVrfName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..12))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the name of the routing forwarding instance.
A zero length string indicates the VRF name is not specified.
For the platform that doesn't support VRF, only a zero length string
is allowed for this object."
::= { dNtpCfgPeerEntry 1 }
dNtpCfgPeerIpAddressType OBJECT-TYPE
SYNTAX InetAddressType {ipv4(1), ipv6(2), ipv6z(4) }
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Internet address type of Ntp peer."
::= { dNtpCfgPeerEntry 2 }
dNtpCfgPeerIpAddress OBJECT-TYPE
SYNTAX InetAddress (SIZE (4|16|20))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IP address expressed in dotted-quad form is the address of Ntp peer."
::= { dNtpCfgPeerEntry 3 }
dNtpCfgPeerVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the NTP version number."
DEFVAL { 4 }
::= { dNtpCfgPeerEntry 4 }
dNtpCfgPeerKeyId OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the authentication key ID used for this entry.
0 means no key ID used."
DEFVAL { 0 }
::= { dNtpCfgPeerEntry 5 }
dNtpCfgPeerPrefer OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to makes it be the preferred peer
that provides synchronization."
DEFVAL { false }
::= { dNtpCfgPeerEntry 6 }
dNtpCfgPeerMinPoll OBJECT-TYPE
SYNTAX INTEGER(3..16)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object Specified the minimum poll intervals for NTP
messages, in seconds as a power of two."
DEFVAL { 6 }
::= { dNtpCfgPeerEntry 7 }
dNtpCfgPeerMaxPoll OBJECT-TYPE
SYNTAX INTEGER(4..17)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object Specified the maximum poll intervals for NTP
messages, in seconds as a power of two."
DEFVAL { 10 }
::= { dNtpCfgPeerEntry 8 }
dNtpCfgPeerStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes the state of the NTP peer entry."
::= { dNtpCfgPeerEntry 99 }
-- ********************************************************************
-- dNtpCfgSrvTable OBJECT IDENTIFIER ::= { dNtpMIBObjects 10 }
-- ********************************************************************
dNtpCfgSrvTable OBJECT-TYPE
SYNTAX SEQUENCE OF DNtpCfgSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes the server of NTP."
::= { dNtpMIBObjects 10 }
dNtpCfgSrvEntry OBJECT-TYPE
SYNTAX DNtpCfgSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a list of information contained in the dNtpCfgSrvTable."
INDEX {
dNtpCfgSrvVrfName,
dNtpCfgSrvIpAddressType,
dNtpCfgSrvIpAddress}
::= { dNtpCfgSrvTable 1 }
DNtpCfgSrvEntry ::=
SEQUENCE {
dNtpCfgSrvVrfName
DisplayString,
dNtpCfgSrvIpAddressType
InetAddressType,
dNtpCfgSrvIpAddress
InetAddress,
dNtpCfgSrvVersion
INTEGER,
dNtpCfgSrvKeyId
INTEGER,
dNtpCfgSrvPrefer
TruthValue,
dNtpCfgSrvMinPoll
INTEGER,
dNtpCfgSrvMaxPoll
INTEGER,
dNtpCfgSrvStatus
RowStatus
}
dNtpCfgSrvVrfName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..12))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the name of the routing forwarding instance.
A zero length string indicates the VRF name is not specified.
For the platform that doesn't support VRF, only a zero length string
is allowed for this object."
::= { dNtpCfgSrvEntry 1 }
dNtpCfgSrvIpAddressType OBJECT-TYPE
SYNTAX InetAddressType {ipv4(1), ipv6(2), ipv6z(4) }
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Internet address type of Ntp peer."
::= { dNtpCfgSrvEntry 2 }
dNtpCfgSrvIpAddress OBJECT-TYPE
SYNTAX InetAddress (SIZE (4|16|20))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IP address expressed in dotted-quad form is the address of Ntp peer."
::= { dNtpCfgSrvEntry 3 }
dNtpCfgSrvVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the NTP version number."
DEFVAL { 4 }
::= { dNtpCfgSrvEntry 4 }
dNtpCfgSrvKeyId OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the authentication key ID used for this entry.
0 means no key ID used."
DEFVAL { 0 }
::= { dNtpCfgSrvEntry 5 }
dNtpCfgSrvPrefer OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to makes it be the preferred peer
that provides synchronization."
DEFVAL { false }
::= { dNtpCfgSrvEntry 6 }
dNtpCfgSrvMinPoll OBJECT-TYPE
SYNTAX INTEGER(3..16)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object Specified the minimum poll intervals for NTP
messages, in seconds as a power of two."
DEFVAL { 6 }
::= { dNtpCfgSrvEntry 7 }
dNtpCfgSrvMaxPoll OBJECT-TYPE
SYNTAX INTEGER(4..17)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object Specified the maximum poll intervals for NTP
messages, in seconds as a power of two."
DEFVAL { 10 }
::= { dNtpCfgSrvEntry 8 }
dNtpCfgSrvStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes the state of the NTP peer entry."
::= { dNtpCfgSrvEntry 99 }
-- ***************************************************************************
-- Conformance
-- ***************************************************************************
dNtpCompliances OBJECT IDENTIFIER ::= { dNtpMIBConformance 1 }
dNtpCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement the
DLINK-NTP-MIB."
MODULE -- this module
MANDATORY-GROUPS {
dNtpCtrlGroup
}
GROUP dNtpCtrlGroup
DESCRIPTION
"This group is conditionally mandatory and must be implemented by
the agent only if NTP feature is supported."
GROUP dNtpAclGroup
DESCRIPTION
"This group is conditionally mandatory and must be implemented by
the agent only if NTP feature is supported."
GROUP dNtpBroadcastGroup
DESCRIPTION
"This group is should be implemented by the agent support broadcast NTP."
GROUP dNtpMulticastGroup
DESCRIPTION
"This group is should be implemented by the agent support multicast NTP."
GROUP dNtpPeerCfgGroup
DESCRIPTION
"This group is conditionally mandatory and must be implemented by
the agent only if NTP feature is supported."
GROUP dNtpSrvCfgGroup
DESCRIPTION
"This group is conditionally mandatory and must be implemented by
the agent only if NTP feature is supported."
::= { dNtpCompliances 1 }
-- units of conformance
dNtpGroups OBJECT IDENTIFIER ::= { dNtpMIBConformance 2 }
dNtpCtrlGroup OBJECT-GROUP
OBJECTS {
dNtpServiceEnabled,
dNtpAuthenticateEnabled,
dNtpAccessInterfaceEnabled,
dNtpMaxAssociations,
dNtpControlKey,
dNtpRequestKey,
dNtpMasterStratum
}
STATUS current
DESCRIPTION
"A collection of objects provides control for NTP."
::= { dNtpGroups 1 }
dNtpAclGroup OBJECT-GROUP
OBJECTS {
dNtpAccessGroupIgnore,
dNtpAccessGroupNoModify,
dNtpAccessGroupNoQuery,
dNtpAccessGroupNoPeer,
dNtpAccessGroupNoServe,
dNtpAccessGroupNoTrust,
dNtpAccessGroupVersion,
dNtpAccessGroupRowStatus,
dNtpAccessInterfaceEnabled
}
STATUS current
DESCRIPTION
"A collection of objects provides configuration for NTP access group."
::= { dNtpGroups 2 }
dNtpBroadcastGroup OBJECT-GROUP
OBJECTS {
dNtpBroadcastDelay,
dNtpCfgBroadcastClientKeyId,
dNtpCfgBroadcastClientStatus,
dNtpCfgBroadcastServerVersion,
dNtpCfgBroadcastServerKeyId,
dNtpCfgBroadcastServerStatus
}
STATUS current
DESCRIPTION
"A collection of objects provides broadcast node for NTP."
::= { dNtpGroups 3 }
dNtpMulticastGroup OBJECT-GROUP
OBJECTS {
dNtpCfgMulticastClientKeyId,
dNtpCfgMulticastClientStatus,
dNtpCfgMulticastServerVersion,
dNtpCfgMulticastServerKeyId,
dNtpCfgMulticastServerTtl,
dNtpCfgMulticastServerStatus
}
STATUS current
DESCRIPTION
"A collection of objects provides multicast node for NTP."
::= { dNtpGroups 4 }
dNtpPeerCfgGroup OBJECT-GROUP
OBJECTS {
dNtpCfgPeerVersion,
dNtpCfgPeerKeyId,
dNtpCfgPeerPrefer,
dNtpCfgPeerMinPoll,
dNtpCfgPeerMaxPoll,
dNtpCfgPeerStatus
}
STATUS current
DESCRIPTION
"A collection of objects provides peer configur for NTP."
::= { dNtpGroups 5 }
dNtpSrvCfgGroup OBJECT-GROUP
OBJECTS {
dNtpCfgSrvVersion,
dNtpCfgSrvKeyId,
dNtpCfgSrvPrefer,
dNtpCfgSrvMinPoll,
dNtpCfgSrvMaxPoll,
dNtpCfgSrvStatus
}
STATUS current
DESCRIPTION
"A collection of objects provides peer configur for NTP."
::= { dNtpGroups 6 }
END
|