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
|
NetWare-Host-Ext-MIB DEFINITIONS ::= BEGIN
--
-- This MIB document is 'WORK IN PROGRESS' of Novell, Inc.
-- As such, it is subject to change, without notice, until
-- such time as it is formally released and this disclaimer
-- removed.
--
-- This MIB defines extensions to the HOST-RESOURCES-MIB
-- for Novell NetWare servers.
--
-- Last Updated: August 9, 1994
--
IMPORTS
enterprises, Counter
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
ifIndex
FROM RFC1213-MIB
hrDeviceIndex
FROM HOST-RESOURCES-MIB;
-- This data type is used to model textual information in some
-- character set. A network management station should use a local
-- algorithm to determine which character set is in use and how it
-- should be displayed. Note that this character set may be encoded
-- with more than one octet per symbol, but will most often be NVT
-- ASCII.
-- Identifies a transport protocol.
--
TransportDomain ::= INTEGER {
noAddress(1),
ipx(2),
ip(3),
appleTalkDDP(4)
}
-- A representation of a transport address in the domain
-- specified by a paired object of type TransportDomain.
--
TransportAddress ::= OCTET STRING
--
novell OBJECT IDENTIFIER ::= { enterprises 23 }
mibDoc OBJECT IDENTIFIER ::= { novell 2 }
nwHostExtensions OBJECT IDENTIFIER ::= { mibDoc 27 }
nwhrStorage OBJECT IDENTIFIER ::= { nwHostExtensions 2 }
nwhrDevice OBJECT IDENTIFIER ::= { nwHostExtensions 3 }
nwhrOdi OBJECT IDENTIFIER ::= { nwHostExtensions 10 }
--
-- Extensions to the hrStorage Group
--
-- Registration for NetWare storage types, for use with
-- hrStorageType of hrStorageEntry in HOST-RESOURCES-MIB
nwhrStorageTypes
OBJECT IDENTIFIER ::= { nwhrStorage 1 }
nwhrStorageVolume
OBJECT IDENTIFIER ::= { nwhrStorageTypes 1 }
nwhrStorageMemoryPermanent
OBJECT IDENTIFIER ::= { nwhrStorageTypes 2 }
nwhrStorageMemoryAlloc
OBJECT IDENTIFIER ::= { nwhrStorageTypes 3 }
nwhrStorageCacheBuffers
OBJECT IDENTIFIER ::= { nwhrStorageTypes 4 }
nwhrStorageCacheMovable
OBJECT IDENTIFIER ::= { nwhrStorageTypes 5 }
nwhrStorageCacheNonMovable
OBJECT IDENTIFIER ::= { nwhrStorageTypes 6 }
nwhrStorageCodeAndDataMemory
OBJECT IDENTIFIER ::= { nwhrStorageTypes 7 }
nwhrStorageDOSMemory
OBJECT IDENTIFIER ::= { nwhrStorageTypes 8 }
nwhrStorageIOEngineMemory
OBJECT IDENTIFIER ::= { nwhrStorageTypes 9 }
nwhrStorageMSEngineMemory
OBJECT IDENTIFIER ::= { nwhrStorageTypes 10 }
nwhrStorageUnclaimedMemory
OBJECT IDENTIFIER ::= { nwhrStorageTypes 11 }
--
-- Extensions to the hrDevice Group
--
-- Registration for NetWare device types, for use with
-- hrDeviceType of hrDeviceEntry in HOST-RESOURCES-MIB
nwhrDeviceTypes OBJECT IDENTIFIER ::= { nwhrDevice 1 }
nwhrDeviceMirroredServerLink
OBJECT IDENTIFIER ::= { nwhrDeviceTypes 1 }
-- memory size, expressed in units of 1024bytes
KBytes ::= INTEGER (0..2147483647)
InternationalDisplayString ::= OCTET STRING
-- This data type is used to model textual information in some
-- character set. A network management station should use a local
-- algorithm to determine which character set is in use and how it
-- should be displayed. Note that this character set may be encoded
-- with more than one octet per symbol, but will most often be NVT
-- ASCII.
--
-- Extensions to the hrDeviceTable
--
nwhrDeviceTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwhrDeviceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Extensions to the (conceptual) table of devices
contained by the host"
::= { nwhrDevice 2 }
nwhrDeviceEntry OBJECT-TYPE
SYNTAX NwhrDeviceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Extensions to a (conceptual) entry for one device
contained by the host"
INDEX { hrDeviceIndex }
::= { nwhrDeviceTable 1 }
NwhrDeviceEntry ::= SEQUENCE {
nwhrDeviceAdapterIndex INTEGER,
nwhrDeviceControllerNumber INTEGER,
nwhrDeviceNumber INTEGER
}
nwhrDeviceAdapterIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index into the nwhrAdapterTable of the
adapter/controller to which this device is attached (or
physically manifested by, for logical device). Zero if
not applicable."
::= { nwhrDeviceEntry 1 }
nwhrDeviceControllerNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The controller number (relative to its adapter), or
the SCSI target ID, or zero if not applicable. Note
that zero is a valid value for both controller number
and SCSI Target ID."
::= { nwhrDeviceEntry 2 }
nwhrDeviceNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The device number (relative to its controller), or the
SCSI LUN (Logical Unit Number), or zero if not
applicable. Note that zero is a valid value for both
device number and SCSI LUN."
::= { nwhrDeviceEntry 3 }
nwhrProcessorCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of processor devices contained in this
host"
::= { nwhrDevice 3 }
nwhrPrinterCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of printer devices contained in this host"
::= { nwhrDevice 4 }
nwhrDiskStorageCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Disk Storage devices contained in this
host."
::= { nwhrDevice 5 }
--
-- Extensions to the hrDiskStorageTable
--
nwhrDiskStorageTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwhrDiskStorageEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Extensions to the hrDiskStorageTable"
::= { nwhrDevice 6 }
nwhrDiskStorageEntry OBJECT-TYPE
SYNTAX NwhrDiskStorageEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Extensions to the hrDiskStorageEntry"
INDEX { hrDeviceIndex }
::= { nwhrDiskStorageTable 1 }
NwhrDiskStorageEntry ::= SEQUENCE {
nwhrDiskStorageHeads INTEGER,
nwhrDiskStorageCylinders INTEGER,
nwhrDiskStorageSectorsPerTrack INTEGER,
nwhrDiskStorageSectorSize INTEGER,
nwhrDiskStorageBlockSize INTEGER
}
nwhrDiskStorageHeads OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of read/write heads on the drive"
::= { nwhrDiskStorageEntry 1 }
nwhrDiskStorageCylinders OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of cylinders on the drive."
::= { nwhrDiskStorageEntry 2 }
nwhrDiskStorageSectorsPerTrack OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of sectors per track on the drive."
::= { nwhrDiskStorageEntry 3 }
nwhrDiskStorageSectorSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The size of a sector in bytes."
::= { nwhrDiskStorageEntry 4 }
nwhrDiskStorageBlockSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The driver maximum I/O request size in bytes."
::= { nwhrDiskStorageEntry 5 }
--
-- The Physical Partition Table
--
nwhrPhysicalPartitionTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwhrPhysicalPartitionEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of physical partitions for long-term storage
devices contained by the host."
::= { nwhrDevice 7 }
nwhrPhysicalPartitionEntry OBJECT-TYPE
SYNTAX NwhrPhysicalPartitionEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry for one partition. The hrDeviceIndex in the
index represents the entry in the hrDeviceTable that
corresponds to the nwhrPhysicalPartitionEntry."
INDEX { hrDeviceIndex, nwhrPhysicalPartitionIndex }
::= { nwhrPhysicalPartitionTable 1 }
NwhrPhysicalPartitionEntry ::= SEQUENCE {
nwhrPhysicalPartitionIndex INTEGER,
nwhrPhysicalPartitionType INTEGER,
nwhrPhysicalPartitionDescr InternationalDisplayString,
nwhrPhysicalPartitionSize KBytes
}
nwhrPhysicalPartitionIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value for each physical partition on this
long-term storage device. The value for each long-term
storage device must remain constant from one re-
initialization of the agent to the next re-
initialization."
::= { nwhrPhysicalPartitionEntry 1 }
nwhrPhysicalPartitionType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
netWare(2),
dos(3),
inwDos(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of this physical partition."
::= { nwhrPhysicalPartitionEntry 2 }
nwhrPhysicalPartitionDescr OBJECT-TYPE
SYNTAX InternationalDisplayString (SIZE (0..128))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A textual description of this partition."
::= { nwhrPhysicalPartitionEntry 3 }
nwhrPhysicalPartitionSize OBJECT-TYPE
SYNTAX KBytes
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The size (in Kilobytes) of this physical partition."
::= { nwhrPhysicalPartitionEntry 4 }
--
-- The Hotfix Table
--
-- The table of hotfix redirection areas for all NetWare
-- partitions on the host.
--
-- An entry is placed in the hotfix table for each device in
-- the host whose type is `hrDeviceDiskStorage' and it
-- contains a NetWare partition.
--
nwhrHotfixTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwhrHotfixEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of hotfix areas of diskStorage devices
contained by the host.
Note that this table is potentially sparse: an entry
exists if the corresponding value of the hrDeviceType
object is `hrDeviceDiskStorage' and a NetWare partition
exists on the device."
::= { nwhrDevice 8 }
nwhrHotfixEntry OBJECT-TYPE
SYNTAX NwhrHotfixEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry for one hotfix redirection area contained by
the host."
INDEX { hrDeviceIndex, nwhrPhysicalPartitionIndex }
::= { nwhrHotfixTable 1 }
NwhrHotfixEntry ::= SEQUENCE {
nwhrHotfixUnits INTEGER,
nwhrHotfixTotal INTEGER,
nwhrHotfixUsed INTEGER,
nwhrHotfixReserved INTEGER
}
nwhrHotfixUnits OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The size, in bytes, of the hotfix blocks."
::= { nwhrHotfixEntry 1 }
nwhrHotfixTotal OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The size of the total hotfix redirection area
represented by this entry, in units of
nwhrHotfixUnits."
::= { nwhrHotfixEntry 2 }
nwhrHotfixUsed OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of hotfix redirected blocks, i.e. the
number of bad blocks that hotfix has found."
::= { nwhrHotfixEntry 3 }
nwhrHotfixReserved OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of hotfix redirection blocks reserved for
system use."
::= { nwhrHotfixEntry 4 }
--
-- The Adapter Table
--
nwhrAdapterCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of adapters contained in this host."
::= { nwhrDevice 9 }
nwhrAdapterTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwhrAdapterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"General information for each adapter board in the
host: driver name and version, Interrupt, DMA, I/O
address, and number of attached devices."
::= { nwhrDevice 10 }
nwhrAdapterEntry OBJECT-TYPE
SYNTAX NwhrAdapterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"General information for a particular adapter board in
the host: driver name and version, Interrupt, DMA, I/O
address, and number of attached devices."
INDEX { nwhrAdapterIndex }
::= { nwhrAdapterTable 1 }
NwhrAdapterEntry ::= SEQUENCE {
nwhrAdapterIndex INTEGER,
nwhrAdapterType OBJECT IDENTIFIER,
nwhrAdapterDescr InternationalDisplayString,
nwhrAdapterDriverDescr InternationalDisplayString,
nwhrAdapterDriverMajorVer INTEGER,
nwhrAdapterDriverMinorVer INTEGER,
nwhrAdapterPort1 INTEGER,
nwhrAdapterPort1Len INTEGER,
nwhrAdapterPort2 INTEGER,
nwhrAdapterPort2Len INTEGER,
nwhrAdapterMem1 INTEGER,
nwhrAdapterMem1Len INTEGER,
nwhrAdapterMem2 INTEGER,
nwhrAdapterMem2Len INTEGER,
nwhrAdapterDMA1 INTEGER,
nwhrAdapterDMA2 INTEGER,
nwhrAdapterInterrupt1 INTEGER,
nwhrAdapterInterrupt2 INTEGER,
nwhrAdapterSlot INTEGER,
nwhrAdapterDevices INTEGER
}
nwhrAdapterIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value for each adapter contained in the host.
The value for each adapter must remain constant at
least from one re-initialization of the agent to the
next re-initialization."
::= { nwhrAdapterEntry 1 }
nwhrAdapterType OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An indication of the type of adapter. This will
typically be one of the possible values of
hrDeviceType."
::= { nwhrAdapterEntry 2 }
nwhrAdapterDescr OBJECT-TYPE
SYNTAX InternationalDisplayString (SIZE(0..128))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A description the hardware for this adapter. This
will usually include manufacturer, model, and version
information. For LAN adapters, this could include the
short board name and the boards burnt-in MAC address."
::= { nwhrAdapterEntry 3 }
nwhrAdapterDriverDescr OBJECT-TYPE
SYNTAX InternationalDisplayString (SIZE(0..128))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A textual description of the driver for this adapter"
::= { nwhrAdapterEntry 4 }
nwhrAdapterDriverMajorVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The major version number of the adapter driver."
::= { nwhrAdapterEntry 5 }
nwhrAdapterDriverMinorVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minor version number of the adapter driver."
::= { nwhrAdapterEntry 6 }
nwhrAdapterPort1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The primary I/O port block. This is the base address
of a block of I/O addresses decoded by the adapter.
The value will be zero if there is no I/O address
associated with this adapter."
::= { nwhrAdapterEntry 7 }
nwhrAdapterPort1Len OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of I/O ports in the block starting at
nwhrAdapterPort1. This value is used in conjunction
with nwhrAdapterPort1 to determine the I/O block used
by the adapter. The value will be zero if there is no
I/O address associated with this adapter."
::= { nwhrAdapterEntry 8 }
nwhrAdapterPort2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The secondary I/O port block. This is the base
address of a block of I/O addresses decoded by the
adapter. The value will be zero if there is no
secondary I/O address associated with this adapter."
::= { nwhrAdapterEntry 9 }
nwhrAdapterPort2Len OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of I/O ports in the block starting at
nwhrAdapterPort2. This value is used in conjunction
with nwhrAdapterPort2 to determine the secondary I/O
block used by the adapter. The value will be zero if
there is no I/O address associated with this adapter."
::= { nwhrAdapterEntry 10 }
nwhrAdapterMem1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The primary Memory Address. This is the base address
of the primary block of memory space decoded by the
adapter. The value will be zero if there is no memory
address associated with this adapter."
::= { nwhrAdapterEntry 11 }
nwhrAdapterMem1Len OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The length, in bytes, of the primary memory address
block. From this value and nwhrAdapterMem1, a
determination can be made as to which memory address
ranges are in use by the adapter."
::= { nwhrAdapterEntry 12 }
nwhrAdapterMem2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The secondary Memory Address. This is the address of
the secondary block of memory space decoded by the
adapter. The value will be zero if there is no
secondary memory address associated with this adapter."
::= { nwhrAdapterEntry 13 }
nwhrAdapterMem2Len OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The length, in bytes, of the secondary memory address
block. From this value and nwhrAdapterMem2, a
determination can be made as to which memory address
ranges are in use by the adapter."
::= { nwhrAdapterEntry 14 }
nwhrAdapterDMA1 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The primary DMA channel used by the adapter. The value
will be 255 if this adapter does not use any DMA
channel."
::= { nwhrAdapterEntry 15 }
nwhrAdapterDMA2 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The secondary DMA channel used by the adapter. The
value will be 255 if this adapter does not use a
secondary DMA channel."
::= { nwhrAdapterEntry 16 }
nwhrAdapterInterrupt1 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The primary interrupt vector used by the adapter. The
value will be 255 if this adapter does not use any
Interrupt."
::= { nwhrAdapterEntry 17 }
nwhrAdapterInterrupt2 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The secondary interrupt vector used by the adapter.
The value will be 255 if this adapter does not use a
secondary Interrupt."
::= { nwhrAdapterEntry 18 }
nwhrAdapterSlot OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The slot in which the adapter resides. The value will
be zero if the slot information is not available on the
platform, such as an ISA based PC, otherwise the value
will be the slot number the adapter resides. The slot
number starts from 1."
::= { nwhrAdapterEntry 19 }
nwhrAdapterDevices OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of devices associated with this adapter.
For instance, the number of drives attached to a disk
controller."
::= { nwhrAdapterEntry 20 }
--
-- Mirrored Server Link (MSL)
--
nwhrMslCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Mirrored Server Link (MSL) devices
contained in this host."
::= { nwhrDevice 11 }
nwhrMslTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwhrMslEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The (conceptual) table of Mirrored Server Link (MSL)
devices contained by the host.
Note that this table is potentially sparse: a
(conceptual) entry exists only if the corresponding
value of the hrDeviceType object is
nwhrDeviceMirroredServerLink"
::= { nwhrDevice 12 }
nwhrMslEntry OBJECT-TYPE
SYNTAX NwhrMslEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
" A (conceptual) entry for one Mirrored Server Link
(MSL) device contained by the host. The hrDeviceIndex
in the index represents the entry in the hrDeviceTable
that corresponds to the nwhrMslEntry."
INDEX { hrDeviceIndex }
::= { nwhrMslTable 1 }
NwhrMslEntry ::= SEQUENCE {
nwhrMslState INTEGER,
nwhrMslSpeed INTEGER,
nwhrMslSends Counter,
nwhrMslReceives Counter,
nwhrMslInErrors Counter,
nwhrMslOutErrors Counter
}
nwhrMslState OBJECT-TYPE
SYNTAX INTEGER {
offline(1),
startup(2),
standby(3),
active(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current state of this MSL device."
::= { nwhrMslEntry 1 }
nwhrMslSpeed OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The nominal bandwidth of the MSL link in bits per
second."
::= { nwhrMslEntry 2 }
nwhrMslSends OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of sends from this MSL device."
::= { nwhrMslEntry 3 }
nwhrMslReceives OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of receives by this MSL device."
::= { nwhrMslEntry 4 }
nwhrMslInErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of errors in receives by this MSL device."
::= { nwhrMslEntry 5 }
nwhrMslOutErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of errors on sends by this MSL device."
::= { nwhrMslEntry 6 }
--
-- The Printer Table
--
nwhrPrinterTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwhrPrinterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A set of data for each accessible printer, whether
local or remote."
::= { nwhrDevice 13 }
nwhrPrinterEntry OBJECT-TYPE
SYNTAX NwhrPrinterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A set of data for a particular printer."
INDEX { nwhrPrinterID }
::= { nwhrPrinterTable 1 }
NwhrPrinterEntry ::= SEQUENCE {
nwhrPrinterID INTEGER,
nwhrPrinterType INTEGER,
nwhrPrinterLocalName InternationalDisplayString,
nwhrPrinterQueueName InternationalDisplayString,
nwhrPrinterServerName InternationalDisplayString,
nwhrPrinterTransportDomain TransportDomain,
nwhrPrinterTransportAddress TransportAddress,
nwhrPrinterDeviceIndex INTEGER
}
nwhrPrinterID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value for each accessible printer. This
value will be constant for the lifetime of the
mapping."
::= { nwhrPrinterEntry 1 }
nwhrPrinterType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
local(2),
netware(3),
unixware(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of the printer."
::= { nwhrPrinterEntry 2 }
nwhrPrinterLocalName OBJECT-TYPE
SYNTAX InternationalDisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The local name for the printer."
::= { nwhrPrinterEntry 3 }
nwhrPrinterQueueName OBJECT-TYPE
SYNTAX InternationalDisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of the print queue associated with this
printer. Zero length string if printer is local."
::= { nwhrPrinterEntry 4 }
nwhrPrinterServerName OBJECT-TYPE
SYNTAX InternationalDisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of the server containing the print queue.
Zero length string if printer is local."
::= { nwhrPrinterEntry 5 }
nwhrPrinterTransportDomain OBJECT-TYPE
SYNTAX TransportDomain
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The transport domain associated with the printer
(print queue)."
::= { nwhrPrinterEntry 6 }
nwhrPrinterTransportAddress OBJECT-TYPE
SYNTAX TransportAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The transport address associated with this printer
(print queue). Zero length string if printer is
local."
::= { nwhrPrinterEntry 7 }
nwhrPrinterDeviceIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of hrDeviceIndex for this printer. Zero if
non-local."
::= { nwhrPrinterEntry 8 }
--
-- The ODI (Open Datalink Interface) Group
--
-- The ODI Group provides information about Link Support Layer
-- (LSL), LAN cards, WAN cards, logical LAN (frame), and
-- protocols. No statistics (except for LSL which is Novell
-- proprietary) are provided in these tables, management
-- stations should collect LAN statistics through the
-- standard MIB II, various Transmission MIBs and Protocol
-- MIBs.
nwhrLslOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of of SendPacket requests made to the
LSL."
::= { nwhrOdi 1 }
nwhrLslInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of GetStackECB requests made by MLIDs
to the LSL."
::= { nwhrOdi 2 }
nwhrLslUnclaimedPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of times a packet was received and
not consumed by a protocol stack."
::= { nwhrOdi 3 }
--
-- the Protocol Table
--
nwhrProtocolTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwhrProtocolEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The Protocol Table provides basic information about
protocols running in the host, management stations
should refer to the appropriate protocol MIBs for the
details about each protocol."
::= { nwhrOdi 4 }
nwhrProtocolEntry OBJECT-TYPE
SYNTAX NwhrProtocolEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about a particular protocol."
INDEX { INTEGER, nwhrProtocolName }
::= { nwhrProtocolTable 1 }
NwhrProtocolEntry ::= SEQUENCE {
nwhrProtocolName InternationalDisplayString,
nwhrProtocolID OCTET STRING,
nwhrProtocolAddress InternationalDisplayString,
nwhrProtocolOutPkts Counter,
nwhrProtocolInPkts Counter,
nwhrProtocolIgnoredPkts Counter,
nwhrProtocolFullName InternationalDisplayString
}
nwhrProtocolName OBJECT-TYPE
SYNTAX InternationalDisplayString (SIZE(0..20))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The protocol name, for example, IPX, IP, ARP."
::= { nwhrProtocolEntry 1 }
nwhrProtocolID OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..6))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The protocol identifier For example:
000000000800 - IP for Ethernet II
00080007809B - AppleTalk for Ethernet SNAP"
::= { nwhrProtocolEntry 2 }
nwhrProtocolAddress OBJECT-TYPE
SYNTAX InternationalDisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object provides protocol address information, for
example, the Network Address on IPX network, the IP
address on IP network. Note there is no format in the
InternationalDisplayString and the information is not
guaranteed available."
::= { nwhrProtocolEntry 3 }
nwhrProtocolOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of send packet requests made to the
LSL."
::= { nwhrProtocolEntry 4 }
nwhrProtocolInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of incoming packets that were
consumed by the protocol."
::= { nwhrProtocolEntry 5 }
nwhrProtocolIgnoredPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of times the protocol receive handler
was called with look ahead and the protocol did not
return a receive ECB to the MLID to receive the packet"
::= { nwhrProtocolEntry 6 }
nwhrProtocolFullName OBJECT-TYPE
SYNTAX InternationalDisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The full name of the protocol name, for example,
'DOD Internet Protocol'."
::= { nwhrProtocolEntry 7 }
--
-- Extensions to the MIB-II Interfaces table
--
nwhrIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwhrIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Extensions to MIB-II's Interfaces table to add some
NetWare specific info."
::= { nwhrOdi 5 }
nwhrIfEntry OBJECT-TYPE
SYNTAX NwhrIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"NetWare specific info for a particular interface."
INDEX { INTEGER }
::= { nwhrIfTable 1 }
NwhrIfEntry ::= SEQUENCE {
nwhrIfLogicalBoardNumber INTEGER,
nwhrIfFrameType InternationalDisplayString,
nwhrIfLogicalBoardName InternationalDisplayString
}
nwhrIfLogicalBoardNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The logical board number."
::= { nwhrIfEntry 1 }
nwhrIfFrameType OBJECT-TYPE
SYNTAX InternationalDisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The frame type for this logical board."
::= { nwhrIfEntry 2 }
nwhrIfLogicalBoardName OBJECT-TYPE
SYNTAX InternationalDisplayString (SIZE(0..18))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name assigned to this logical board."
::= { nwhrIfEntry 3 }
END
|