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
|
-- BEGIN COPYRIGHT BLOCK
-- This Program is free software; you can redistribute it and/or modify it under
-- the terms of the GNU General Public License as published by the Free Software
-- Foundation; version 2 of the License.
--
-- This Program is distributed in the hope that it will be useful, but WITHOUT
-- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-- FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License along with
-- this Program; if not, write to the Free Software Foundation, Inc., 59 Temple
-- Place, Suite 330, Boston, MA 02111-1307 USA.
--
-- In addition, as a special exception, Red Hat, Inc. gives You the additional
-- right to link the code of this Program with code not covered under the GNU
-- General Public License ("Non-GPL Code") and to distribute linked combinations
-- including the two, subject to the limitations in this paragraph. Non-GPL Code
-- permitted under this exception must only link to the code of this Program
-- through those well defined interfaces identified in the file named EXCEPTION
-- found in the source code files (the "Approved Interfaces"). The files of
-- Non-GPL Code may instantiate templates or use macros or inline functions from
-- the Approved Interfaces without causing the resulting work to be covered by
-- the GNU General Public License. Only Red Hat, Inc. may make changes or
-- additions to the list of Approved Interfaces. You must obey the GNU General
-- Public License in all respects for all of the Program code and other code used
-- in conjunction with the Program except the Non-GPL Code covered by this
-- exception. If you modify this file, you may extend this exception to your
-- version of the file, but you are not obligated to do so. If you do not wish to
-- provide this exception without modification, you must delete this exception
-- statement from your version and license this file solely under the GPL without
-- exception.
--
--
-- Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
-- Copyright (C) 2005 Red Hat, Inc.
-- All rights reserved.
-- END COPYRIGHT BLOCK
--
--
-- MIB for Fedora Directory Server 7
--
-- This is an implementation of the MADMAN mib for monitoring LDAP/CLDAP and X.500
-- directories described in RFC 2788 and 2789
-- with the addition of traps for server up and down events
NSLDAP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, Counter32, Gauge32, OBJECT-TYPE
FROM SNMPv2-SMI
DisplayString, TimeStamp, TEXTUAL-CONVENTION
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
applIndex, DistinguishedName, URLString
FROM NETWORK-SERVICES-MIB
enterprises
FROM RFC1155-SMI
TRAP-TYPE
FROM RFC-1215;
netscape OBJECT IDENTIFIER ::= { enterprises 1450 }
URLString ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"I couldn't find it but madman said it should be here, guessing DisplayString"
SYNTAX DisplayString
nsldap MODULE-IDENTITY
LAST-UPDATED "200207160000Z"
ORGANIZATION "Netscape Communications Corp"
CONTACT-INFO
" AOL Strategic Business Solutions
Postal: 22000 AOL Way
Dulles, VA 20166
Website: http://enterprise.netscape.com"
DESCRIPTION
" An implementation of the MADMAN mib for monitoring LDAP/CLDAP and X.500
directories described in RFC 2788 and 2789
used for Fedora Directory Server 7"
::= { netscape 7}
dsOpsTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsOpsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The table holding information related to the
DS operations."
::= {nsldap 1}
dsOpsEntry OBJECT-TYPE
SYNTAX DsOpsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" Entry containing operations related statistics
for a DS."
INDEX { applIndex}
::= {dsOpsTable 1}
DsOpsEntry ::= SEQUENCE {
-- Bindings
dsAnonymousBinds
Counter32,
dsUnAuthBinds
Counter32,
dsSimpleAuthBinds
Counter32,
dsStrongAuthBinds
Counter32,
dsBindSecurityErrors
Counter32,
-- In-coming operations
dsInOps
Counter32,
dsReadOps
Counter32,
dsCompareOps
Counter32,
dsAddEntryOps
Counter32,
dsRemoveEntryOps
Counter32,
dsModifyEntryOps
Counter32,
dsModifyRDNOps
Counter32,
dsListOps
Counter32,
dsSearchOps
Counter32,
dsOneLevelSearchOps
Counter32,
dsWholeSubtreeSearchOps
Counter32,
-- Out going operations
dsReferrals
Counter32,
dsChainings
Counter32,
-- Errors
dsSecurityErrors
Counter32,
dsErrors
Counter32
}
-- CLDAP does not use binds; for A CLDAP DS the bind
-- related counters will be inaccessible.
--
-- CLDAP and LDAP implement "Read" and "List" operations
-- indirectly via the "search" operation; the following
-- counters will be inaccessible for CLDAP and LDAP DSs:
-- dsReadOps, dsListOps
--
-- CLDAP does not implement "Compare", "Add", "Remove",
-- "Modify", "ModifyRDN"; the following counters will be
-- inaccessible for CLDAP DSs:
-- dsCompareOps, dsAddEntryOps, dsRemoveEntryOps,
-- dsModifyEntryOps, dsModifyRDNOps.
--
-- CLDAP and LDAP DS's do not return Referrals
-- the following fields will remain inaccessible for
-- CLDAP and LDAP DSs: dsReferrals.
dsAnonymousBinds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of anonymous binds to this DS from UAs
since application start."
::= {dsOpsEntry 1}
dsUnAuthBinds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of un-authenticated binds to this DS since
application start."
::= {dsOpsEntry 2}
dsSimpleAuthBinds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of binds to this DS that were authenticated
using simple authentication procedures since
application start."
REFERENCE
" CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
Section 8.1.2.1.1. and, RFC1777 Section 4.1"
::= {dsOpsEntry 3}
dsStrongAuthBinds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of binds to this DS that were authenticated
using the strong authentication procedures since
application start. This includes the binds that were
authenticated using external authentication procedures."
REFERENCE
" CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
Sections 8.1.2.1.2 & 8.1.2.1.3. and, RFC1777 Section 4.1."
::= {dsOpsEntry 4}
dsBindSecurityErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of bind operations that have been rejected
by this DS due to inappropriateAuthentication or
invalidCredentials."
REFERENCE
" CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
Section 12.7.2 and, RFC1777 Section 4."
::= {dsOpsEntry 5}
dsInOps OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of operations forwarded to this DS
from UAs or other DSs since application
start up."
::= {dsOpsEntry 6}
dsReadOps OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of read operations serviced by
this DS since application startup."
REFERENCE
" CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
Section 9.1."
::= {dsOpsEntry 7}
dsCompareOps OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of compare operations serviced by
this DS since application startup."
REFERENCE
" CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
Section 9.2. and, RFC1777 section 4.8"
::= {dsOpsEntry 8}
dsAddEntryOps OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of addEntry operations serviced by
this DS since application startup."
REFERENCE
" CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
Section 11.1. and, RFC1777 Section 4.5."
::= {dsOpsEntry 9}
dsRemoveEntryOps OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of removeEntry operations serviced by
this DS since application startup."
REFERENCE
" CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
Section 11.2. and, RFC1777 Section 4.6."
::= {dsOpsEntry 10}
dsModifyEntryOps OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of modifyEntry operations serviced by
this DS since application startup."
REFERENCE
" CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
Section 11.3. and, RFC1777 Section 4.4."
::= {dsOpsEntry 11}
dsModifyRDNOps OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of modifyRDN operations serviced by
this DS since application startup."
REFERENCE
" CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
Section 11.4.and, RFC1777 Section 4.7"
::= {dsOpsEntry 12}
dsListOps OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of list operations serviced by
this DS since application startup."
REFERENCE
" CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
Section 10.1."
::= {dsOpsEntry 13}
dsSearchOps OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of search operations- baseObject searches,
oneLevel searches and wholeSubtree searches,
serviced by this DS since application startup."
REFERENCE
" CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
Section 10.2. and, RFC1777 Section 4.3."
::= {dsOpsEntry 14}
dsOneLevelSearchOps OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of oneLevel search operations serviced
by this DS since application startup."
REFERENCE
" CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
Section 10.2.2.2. and, RFC1777 Section 4.3."
::= {dsOpsEntry 15}
dsWholeSubtreeSearchOps OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of wholeSubtree search operations serviced
by this DS since application startup."
REFERENCE
" CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
Section 10.2.2.2. and, RFC1777 Section 4.3."
::= {dsOpsEntry 16}
dsReferrals OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of referrals returned by this DS in response
to requests for operations since application startup."
REFERENCE
" CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
Section 12.6."
::= {dsOpsEntry 17}
dsChainings OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of operations forwarded by this DS
to other DSs since application startup."
REFERENCE
" CCITT Blue Book Fascicle VIII.8 - Rec. X.518, 1988:
Section 14."
::= {dsOpsEntry 18}
dsSecurityErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of operations forwarded to this DS
which did not meet the security requirements. "
REFERENCE
" CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
Section 12.7. and, RFC1777 Section 4."
::= {dsOpsEntry 19}
dsErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of operations that could not be serviced
due to errors other than security errors, and
referrals.
A partially serviced operation will not be counted
as an error.
The errors include NameErrors, UpdateErrors, Attribute
errors and ServiceErrors."
REFERENCE
" CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
Sections 12.4, 12.5, 12.8 & 12.9. and, RFC1777 Section 4."
::= {dsOpsEntry 20}
-- Entry statistics/Cache performance
dsEntriesTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsEntriesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The table holding information related to the
entry statistics and cache performance of the DSs."
::= {nsldap 2}
dsEntriesEntry OBJECT-TYPE
SYNTAX DsEntriesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" Entry containing statistics pertaining to entries
held by a DS."
INDEX { applIndex }
::= {dsEntriesTable 1}
DsEntriesEntry ::= SEQUENCE {
dsMasterEntries
Gauge32,
dsCopyEntries
Gauge32,
dsCacheEntries
Gauge32,
dsCacheHits
Counter32,
dsSlaveHits
Counter32
}
-- A (C)LDAP frontend to the X.500 Directory will not have
-- MasterEntries, CopyEntries; the following counters will
-- be inaccessible for LDAP/CLDAP frontends to the X.500
-- directory: dsMasterEntries, dsCopyEntries, dsSlaveHits.
dsMasterEntries OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of entries mastered in the DS."
::= {dsEntriesEntry 1}
dsCopyEntries OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of entries for which systematic (slave)
copies are maintained in the DS."
::= {dsEntriesEntry 2}
dsCacheEntries OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of entries cached (non-systematic copies) in
the DS. This will include the entries that are
cached partially. The negative cache is not counted."
::= {dsEntriesEntry 3}
dsCacheHits OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of operations that were serviced from
the locally held cache since application
startup."
::= {dsEntriesEntry 4}
dsSlaveHits OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of operations that were serviced from
the locally held object replications ( shadow
entries) since application startup."
::= {dsEntriesEntry 5}
-- The dsIntTable contains statistical data on the peer DSs
-- with which the monitored DSs (attempt to) interact. This
-- table will provide a useful insight into the effect of
-- neighbours on the DS performance.
-- The table keeps track of the last "N" DSs with which the
-- monitored DSs has interacted (attempted to interact),
-- where "N" is a locally-defined constant.
dsIntTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsIntEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" Each row of this table contains some details
related to the history of the interaction
of the monitored DSs with their respective
peer DSs."
::= { nsldap 3 }
dsIntEntry OBJECT-TYPE
SYNTAX DsIntEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" Entry containing interaction details of a DS
with a peer DS."
INDEX { applIndex, dsIntIndex }
::= { dsIntTable 1 }
DsIntEntry ::= SEQUENCE {
dsIntIndex
INTEGER,
dsName
DistinguishedName,
dsTimeOfCreation
TimeStamp,
dsTimeOfLastAttempt
TimeStamp,
dsTimeOfLastSuccess
TimeStamp,
dsFailuresSinceLastSuccess
Counter32,
dsFailures
Counter32,
dsSuccesses
Counter32,
dsURL
URLString
}
dsIntIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" Together with applIndex it forms the unique key to
identify the conceptual row which contains useful info
on the (attempted) interaction between the DS (referred
to by applIndex) and a peer DS."
::= {dsIntEntry 1}
dsName OBJECT-TYPE
SYNTAX DistinguishedName
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Distinguished Name of the peer DS to which this
entry pertains."
::= {dsIntEntry 2}
dsTimeOfCreation OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The value of sysUpTime when this row was created.
If the entry was created before the network management
subsystem was initialized, this object will contain
a value of zero."
::= {dsIntEntry 3}
dsTimeOfLastAttempt OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The value of sysUpTime when the last attempt was made
to contact this DS. If the last attempt was made before
the network management subsystem was initialized, this
object will contain a value of zero."
::= {dsIntEntry 4}
dsTimeOfLastSuccess OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The value of sysUpTime when the last attempt made to
contact this DS was successful. If there have
been no successful attempts this entry will have a value
of zero. If the last successful attempt was made before
the network management subsystem was initialized, this
object will contain a value of zero."
::= {dsIntEntry 5}
dsFailuresSinceLastSuccess OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The number of failures since the last time an
attempt to contact this DS was successful. If
there has been no successful attempts, this counter
will contain the number of failures since this entry
was created."
::= {dsIntEntry 6}
dsFailures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Cumulative failures since the creation of
this entry."
::= {dsIntEntry 7}
dsSuccesses OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Cumulative successes since the creation of
this entry."
::= {dsIntEntry 8}
dsURL OBJECT-TYPE
SYNTAX URLString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" URL of the DS application."
::= {dsIntEntry 9}
--
-- Information about this installation of the directory server
--
dsEntityTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsEntityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table holds general information related to an installed
instance of a directory server"
::= {nsldap 5}
dsEntityEntry OBJECT-TYPE
SYNTAX DsEntityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry of general information about an installed instance
of a directory server"
INDEX { applIndex}
::= {dsEntityTable 1}
DsEntityEntry ::= SEQUENCE {
dsEntityDescr
DisplayString,
dsEntityVers
DisplayString,
dsEntityOrg
DisplayString,
dsEntityLocation
DisplayString,
dsEntityContact
DisplayString,
dsEntityName
DisplayString
}
dsEntityDescr OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A general textual description of this directory server."
::= {dsEntityEntry 1}
dsEntityVers OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The version of this directory server"
::={dsEntityEntry 2}
dsEntityOrg OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Organization responsible for directory server at this installation"
::={dsEntityEntry 3}
dsEntityLocation OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Physical location of this entity (directory server).
For example: hostname, building number, lab number, etc."
::={dsEntityEntry 4}
dsEntityContact OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contact person(s)responsible for the directory server at this
installation, together with information on how to conact."
::={dsEntityEntry 5}
dsEntityName OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Name assigned to this entity at the installation site"
::={dsEntityEntry 6}
--
-- Traps
--
--
nsDirectoryServerDown TRAP-TYPE
ENTERPRISE netscape
VARIABLES { dsEntityDescr, dsEntityVers, dsEntityLocation,
dsEntityContact }
DESCRIPTION "This trap is generated whenever the agent detects the
directory server to be (potentially) Down."
::= 7001
nsDirectoryServerStart TRAP-TYPE
ENTERPRISE netscape
VARIABLES { dsEntityDescr, dsEntityVers, dsEntityLocation }
DESCRIPTION "This trap is generated whenever the agent detects the
directory server to have (re)started."
::= 7002
END
|