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
|
-- *****************************************************************
-- DLINKSW-DNS-MIB.mib : DNS MIB
--
-- Copyright (c) 2013 D-Link Corporation, all rights reserved.
--
-- *****************************************************************
DLINKSW-DNS-MIB DEFINITIONS ::= BEGIN
IMPORTS
dlinkIndustrialCommon
FROM DLINK-ID-REC-MIB
InterfaceIndexOrZero
FROM IF-MIB
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
Integer32, Unsigned32, OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
TruthValue, RowStatus, TEXTUAL-CONVENTION
FROM SNMPv2-TC;
dlinkSwDnsMIB MODULE-IDENTITY
LAST-UPDATED "201308290000Z"
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
"This MIB contains objects to manage the DNS."
REVISION "201305090000Z"
DESCRIPTION
"First release of this MIB."
REVISION "201308290000Z"
DESCRIPTION
"1. Update dDnsStaticNameSrvIpAddr SYNTAX."
::= { dlinkIndustrialCommon 77 }
--
-- Textual conventions
--
DnsTime ::= TEXTUAL-CONVENTION
DISPLAY-HINT
"4d"
STATUS current
DESCRIPTION
"DnsTime values are 32-bit unsigned integers which
measure time in seconds."
REFERENCE
"RFC-1035."
SYNTAX Unsigned32
--
-- Node definitions
--
dDnsMIBNotifications OBJECT IDENTIFIER ::= { dlinkSwDnsMIB 0 }
dDnsMIBObjects OBJECT IDENTIFIER ::= { dlinkSwDnsMIB 1 }
dDnsGlobal OBJECT IDENTIFIER ::= { dDnsMIBObjects 1 }
dDnsResolverEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the DNS Resolver state."
::= { dDnsGlobal 1 }
dDnsResolverSourceInterface OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the interface whose IP address will be
used as the source address for sending the DNS query packet."
::= { dDnsGlobal 2 }
dDnsResolverDomainName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates default domain name used to qualify an
unqualified host name for resolving its IP address."
::= { dDnsGlobal 3 }
dDnsResolverTimeOut OBJECT-TYPE
SYNTAX Unsigned32 (1..60)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the DNS Resolver name server time out."
::= { dDnsGlobal 4 }
dDnsCacheSrvEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates if the DNS caching name server function is
enabled or disabled."
::= { dDnsGlobal 5 }
dDnsCacheSrvMaxForwarderQueue OBJECT-TYPE
SYNTAX Unsigned32 (0..1000000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates maximum number of requests which can be
kept in the forwarder queue. The value of 0 means no limit.."
::= { dDnsGlobal 6 }
dDnsStaticHostLookupEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates enable or disable lookup the dynamic cache
before ask the name server."
::= { dDnsGlobal 7 }
dDnsDynamicHostLookupEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates enable or disable lookup the dynamic cache
before ask the name server."
::= { dDnsGlobal 8 }
dDnsNameSrv OBJECT IDENTIFIER ::= { dDnsMIBObjects 9 }
dDnsStaticNameSrvTable OBJECT-TYPE
SYNTAX SEQUENCE OF DDnsStaticNameSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is a list of DNS static server IP address
configuration, which is manually specified."
::= { dDnsNameSrv 1 }
dDnsStaticNameSrvEntry OBJECT-TYPE
SYNTAX DDnsStaticNameSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of dDnsStaticSrvIpTable."
INDEX { dDnsStaticNameSrvIpVrfName, dDnsStaticNameSrvIpType, dDnsStaticNameSrvIpAddr }
::= { dDnsStaticNameSrvTable 1 }
DDnsStaticNameSrvEntry ::=
SEQUENCE {
dDnsStaticNameSrvIpVrfName
SnmpAdminString,
dDnsStaticNameSrvIpType
InetAddressType,
dDnsStaticNameSrvIpAddr
InetAddress,
dDnsStaticNameSrvIpPriority
Integer32,
dDnsStaticNameSrvIpRowStatus
RowStatus
}
dDnsStaticNameSrvIpVrfName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..32))
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."
::= { dDnsStaticNameSrvEntry 1 }
dDnsStaticNameSrvIpType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This node gives the type of the static DNS server IP address."
::= { dDnsStaticNameSrvEntry 2 }
dDnsStaticNameSrvIpAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This node gives the IP address of the DNS server
specified by the user."
::= { dDnsStaticNameSrvEntry 3 }
dDnsStaticNameSrvIpPriority OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This node gives the priority of the DNS server, according to the
creation order. The smaller the value is, the higher the priority
level is."
::= { dDnsStaticNameSrvEntry 4 }
dDnsStaticNameSrvIpRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
This node is used to operate a table entry.
"
::= { dDnsStaticNameSrvEntry 5 }
dDnsDynamicNameSrvTable OBJECT-TYPE
SYNTAX SEQUENCE OF DDnsDynamicNameSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is a list of DNS dynamic server IP address
configuration, which is dynamically obtained through DHCP."
::= { dDnsNameSrv 2 }
dDnsDynamicNameSrvEntry OBJECT-TYPE
SYNTAX DDnsDynamicNameSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of dDnsDynamicNameSrvIpTable."
INDEX { dDnsDynamicNameSrvIpVrfName, dDnsDynamicNameSrvIpType, dDnsDynamicNameSrvIpAddr }
::= { dDnsDynamicNameSrvTable 1 }
DDnsDynamicNameSrvEntry ::=
SEQUENCE {
dDnsDynamicNameSrvIpVrfName
SnmpAdminString,
dDnsDynamicNameSrvIpType
InetAddressType,
dDnsDynamicNameSrvIpAddr
InetAddress,
dDnsDynamicNameSrvIpPriority
Integer32
}
dDnsDynamicNameSrvIpVrfName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..32))
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."
::= { dDnsDynamicNameSrvEntry 1 }
dDnsDynamicNameSrvIpType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This node gives the type of the dynamic DNS server IP address."
::= { dDnsDynamicNameSrvEntry 2 }
dDnsDynamicNameSrvIpAddr OBJECT-TYPE
SYNTAX InetAddress (SIZE (1..16))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This node gives the IP address of the DNS server dynamically
obtained through DHCP."
::= { dDnsDynamicNameSrvEntry 3 }
dDnsDynamicNameSrvIpPriority OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This node gives the priority of the DNS server, according to the
order obtained through DHCP. The smaller the value is, the higher
the priority level is."
::= { dDnsDynamicNameSrvEntry 4 }
dDnsHost OBJECT IDENTIFIER ::= { dDnsMIBObjects 10 }
dDnsStaticHostTable OBJECT-TYPE
SYNTAX SEQUENCE OF DDnsStaticHostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains DNS resolver static host information."
::= { dDnsHost 2 }
dDnsStaticHostEntry OBJECT-TYPE
SYNTAX DDnsStaticHostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information about DNS resolver static host."
INDEX { dDnsStaticHostIndex }
::= { dDnsStaticHostTable 1 }
DDnsStaticHostEntry ::=
SEQUENCE {
dDnsStaticHostIndex
INTEGER,
dDnsStaticHostVrfName
SnmpAdminString,
dDnsStaticHostName
SnmpAdminString,
dDnsStaticHostIPType
InetAddressType,
dDnsStaticHostIPAddr
InetAddress,
dDnsStaticHostRowStatus
RowStatus
}
dDnsStaticHostIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the DNS resolver static host table index."
::= { dDnsStaticHostEntry 1 }
dDnsStaticHostVrfName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the name of the routing forwarding instance.
A zero length string indicates the VRF name is not specified."
::= { dDnsStaticHostEntry 2 }
dDnsStaticHostName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the DNS resolver static host name."
::= { dDnsStaticHostEntry 3 }
dDnsStaticHostIPType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the the DNS resolver static host IP address type."
::= { dDnsStaticHostEntry 4 }
dDnsStaticHostIPAddr OBJECT-TYPE
SYNTAX InetAddress (SIZE (1..16))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the the DNS resolver static host IP address.
Note: current IPv6 doesn't support VRF."
::= { dDnsStaticHostEntry 5 }
dDnsStaticHostRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to operate a table entry."
::= { dDnsStaticHostEntry 7 }
dDnsDynamicHostTable OBJECT-TYPE
SYNTAX SEQUENCE OF DDnsDynamicHostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains DNS resolver dynamic host information."
::= { dDnsHost 5 }
dDnsDynamicHostEntry OBJECT-TYPE
SYNTAX DDnsDynamicHostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information about DNS resolver dynamic host."
INDEX { dDnsDynamicHostIndex }
::= { dDnsDynamicHostTable 1 }
DDnsDynamicHostEntry ::=
SEQUENCE {
dDnsDynamicHostIndex
INTEGER,
dDnsDynamicHostVrfName
SnmpAdminString,
dDnsDynamicHostName
SnmpAdminString,
dDnsDynamicHostTTL
DnsTime,
dDnsDynamicHostIPType
InetAddressType,
dDnsDynamicHostIPAddr
InetAddress,
dDnsDynamicHostClearCtrl
INTEGER
}
dDnsDynamicHostIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the DNS resolver dynamic host index."
::= { dDnsDynamicHostEntry 1 }
dDnsDynamicHostVrfName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the name of the routing forwarding instance.
A zero length string indicates the VRF name is not specified."
::= { dDnsDynamicHostEntry 2 }
dDnsDynamicHostName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the DNS resolver dynamic host name."
::= { dDnsDynamicHostEntry 3 }
dDnsDynamicHostTTL OBJECT-TYPE
SYNTAX DnsTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the time of the dynamic host remained in caches to live."
::= { dDnsDynamicHostEntry 4 }
dDnsDynamicHostIPType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the DNS resolver dynamic host IP Address Type."
::= { dDnsDynamicHostEntry 5 }
dDnsDynamicHostIPAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the DNS resolver dynamic host IP address.
Note: current IPv6 doesn't support VRF."
::= { dDnsDynamicHostEntry 6 }
dDnsDynamicHostClearCtrl OBJECT-TYPE
SYNTAX INTEGER
{
clear(1),
noOp(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description: This object clears all counters, when set to 'clear'.
No action is taken if this object is set to 'noOp'.
When read, the value 'noOp' is returned"
::= { dDnsDynamicHostEntry 8 }
dDnsMIBConformance OBJECT IDENTIFIER ::= { dlinkSwDnsMIB 2 }
dDnsMIBCompliances OBJECT IDENTIFIER ::= { dDnsMIBConformance 1 }
dDnsMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the DoS Prevention MIB."
MODULE -- this module
MANDATORY-GROUPS { dDnsResolverGroup, dDnsStaticHostGroup, dDnsDynamicHostGroup, dDnsStaticNameSrvGroup }
GROUP dDnsDynamicNameSrvGroup
DESCRIPTION
" "
GROUP dDnsCacheSrvGroup
DESCRIPTION
" "
::= { dDnsMIBCompliances 1 }
dDnsMIBGroups OBJECT IDENTIFIER ::= { dDnsMIBConformance 2 }
dDnsResolverGroup OBJECT-GROUP
OBJECTS { dDnsResolverSourceInterface, dDnsResolverDomainName, dDnsResolverTimeOut, dDnsResolverEnabled }
STATUS current
DESCRIPTION
"The collection of objects provides control for resolver."
::= { dDnsMIBGroups 1 }
dDnsCacheSrvGroup OBJECT-GROUP
OBJECTS { dDnsCacheSrvMaxForwarderQueue, dDnsCacheSrvEnabled }
STATUS current
DESCRIPTION
"The collection of objects provides control for caching server."
::= { dDnsMIBGroups 2 }
dDnsStaticHostGroup OBJECT-GROUP
OBJECTS { dDnsStaticHostVrfName, dDnsStaticHostName, dDnsStaticHostRowStatus, dDnsStaticHostLookupEnabled, dDnsStaticHostIPType,
dDnsStaticHostIPAddr }
STATUS current
DESCRIPTION
"The collection of objects provides the control for static host group."
::= { dDnsMIBGroups 3 }
dDnsDynamicHostGroup OBJECT-GROUP
OBJECTS { dDnsDynamicHostVrfName, dDnsDynamicHostName, dDnsDynamicHostTTL, dDnsDynamicHostClearCtrl, dDnsDynamicHostLookupEnabled,
dDnsDynamicHostIPType, dDnsDynamicHostIPAddr }
STATUS current
DESCRIPTION
"The collection of objects provides information for dynamic host table."
::= { dDnsMIBGroups 4 }
dDnsStaticNameSrvGroup OBJECT-GROUP
OBJECTS { dDnsStaticNameSrvIpPriority, dDnsStaticNameSrvIpRowStatus }
STATUS current
DESCRIPTION
"The collection of objects provides control for static name server."
::= { dDnsMIBGroups 5 }
dDnsDynamicNameSrvGroup OBJECT-GROUP
OBJECTS { dDnsDynamicNameSrvIpPriority }
STATUS current
DESCRIPTION
"The collection of objects provides information for dynamic name server."
::= { dDnsMIBGroups 6 }
END
--
-- DLINKSW-DNS-MIB 20130509.mib
--
|