-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathCISCO-NETWORK-REGISTRAR-MIB.mib
1365 lines (1192 loc) · 47.2 KB
/
CISCO-NETWORK-REGISTRAR-MIB.mib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
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
-- *********************************************************************
-- CISCO-NETWORK-REGISTRAR-MIB.my
--
-- January 2005, Shobana Sampath
--
-- Copyright (c) 1998-2003, 2005 by Cisco Systems, Inc.
-- All rights reserved.
-- *********************************************************************
-- This MIB allows administrators to receive notifications (via traps)
-- on the status of Cisco Network Registrar (CNR.) CNR is a
-- DNS/DHCP solution that provides scalable naming and addressing
-- services, and IP address management for enterprise networks.
-- Please note that when notifications are generate as SNMP traps and
-- delivered using an unreliable network protocol they should not be
-- relied on as the only means to determine the operating status
-- of the CNR.
--
-- Establishing trap recipients, enabling and disabling
-- traps, and setting of trap thresholds can be done via the
-- CNR command-line interface, "nrcmd". Please see the Network
-- Registrar Command Line User Guide for more information.
CISCO-NETWORK-REGISTRAR-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
IpAddress, Unsigned32, Gauge32
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION, DisplayString, TruthValue
FROM SNMPv2-TC
ciscoMgmt
FROM CISCO-SMI;
ciscoNetworkRegistrarMIB MODULE-IDENTITY
LAST-UPDATED "200503030000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: cs-cnr-snmp@cisco.com"
DESCRIPTION
"MIB for Cisco Network Registrar (CNR)."
REVISION "200503030000Z"
DESCRIPTION
"Added the following new notification:
ciscoNetRegHaDnsPartnerUp
ciscoNetRegMastersNotResp
ciscoNetRegMastersResp
ciscoNetRegSecondaryZonesExpired
ciscoNetRegDnsForwardersNotResp
ciscoNetRegDnsForwardersResp
ciscoNetRegHaDnsConfigErr
ciscoNetRegFreeAddrLow
ciscoNetRegFreeAddrHigh
Added the following new objects:
cnrNotifDHCPScopeFreeAddrLow
cnrNotifDHCPScopeFreeAddrHigh
cnrNotifDHCPScopeFreeAddrValue
cnrNotifDHCPThresholdType
cnrNotifDHCPThresholdValue
cnrNotifDHCPScopeName
cnrNotifPrimarySubnetNumber
cnrNotifRelatedServerType
cnrNotifDnsServerIpAddress
cnrNotifZoneName
cnrNotifDnsRemoteServersList
Deprecated the following notifications:
ciscoNetRegFreeAddressLow
ciscoNetRegFreeAddressHigh
ciscoNetRegOtherServerNotResponding
ciscoNetRegOtherServerResponding
Deprecated the following objects in cnrDHCPScopeTable:
cnrDHCPScopeName
cnrDHCPScopeFreeAddrLowThreshold
cnrDHCPScopeFreeAddrHighThreshold
cnrDHCPScopeFreeAddrValue
cnrDHCPScopeFreeAddrUnits
"
REVISION "200301110000Z"
DESCRIPTION
"Added configuration objects to enable
or disable notifications."
REVISION "9906170000Z"
DESCRIPTION
"Fixed OID for ciscoNetworkRegistrarMIBConformance"
REVISION "9811010000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 120 }
ciscoNetworkRegistrarMIBObjects OBJECT IDENTIFIER
::= { ciscoNetworkRegistrarMIB 1 }
cnrDHCP OBJECT IDENTIFIER
::= { ciscoNetworkRegistrarMIBObjects 1}
cnrNotifObjects OBJECT IDENTIFIER
::= { ciscoNetworkRegistrarMIBObjects 2 }
cnrNotifCfgObjects OBJECT IDENTIFIER
::= { ciscoNetworkRegistrarMIBObjects 3 }
-- **************************************************************
-- * *
-- * Textual Conventions *
-- * *
-- **************************************************************
CnrPhysAddress ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A Layer 1 address which includes the hardware address
space as well as the usual MAC address. This object is
encoded in ASCII as
<type>,<length>,<address>
where
<type> is the value of the hardware address space
field, as used in ARP (i.e, 1 for Ethernet,
6 for token ring...) IANA has a list of
registered numbers for this field.
<length> is the length of the address, in bytes (not
ASCII chars)
<address> is the ASCII hex-encoded address (2 ASCII
characters per byte; 12 chars for an Ethernet
address.)
This encoding is intended to mirror the representation
of MAC addresses in DHCP."
REFERENCE "RFC 2131"
SYNTAX OCTET STRING(SIZE (1..32))
-- cnrDHCPScopeTable: Table of DHCP scopes
-- A Scope is a set of one or more address ranges used by
-- DHCP for handing out dynamic addresses. A policy may
-- be associated with a scope. See the Network Registrar
-- User's Guide for more information.
-- This table and corresponding sub-objects are deprecated.
cnrDHCPScopeTable OBJECT-TYPE
SYNTAX SEQUENCE OF CnrDHCPScopeEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The table listing characteristics of all scopes.
Entries in this table correspond to scopes, which are
added and deleted via the CNR GUI or CLI."
::= { cnrDHCP 1 }
cnrDHCPScopeEntry OBJECT-TYPE
SYNTAX CnrDHCPScopeEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"An entry in the cnrDHCPScopeTable."
INDEX { cnrDHCPScopeName }
::= { cnrDHCPScopeTable 1 }
CnrDHCPScopeEntry ::= SEQUENCE
{
cnrDHCPScopeName DisplayString,
cnrDHCPScopeFreeAddrLowThreshold Unsigned32,
cnrDHCPScopeFreeAddrHighThreshold Unsigned32,
cnrDHCPScopeFreeAddrValue Unsigned32,
cnrDHCPScopeFreeAddrUnits INTEGER
}
cnrDHCPScopeName OBJECT-TYPE
SYNTAX DisplayString(SIZE (1..100))
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The name of the scope, which uniquely identifies
an entry in the cnrDHCPScopeTable."
::= { cnrDHCPScopeEntry 1 }
cnrDHCPScopeFreeAddrLowThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS deprecated
DESCRIPTION
"The low threshold for available free addresses in
this scope. If the value for available free addresses
in this scope becomes equal to or less than this value,
a cnrDHCPScopeFreeAddrLowThreshold event is generated
for this scope. No more cnrDHCPScopeFreeAddrLowThreshold
events will be generated for this scope during this
execution of the DHCP server until the value for available
free addresses has exceeded the value of
cnrDHCPScopeFreeAddrHighThreshold.
This value may be expressed as either an absolute value
or a percentage; the units are specified by the value of
cnrDHCPScopeFreeAddrUnits."
::= { cnrDHCPScopeEntry 2 }
cnrDHCPScopeFreeAddrHighThreshold
OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS deprecated
DESCRIPTION
"The high threshold for available free addresses in this
scope. If a cnrDHCPScopeFreeAddrLowThreshold event has
been generated for this scope, and the value for available
free addresses has exceeded the value of
cnrDHCPScopeFreeAddrHighThreshold, then a
ciscoNetRegFreeAddressHigh event will be generated. No
more ciscoNetRegFreeAddressHigh events will be generated
for this scope during this execution of the DHCP server
until the value for available free addresses becomes equal
to or less than the value of
cnrDHCPScopeFreeAddrHighThreshold.
This value may be expressed as either an absolute value
or a percentage; the units are specified by the value of
cnrDHCPScopeFreeAddrUnits."
::= { cnrDHCPScopeEntry 3 }
cnrDHCPScopeFreeAddrValue OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS deprecated
DESCRIPTION
"The number of IP addresses which are available
within this scope. May be expressed as either
an absolute value or a percentage; the units are
given by the value of cnrDHCPScopeFreeAddrUnits."
::= { cnrDHCPScopeEntry 4 }
cnrDHCPScopeFreeAddrUnits OBJECT-TYPE
SYNTAX INTEGER { value(1), percent(2) }
MAX-ACCESS accessible-for-notify
STATUS deprecated
DESCRIPTION
"The units associated with the value of
cnrDHCPScopeFreeAddrValue."
::= { cnrDHCPScopeEntry 5 }
-- cnrNotifObjects: Objects which are used only in notifications
cnrNotifDupIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The IP address which was found to be a duplicate."
::= { cnrNotifObjects 1 }
cnrNotifMACAddress OBJECT-TYPE
SYNTAX CnrPhysAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The offending MAC address which caused a duplicate IP
address to be detected."
::= { cnrNotifObjects 2 }
cnrNotifServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The IP Address of a server with which CNR
is attempting to communicate."
::= { cnrNotifObjects 3 }
cnrNotifServerType OBJECT-TYPE
SYNTAX INTEGER {dns(1),
dhcp(2),
ldap(3),
tftp(4),
ccm(5) }
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The type of server."
::= { cnrNotifObjects 4 }
cnrNotifDupIpAddressDetectedBy OBJECT-TYPE
SYNTAX INTEGER {dhcpClient(1),
dhcpServer(2)}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"For a ciscoNetRegDuplicateAddress notification, this
object indicates whether the client or server detected
the condition."
::= { cnrNotifObjects 5 }
cnrNotifContestedIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The IP address for which ownership is claimed by two or
more DHCP servers."
::= { cnrNotifObjects 6 }
cnrNotifDHCPScopeFreeAddrLow OBJECT-TYPE
SYNTAX Unsigned32
UNITS "percentage"
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object is used to determine the start of the
address shortage condition. When the number of free
addresses is equal to or less than the value contained
by this object the ciscoNetRegFreeAddrLowThreshold
notification will be generated. The low address condition
will continue until the number of free addresses has reached
or exceeded the number specified by the
cnrNotifDHCPScopeFreeAddrHigh object. The
ciscoNetRegFreeAddrLowThreshold notification will only be
generated when the low address condition is first
encountered.
These thresholds objects and notifications apply to scopes
defined for the DHCP server. The cnrDHCPScope object
indicates to which scope these objects and notifications
are to be applied."
::= { cnrNotifObjects 7 }
cnrNotifDHCPScopeFreeAddrHigh OBJECT-TYPE
SYNTAX Unsigned32
UNITS "percentage"
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object is used to determine the end of address shortage.
When the number of free addresses is equal to or greater
than the value contained by this object the
ciscoNetRegFreeAddrHighThreshold notification will be
generated. The ciscoNetRegFreeAddrHighThreshold
notification will only be generated when the first time
the cnrNotifDHCPScopeFreeAddrHigh is exceeded.
These thresholds objects and notifications apply to scopes
defined for the DHCP server. The cnrDHCPScope object
indicates to which scope these objects and notifications
are to be applied."
::= { cnrNotifObjects 8 }
cnrNotifDHCPScopeFreeAddrValue OBJECT-TYPE
SYNTAX Gauge32
UNITS "IP addresses"
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The number of IP addresses which are available
within the scope specified by the cnrDHCPScope object."
::= { cnrNotifObjects 9 }
cnrNotifDHCPThresholdType OBJECT-TYPE
SYNTAX INTEGER { scope(1),
network(2),
selectionTags(3) }
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The type of threshold that is causing the notification.
Threshold is configured based on the following types:
Type Threshold Configuration
---- -----------------------
scope level of single scope
network level of an entire group of scopes sharing
the same primary subnet
selectionTags level of a group of scopes sharing the same
primary subnet and selection tags."
::= { cnrNotifObjects 10 }
cnrNotifDHCPThresholdValue OBJECT-TYPE
SYNTAX DisplayString(SIZE (1..100))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of the type of threshold that is causing the
notification.
Type Value
---- -----
scope primary or secondary subnet number
network scope's primary or secondary
subnet number
selectionTags selection tag list."
::= { cnrNotifObjects 11 }
cnrNotifDHCPScopeName OBJECT-TYPE
SYNTAX DisplayString(SIZE (1..100))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The name of the DHCP scope."
::= { cnrNotifObjects 12 }
cnrNotifPrimarySubnetNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The primary subnet number of the network interface of which
the scope is part."
::= { cnrNotifObjects 13 }
cnrNotifRelatedServerType OBJECT-TYPE
SYNTAX INTEGER {dnsPrimary(1),
ldap(2),
failoverPartner(3) }
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The type of related server."
::= { cnrNotifObjects 14 }
cnrNotifDnsServerIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The IP address of the DNS server."
::= { cnrNotifObjects 15 }
cnrNotifZoneName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The name of the zone."
::= { cnrNotifObjects 16 }
cnrNotifDnsRemoteServersList OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..254))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Comma-separated list of remote server IP addresses."
::= { cnrNotifObjects 17 }
-- cnrNotifCfgObjects: Objects used to enable/disable notifications
cnrEnableFreeAddressLow OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Indicates whether the ciscoNetRegFreeAddressLow
notification should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 1 }
cnrEnableFreeAddressHigh OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Indicates whether the ciscoNetRegFreeAddressHigh
notification should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 2 }
cnrEnableServerStart OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegServerStart notification
should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 3 }
cnrEnableServerStop OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegServerStop notification
should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 4 }
cnrEnableDNSQueueTooBig OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegDNSQueueTooBig
notification should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 5 }
cnrEnableOtherServerNotResponding OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Indicates whether the ciscoNetRegOtherServerNotResponding
notification should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 6 }
cnrEnableDuplicateAddress OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegDuplicateAddress
notification should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 7 }
cnrEnableAddressConflict OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegAddressConflict
notification should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 8 }
cnrEnableOtherServerResponding OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Indicates whether the ciscoNetRegOtherServerResponding
notification should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 9 }
cnrEnableFailoverConfigMismatch OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegFailoverConfigMismatch
notification should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 10 }
cnrEnableFreeAddrLow OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegFreeAddrLowThreshold
notification should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 11 }
cnrEnableFreeAddrHigh OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegFreeAddrHighThreshold
notification should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 12 }
cnrEnableOtherServerNotResp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegOtherServerNotResp
notification should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 13 }
cnrEnableOtherServerResp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegOtherServerResp
notification should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 14 }
cnrEnableHaDnsPartnerDown OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegHaDnsPartnerDown
notification should be generated for this entity. "
DEFVAL { false }
::= { cnrNotifCfgObjects 15 }
cnrEnableHaDnsPartnerUp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegHaDnsPartnerUp
notification should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 16 }
cnrEnableMastersNotResp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegMastersNotResp
notification should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 17 }
cnrEnableMastersResp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegMastersResp notification
should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 18 }
cnrEnableSecondaryZoneExpired OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegSecondaryZonesExpired
notification should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 19 }
cnrEnableDnsForwardersNotResp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegDnsForwardersNotResp
notification should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 20 }
cnrEnableDnsForwardersResp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegDnsForwardersResp
notification should be generated for this entity."
DEFVAL { false }
::= { cnrNotifCfgObjects 21 }
cnrEnableHaDnsConfigErr OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the ciscoNetRegHaDnsConfigErr notification
should be generated for this entity. "
DEFVAL { false }
::= { cnrNotifCfgObjects 22 }
-- Notifications
ciscoNetRegMIBNotificationPrefix OBJECT IDENTIFIER
::= { ciscoNetworkRegistrarMIB 2 }
ciscoNetRegMIBNotifications OBJECT IDENTIFIER
::= { ciscoNetRegMIBNotificationPrefix 0 }
ciscoNetRegFreeAddressLow NOTIFICATION-TYPE
OBJECTS { cnrDHCPScopeFreeAddrLowThreshold,
cnrDHCPScopeFreeAddrValue,
cnrDHCPScopeFreeAddrUnits }
STATUS deprecated
DESCRIPTION
"This notification signifies that the number
of available IP addresses for a particular scope
has fallen below the value of
cnrDHCPScopeFreeAddrLowThreshold for that scope.
This notification has been replaced by the
ciscoNetRegFreeAddrLowThreshold notification.
"
::= { ciscoNetRegMIBNotifications 1 }
ciscoNetRegFreeAddressHigh NOTIFICATION-TYPE
OBJECTS { cnrDHCPScopeFreeAddrHighThreshold,
cnrDHCPScopeFreeAddrValue,
cnrDHCPScopeFreeAddrUnits }
STATUS deprecated
DESCRIPTION
"This notification signifies that the number
of available IP addresses for a particular scope
has risen above the value of
cnrDHCPScopeFreeAddrHighThreshold for that scope.
This notification has been replaced by the
ciscoNetRegFreeAddrHighThreshold notification."
::= { ciscoNetRegMIBNotifications 2 }
ciscoNetRegServerStart NOTIFICATION-TYPE
OBJECTS { cnrNotifServerType }
STATUS current
DESCRIPTION
"This notification signifies that the server
of the specified type has started on the
host from which this notification has been sent."
::= { ciscoNetRegMIBNotifications 3 }
ciscoNetRegServerStop NOTIFICATION-TYPE
OBJECTS { cnrNotifServerType }
STATUS current
DESCRIPTION
"This notification signifies that the server
of the specified type has stopped normally on the
host from which this notification has been sent."
::= { ciscoNetRegMIBNotifications 4 }
ciscoNetRegDNSQueueTooBig NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This notification indicates that the number of pending
DNS updates has reached its limit. Successive updates
may be dropped, and DHCP may stop responding to client
requests until this problem has cleared."
::= { ciscoNetRegMIBNotifications 5 }
ciscoNetRegOtherServerNotResponding NOTIFICATION-TYPE
OBJECTS { cnrNotifServer,
cnrNotifServerType }
STATUS deprecated
DESCRIPTION
"This notification signifies that a server is not
responding to updates from the DHCP server. The
identity of the server is given by the cnrNotifServer
object. The type of the server is given by the
cnrNotifServerType object.
This notification has been replaced by the
ciscoNetRegOtherServerNotResp notification."
::= { ciscoNetRegMIBNotifications 6 }
ciscoNetRegDuplicateAddress NOTIFICATION-TYPE
OBJECTS { cnrNotifDupIpAddress,
cnrNotifMACAddress,
cnrNotifDupIpAddressDetectedBy }
STATUS current
DESCRIPTION
"This notification signifies that a duplicate IP address
has been detected. The DHCP server can detect this
condition through the ping-before-offer mechanism.
Alternatively, the client may have sent a DHCPDECLINE
back to the server; this is assumed to be the result of
the client detecting that the address was in use. In
either case, the DHCP server marks the IP address as
unavailable for leasing to clients. The
cnrNotifDupIpAddressDetectedBy object indicates whether
the client or server detected this condition."
::= { ciscoNetRegMIBNotifications 7 }
ciscoNetRegAddressConflict NOTIFICATION-TYPE
OBJECTS { cnrNotifContestedIpAddress,
cnrNotifServer }
STATUS current
DESCRIPTION
"This notification indicates that the DHCP server on this
host, and a DHCP server on another host, have claimed
ownership for the same IP address. The
cnrNotifContestedIpAddress object indicates which address
is under contention. The cnrNotifServer object indicates
with which other server a conflict was detected."
::= { ciscoNetRegMIBNotifications 8 }
ciscoNetRegOtherServerResponding NOTIFICATION-TYPE
OBJECTS { cnrNotifServer,
cnrNotifServerType }
STATUS deprecated
DESCRIPTION
"This notification signifies that a server which had formerly
been in a 'not responding' state is now responding to
updates from the CNR protocol server. The identity of the
server is given by the cnrNotifServer object. The type of
the server is given by the cnrNotifServerType object.
NOTE: One should not rely on recieving this notification
as an indication that all is well with the network.
Several conditions, including restart of the CNR
protocol server, could result in either multiple
ciscoNetRegOtherServerNotResponding notifications being sent,
or in a ciscoNetRegOtherServerResponding notification NOT
being sent.
This notification has been replaced by the
ciscoNetRegOtherServerResp notification.
"
::= { ciscoNetRegMIBNotifications 9 }
ciscoNetRegFailoverConfigMismatch NOTIFICATION-TYPE
OBJECTS { cnrNotifServer }
STATUS current
DESCRIPTION
"This notification signifies that a server has detected
via the failover protocol that its configuration does
not match that of its failover peer, and that reliable
DHCP operation in the event of a server failure may not
be possible. The identity of the peer server is given
by the cnrNotifServer object."
::= { ciscoNetRegMIBNotifications 10 }
ciscoNetRegFreeAddrLowThreshold NOTIFICATION-TYPE
OBJECTS { cnrNotifDHCPScopeFreeAddrLow,
cnrNotifDHCPScopeFreeAddrValue,
cnrNotifDHCPScopeName,
cnrNotifPrimarySubnetNumber,
cnrNotifDHCPThresholdType,
cnrNotifDHCPThresholdValue }
STATUS current
DESCRIPTION
"This notification signifies that the number
of available IP addresses for a particular scope
has fallen below the value of
cnrNotifDHCPScopeFreeAddrLow for that scope.
This notification signals a shortage of addresses.
The shortage will continue until the number of free
addresses has reached or exceeded the number
specified by the cnrNotifDHCPScopeFreeAddrHigh object.
This notification will only be generated when the
shortages of IP addresses in first encountered.
If the threshold type is scope or subnet, then the value is
the primary or secondary subnet number, and if the type is
selection-tag, then the value is the selection tag list."
::= { ciscoNetRegMIBNotifications 11 }
ciscoNetRegFreeAddrHighThreshold NOTIFICATION-TYPE
OBJECTS { cnrNotifDHCPScopeFreeAddrHigh,
cnrNotifDHCPScopeFreeAddrValue,
cnrNotifDHCPScopeName,
cnrNotifPrimarySubnetNumber,
cnrNotifDHCPThresholdType,
cnrNotifDHCPThresholdValue }
STATUS current
DESCRIPTION
"This notification signifies that the shortage of
available IP addresses for a particular scope is over and
generated when the number of free addresses for that scope
reaches or exceed value specified by the
cnrNotifDHCPScopeFreeAddrHigh.
This notification will only be generated when crossing the
threshold specified by the cnrNotifDHCPScopeFreeAddrHigh
object indicates the end of IP address shortage.
If the threshold type is scope or subnet, then the value is
the primary or secondary subnet number, and if the type is
selection-tag, then the value is the selection tag list."
::= { ciscoNetRegMIBNotifications 12 }
ciscoNetRegOtherServerNotResp NOTIFICATION-TYPE
OBJECTS { cnrNotifServer,
cnrNotifRelatedServerType }
STATUS current
DESCRIPTION
"This notification signifies that a server is not
responding to updates from the DHCP server. This
notification will be generated when this error
is first encountered and suppressed until the
the normal reponse from server has been established
as indicated by the ciscoNetRegOtherServerResp.
notification.
The identity of the server is given by the cnrNotifServer
object. The type of the server is indicated by the
cnrNotifRelatedServerType object."
::= { ciscoNetRegMIBNotifications 13 }
ciscoNetRegOtherServerResp NOTIFICATION-TYPE
OBJECTS { cnrNotifServer,
cnrNotifRelatedServerType }
STATUS current
DESCRIPTION
"This notification signifies that a server is now
responding to updates from the DHCP server. This
notification will be generated when normal operation
is resumed after generation of the
ciscoNetRegOtherServerNotResp notification.
The identity of the server is given by the cnrNotifServer
object. The type of the server is indicated by the
cnrNotifRelatedServerType object.
NOTE: One should not rely on recieving this notification
as an indication that all is well with the network.
Several conditions, including restart of the CNR
protocol server, could result in either multiple
ciscoNetRegOtherServerNotResp notifications being sent,
or in a ciscoNetRegOtherServerResp notification NOT
being sent."
::= { ciscoNetRegMIBNotifications 14 }
ciscoNetRegHaDnsPartnerDown NOTIFICATION-TYPE
OBJECTS { cnrNotifServer }
STATUS current
DESCRIPTION
"This notification signifies that communication with a
HA-DNS (High Availability DNS) server's partner has been
interrupted. The identity of the HA-DNS partner server is
given by the cnrNotifServer object."
::= { ciscoNetRegMIBNotifications 15 }
ciscoNetRegHaDnsPartnerUp NOTIFICATION-TYPE
OBJECTS { cnrNotifServer }
STATUS current
DESCRIPTION
"This notification signifies that communication with a
HA-DNS server's partner has been restored. The identity
of the HA-DNS partner server is given by the cnrNotifServer
object."
::= { ciscoNetRegMIBNotifications 16 }
ciscoNetRegMastersNotResp NOTIFICATION-TYPE
OBJECTS { cnrNotifDnsServerIpAddress,
cnrNotifZoneName,
cnrNotifDnsRemoteServersList }
STATUS current
DESCRIPTION
"This notification indicates that a DNS secondary server
cannot reach any of its configured masters to obtain
a zone transfer. Once this situation is encountered
generation of this notification will be suppressed until
a complete zone transfer has completed as indicated by
the ciscoNetRegMastersResp notification.
The identity of the secondary server is given by
cnrNotifDnsServerIpAddress; the identity of the master
servers is given by the cnrNotifDnsRemoteServersList; and
the zone is given by cnrNotifZoneName."
::= { ciscoNetRegMIBNotifications 17 }
ciscoNetRegMastersResp NOTIFICATION-TYPE
OBJECTS { cnrNotifDnsServerIpAddress,
cnrNotifZoneName,
cnrNotifDnsRemoteServersList }
STATUS current
DESCRIPTION
"This notification indicates that a DNS secondary server
reached at least one of its configured masters and obtained
a zone transfer. This notification is generated the first
time sucessful zone transfer completed after a prior request
for zone transfer failed because master server could not
reached.
The identity of the secondary server is given by
cnrNotifDnsServerIpAddress; the identity of the master
servers is given by the cnrNotifDnsRemoteServersList; and
the zone is given by cnrNotifZoneName object."
::= { ciscoNetRegMIBNotifications 18 }
ciscoNetRegSecondaryZonesExpired NOTIFICATION-TYPE
OBJECTS { cnrNotifDnsServerIpAddress,
cnrNotifZoneName,
cnrNotifDnsRemoteServersList }
STATUS current
DESCRIPTION
"This notification indicates that a DNS secondary server was
unable to reach any primaries, and that a zone has expired
because the TTL has passed.
The identity of the DNS secondary server is given by
cnrNotifDnsServerIpAddress; the identity of the master
servers is given by the cnrNotifDnsRemoteServersList; and
the zone is given by cnrNotifZoneName object."
::= { ciscoNetRegMIBNotifications 19 }
ciscoNetRegDnsForwardersNotResp NOTIFICATION-TYPE
OBJECTS { cnrNotifDnsServerIpAddress,
cnrNotifDnsRemoteServersList }
STATUS current
DESCRIPTION
"This notification indicates that a DNS recursive resolver was
not able to reach any of its configured forwarders. Once this
situation is encountered generation of this notification will