forked from kcsinclair/mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ASANTE-AH1012-MIB
2087 lines (2086 loc) · 121 KB
/
ASANTE-AH1012-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
-- Title: AsanteHub 1012 MIB
-- Date: January 18, 1993 (Latest Revision)
-- Version: 2.1E
-- Information in this document is subject to change without notice
-- and does not represent a commitment on the part of
-- Asante Technologies, Inc. No part of this document, or any
-- associated software, product design or design concept,
-- may be copied, reproduced or stored, in whole or in part, in any
-- form or by any means mechanical, electronic, optical, photocopying,
-- recording or otherwise, including translation to another language
-- or format, except for your own internal use, without the express
-- written consent of Asante Technologies, Inc.
-- The AsanteHub 1012 MIB is supplied "AS IS", and Asante Technologies,
-- Inc. makes no warranty, either express of implied, as to the use,
-- operation, condition, or performance of the AsanteHub 1012 MIB.
-- Copyright 1992 by Asante Technologies, Inc. All rights reserved.
ASANTE-AH1012-MIB
DEFINITIONS ::= BEGIN
IMPORTS
private, NetworkAddress,
IpAddress, Counter, Gauge, TimeTicks
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
enterprises
FROM SNMPv2-SMI
TRAP-TYPE
FROM RFC-1215;
asante OBJECT IDENTIFIER ::= { enterprises 298}
DisplayString ::=
OCTET STRING
-- This data type is used to model textual information
-- taken from the NVT ASCII character set. By
-- convention, objects
-- with this syntax are declared as having
--
-- SIZE (0..255)
PhysAddress ::=
OCTET STRING
-- This data type is used to model media addresses. For
-- many types of media, this will be in a binary
-- representation. For example, an ethernet address
-- would be represented as a string of 6 octets.
-- Asante Enterprise Specific Objects
--
products OBJECT IDENTIFIER ::= { asante 1 }
productId OBJECT IDENTIFIER ::= { asante 2 }
snmpAgent OBJECT IDENTIFIER ::= { products 1 }
adaptCard OBJECT IDENTIFIER ::= { products 2 }
concentrator OBJECT IDENTIFIER ::= { products 3 }
agentSw OBJECT IDENTIFIER ::= { snmpAgent 1 }
agentFw OBJECT IDENTIFIER ::= { snmpAgent 2 }
agentHw OBJECT IDENTIFIER ::= { snmpAgent 3 }
agentNetProtocol OBJECT IDENTIFIER ::= { snmpAgent 5 }
ipagentProtocol OBJECT IDENTIFIER ::= { agentNetProtocol 1 }
concChassis OBJECT IDENTIFIER ::= { concentrator 1 }
concConfiguration OBJECT IDENTIFIER ::= { concentrator 2 }
concStatistics OBJECT IDENTIFIER ::= { concentrator 3 }
concStateCtrl OBJECT IDENTIFIER ::= { concentrator 4 }
concNodeMgt OBJECT IDENTIFIER ::= { concentrator 5 }
concAlarmMgt OBJECT IDENTIFIER ::= { concentrator 6 }
concBasicGrp OBJECT IDENTIFIER ::= { concChassis 1 }
eSmartHubConfig OBJECT IDENTIFIER ::= { concConfiguration 1 }
eStatistics OBJECT IDENTIFIER ::= { concStatistics 1 }
eStateCtrl OBJECT IDENTIFIER ::= { concStateCtrl 1 }
eGlobalStatistics OBJECT IDENTIFIER ::= { eStatistics 1 }
-- the agent network protocol stack capability map
agentNetProtoStkCapMap OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..4))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This octet string represents the current
protocol stack configuration supported
by the agent, encoded as a bit string.
Each protocol stack is represented
by a single bit. When the value of a
bit = 1, it indicates that the protocol
stack on the agent represented by that
bit is supported; when zero, the protocol
stack is not supported. The number of
octets in the string is always integer
multiple of the octet. The first protocol
stack will encode in the least significant
bit of the first octet. Current, only
IP Stack(bit 0) and IPX Stack(bit 1) were
defined, all other bits should be zero."
::= { snmpAgent 4 }
-- the agent Sw group
agentRunTimeImageMajorVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The major software version number of the agent
run time image."
::= { agentSw 1 }
agentRunTimeImageMinorVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minor software version number of the agent
run time image."
::= { agentSw 2 }
agentImageLoadMode OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- Unknown
localBoot(2), -- Load image from local flash EEPROM
netBoot(3) -- Load image remotely from network
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Tells hub whether the software image is to be
loaded from the FLASH EPROM or from over the network."
::= { agentSw 3 }
agentRemoteBootInfo OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- use boot protocol
eepromBootInfo(2) -- use EEPROM boot parameters
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The method for getting boot parameter information."
::= { agentSw 4 }
agentRemoteBootProtocol OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- Unknown boot protocol
bootp-tftp(2), -- use bootp-tftp protocol
tftp-only(3) -- use tftp protocol
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The netboot protocol that used to load the
agent software."
::= { agentSw 5 }
agentRemoteBootFile OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..64))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The boot file name that is sent to the boot file
server by agent boot code during boot time."
::= { agentSw 6 }
agentOutBandDialString OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..64))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is the initialization string used by the
Network Management station to establish the
out-of-band connection for modem only."
::= { agentSw 7 }
agentOutBandBaudRate OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- Unknown baud rate
b1200(2), -- 1200 baud rate
b2400(3), -- 2400 baud rate
b4800(4), -- 4800 baud rate
b9600(5) -- 9600 baud rate
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The baud rate setting for the out-of-band
port."
::= { agentSw 8 }
agentReset OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- Unknown
reset(2), -- system reset
not-reset(3) -- normal operation
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The object to allow software to perform
'push_button' system reset."
::= { agentSw 9 }
-- the agent Hw group
agentHwReVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The hardware reversion number of the network
management module."
::= { agentHw 1 }
agentHwVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The hardware model number of the network
management module"
::= { agentHw 2 }
-- the agent Fw group
agentFwMajorVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The major firmware version number of the agent
prom code."
::= { agentFw 1 }
agentFwMinorVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minor firmware version number of the agent
prom code."
::= { agentFw 2 }
-- the ipagent protocol group
ipagentIpAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The ipagent's administrative IP address. The
current operational IP address can be obtained
from the ipAdEntAddr in the ipAddrTable. This
parameter will take effect only after reset hub.
This parameter will always be updated in the
EEPROM."
::= { ipagentProtocol 1 }
ipagentIpNetMask OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The ipagent's administrative IP subnet mask. The
current operational IP subnet mask can be obtained
from the ipAdEntMask in the ipAddrTable. This
parameter will take effect only after reset hub.
This parameter will always be updated in the
EEPROM."
::= { ipagentProtocol 2 }
ipagentDefaultGateway OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The ipagent's administrative default gateway IP
address. The current operational IP default
gateway IP address can be obtained from the
ipRouteDest in the ipRouteTable. This parameter
will take effect only after reset hub. This
parameter will always be updated in the EEPROM."
::= { ipagentProtocol 3 }
ipagentBootServerAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP address of the boot server that was used
for booting this ipagent. This parameter will
always be updated in the EEPROM."
::= { ipagentProtocol 4 }
ipagentUnAuthIP OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address of the last station that tried to
access this ipagent with an invalid community
string."
::= { ipagentProtocol 5 }
ipagentUnAuthComm OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The community string of the last station that tried
to access this ipagent with an invalid community
string."
::= { ipagentProtocol 6 }
-- the ipagent trap receive table group
ipagentTrapRcvrTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpagentTrapRcvrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table consisting of the list of Network Management
Stations that are to receive traps generated by this
agent."
::= { agentNetProtocol 2 }
ipagentTrapRcvrEntry OBJECT-TYPE
SYNTAX IpagentTrapRcvrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Destination IP address and community string for
a particular trap server. "
INDEX { ipagentTrapRcvrIpAddr }
::= { ipagentTrapRcvrTable 1 }
IpagentTrapRcvrEntry ::= SEQUENCE {
ipagentTrapRcvrIpAddr
IpAddress,
ipagentTrapRcvrStatus
INTEGER,
ipagentTrapRcvrComm
OCTET STRING
}
ipagentTrapRcvrIpAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IP address for trap server receiving trap. "
::= { ipagentTrapRcvrEntry 1 }
ipagentTrapRcvrStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
valid(2),
invalid(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Validation of individual trap receiver. If value
of this object is set to invalid(3), then that
particular entry is deemed invalid, meaning that
the address for that entry is no longer valid
because the entry has been removed from the table."
::= { ipagentTrapRcvrEntry 2 }
ipagentTrapRcvrComm OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Community string for traps sent to this trap
receiver."
::= { ipagentTrapRcvrEntry 3 }
-- the concChassis group
concChassisType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
aH1012(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The concentrator's chassis type."
::= { concBasicGrp 1 }
concChassisBkplType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
no-backplane(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The concentrator's chassis backplane type."
::= { concBasicGrp 2 }
concChassisBkplRev OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The concentrator's chassis backplane
revision number."
::= { concBasicGrp 3 }
-- chassis power supply table group
concChassisPsTable OBJECT-TYPE
SYNTAX SEQUENCE OF ConcChassisPsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains concentrator's power supply
information."
::= { concBasicGrp 4 }
concChassisPsEntry OBJECT-TYPE
SYNTAX ConcChassisPsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The entry in the table containing the information
about a single power supply."
INDEX { concChassisPsIndex }
::= { concChassisPsTable 1 }
ConcChassisPsEntry ::= SEQUENCE {
concChassisPsIndex
INTEGER,
concChassisPsModuleType
INTEGER,
concChassisPsStatus
INTEGER
}
concChassisPsIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of this object identifies the
power supply table for which this entry
contains power supply type and status."
::= { concChassisPsEntry 1 }
concChassisPsModuleType OBJECT-TYPE
SYNTAX INTEGER {
other(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of this object identifies the
power supply module type."
::= { concChassisPsEntry 2 }
concChassisPsStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- unknown
good(2), -- power supply in good cond.
bad(3) -- power supply in failed cond.
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of this object identifies the
power supply module status."
::= { concChassisPsEntry 3 }
-- chassis fan
concChassisFanStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- unknown
no-fan(2), -- no fan is found at this model
good(3), -- fan in good cond.
bad(4) -- fan in failed cond.
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of this object identifies the
fan status."
::= { concBasicGrp 5 }
-- chassis group capacity
concChassisGroupCapacity OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of groups that can be contained within
the concentrator. "
::= { concBasicGrp 6 }
concChassisGroupMap OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This octet string represents the current
configuration of groups, encoded as a bit string,
each group is represented by a single bit."
::= { concBasicGrp 7 }
concChassisGrpTable OBJECT-TYPE
SYNTAX SEQUENCE OF ConcChassisGrpEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table that contains information about the
group/slot in this chassis."
::= { concBasicGrp 8 }
concChassisGrpEntry OBJECT-TYPE
SYNTAX ConcChassisGrpEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of information for each slot in this chassis."
INDEX { concChassisGrpIndex }
::= { concChassisGrpTable 1 }
ConcChassisGrpEntry ::= SEQUENCE {
concChassisGrpIndex
INTEGER,
concChassisGrpNumberPort
INTEGER,
concChassisGrpType
INTEGER,
concChassisGrpDescr
DisplayString,
concChassisGrpHwRev
INTEGER
}
concChassisGrpIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of this object identifies the
chassis group table for which this entry
contains group related information."
::= { concChassisGrpEntry 1 }
concChassisGrpNumberPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of port is available for up/down link
within this group."
::= { concChassisGrpEntry 2 }
concChassisGrpType OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value represents the function of this group."
::= { concChassisGrpEntry 3 }
concChassisGrpDescr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A description of this group device."
::= { concChassisGrpEntry 4 }
concChassisGrpHwRev OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The hardware revision number of this particular
group."
::= { concChassisGrpEntry 5 }
-- ConcConfiguration Group
eSmartHubId OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hub MAC address (octet string) found from prom
chip in hub."
::= { eSmartHubConfig 1 }
eSmartHubAssignedId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Assigned hub ID for Out-of-Band."
::= { eSmartHubConfig 2 }
eSmartHubTerSwitch OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- unknown
terminal(2), -- switch is on terminal mode
pc-modem(3) -- switch is on pc/modem mode
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Status of position of PC/terminal switch located on
rear panel of hub. Switches between serial and
parallel communications for modem/PC or terminal
connection to RS-232 Port. Up (off) for PC,
down (on) for terminal. If position of switch is
changed, there will be no change in this status
until hub is reset."
::= { eSmartHubConfig 3 }
-- Currently, this object does not allow user
-- to set new value.
eSmartHubHwLoadPatStatus OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Which logic configuration pattern is loaded into the
Programmable Logic Device PLD."
::= { eSmartHubConfig 4 }
eSmartHubHwLoadPatCapacity OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"What kind of function the PLD can perform."
::= { eSmartHubConfig 5 }
eSmartHubNodeAgeTimer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"How long to keep node entry in node summary
table, measured in sec. The maximum is 11 hours."
::= { eSmartHubConfig 6 }
eSmartHub3in1LnConStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- BNC is connected or no connection
uTP(2), -- 10BASE-T port is connected
aUI(3), -- AUI port is connected
uTP-and-AUI(4) -- both 10-T and AUI ports are connected
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Status of 3In1 Uplink which is located on rear
panel of hub. Describes the physical link type
or types currently connected."
::= { eSmartHubConfig 7 }
eSmartHub3in1StateCtrl OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- unknown
uTP(2), -- 10BASE-T port is selected
bNC(3), -- BNC port is selected
aUI(4), -- AUI port is selected
auto(5) -- automatically switched
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Whether using Auto-sense or manually selected a
particular media type for the uplink connection. If
using Auto-sense it first tries AUI. If
AUI is not present then 10T. If neither AUI nor
10T is present, then it defaults to BNC."
::= { eSmartHubConfig 8 }
-- enet concStatictics Global group
eGlobalHubReadableFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Global counter of good or readable frames for this
hub. Frame is between 64 and 1518 bytes in
length and has SFD and good FCS."
::= { eGlobalStatistics 1 }
eGlobalHubMcastFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Global counter of number of multicast frames for
this hub. 1st bit in highest ordered bytes of
destination address is set to 1. Broadcast packets
are not included."
::= { eGlobalStatistics 2 }
eGlobalHubBcastFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Global counter of number of broadcast frames for
his hub. All 1s in network destination address.
Multicast packets are not included."
::= { eGlobalStatistics 3 }
eGlobalHubFrameTooLongs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Global counter, for this hub, of data frames
longer than 1518 bytes, with a SFD and good FCS."
::= { eGlobalStatistics 4 }
eGlobalHubRunts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Global counter, for this hub, of data frames with
size less than 64 bytes, with no CRC or alignment
errors. "
::= { eGlobalStatistics 5 }
eGlobalHubAlignmentErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Global counter, for this hub, of frames which
are not integer multiples of 1 byte."
::= { eGlobalStatistics 6 }
eGlobalHubFragmentErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Global counter, for this hub, of frames greater than
2 bytes and less than 64 bytes, with SFD and bad
FCS (CRC error)."
::= { eGlobalStatistics 7 }
eGlobalHubFCSErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Global counter, for this hub, of frames that
failed Cyclic Redundancy Check (CRC)."
::= { eGlobalStatistics 8 }
eGlobalHubIFGErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Global counter, for this hub, of occurrences of
Interframe Gap Errors where time period between
data frames is less than 5.5 micro seconds."
::= { eGlobalStatistics 9 }
eGlobalHubDataRateMismatchs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Global counter, for this hub, of errors where
incoming data rate is not with in the tolerance
level of 10MHZ + or - 0.01%."
::= { eGlobalStatistics 10 }
eGlobalHubShortEvents OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Global counter, for this hub, of data burst where
data is less than 10 bytes in length, with no
SFD."
::= { eGlobalStatistics 11 }
eGlobalHubCollisions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Global counter of collision flags, for this hub."
::= { eGlobalStatistics 12 }
eGlobalHubLateCollisions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Global counter, for this hub, of collisions
occurring after the 64 byte collision window."
::= { eGlobalStatistics 13 }
eGlobalHubMJLPs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Global counter of MAU jabber lockup protection
where hub repeater chip goes into lockup state."
::= { eGlobalStatistics 14 }
eGlobalHubAutoPartitions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Global counter, for this hub, of all ports including
3in1 port being partitioned from network in
response to 31 or more continuous collisions."
::= { eGlobalStatistics 15 }
eGlobalHubSFDMissings OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Global counter, for this hub, of a burst of data
greater than or equal to 10 bytes in length with
no SFD."
::= { eGlobalStatistics 16 }
eGlobalHubBadFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Global counter, for this hub, of total errored frame
including toolong, runts, misaligned, or bad FCS."
::= { eGlobalStatistics 17 }
-- eGroupStatistics group
eGrpStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF EnetGrpStatisticsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of statistical information for each group."
::= { eStatistics 3 }
eGrpStatisticsEntry OBJECT-TYPE
SYNTAX EnetGrpStatisticsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Entry for individual group in table."
INDEX { eGrpStatIndex }
::= { eGrpStatisticsTable 1 }
EnetGrpStatisticsEntry ::= SEQUENCE {
eGrpStatIndex
INTEGER,
eGrpStatReadableFrames
Counter,
eGrpStatMcastFrames
Counter,
eGrpStatBcastFrames
Counter,
eGrpStatFrameTooLongs
Counter,
eGrpStatRunts
Counter,
eGrpStatAlignmentErrors
Counter,
eGrpStatFragmentErrors
Counter,
eGrpStatFCSErrors
Counter,
eGrpStatIFGErrors
Counter,
eGrpStatDataRateMismatchs
Counter,
eGrpStatShortEvents
Counter,
eGrpStatCollisions
Counter,
eGrpStatLateCollisions
Counter,
eGrpStatMJLPs
Counter,
eGrpStatAutoPartitions
Counter,
eGrpStatSFDMissings
Counter,
eGrpStatBadFrames
Counter
}
eGrpStatIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of this object identifies the group
for which this entry contains group statistical
information."
::= { eGrpStatisticsEntry 1 }
eGrpStatReadableFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Group counter of 'good' or readable frames. Frame
is between 64 and 1518 bytes in length and
has SFD and good FCS."
::= { eGrpStatisticsEntry 2 }
eGrpStatMcastFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Group counter of number of muliticast frames.
1st bit in highest ordered bytes of destination
address is set to 1. Broadcast packets are not
included."
::= { eGrpStatisticsEntry 3 }
eGrpStatBcastFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Group counter of number of broadcast frames. All
1s in network destination address. Multicast
packets are not included."
::= { eGrpStatisticsEntry 4 }
eGrpStatFrameTooLongs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Group counter for data frames longer than 1518
bytes, with a SFD and good FCS. "
::= { eGrpStatisticsEntry 5 }
eGrpStatRunts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Group counter for data frames with size less than
64 bytes, with no CRC or alignment errors."
::= { eGrpStatisticsEntry 6 }
eGrpStatAlignmentErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Group counter of frames which are not integer
multiples of 1 byte ."
::= { eGrpStatisticsEntry 7 }
eGrpStatFragmentErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Group counter of frames greater than 2 bytes and
less than 64 bytes, with SFD and bad FCS
(CRC error)."
::= { eGrpStatisticsEntry 8 }
eGrpStatFCSErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Group counter frames that failed Cyclic
Redundancy Check (CRC)."
::= { eGrpStatisticsEntry 9 }
eGrpStatIFGErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Group counter of Interframe Gap Errors
where time period between data frames is less than
5.5 micro seconds."
::= { eGrpStatisticsEntry 10 }
eGrpStatDataRateMismatchs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Group counter of errors where incoming data rate
is not with in the tolerance level of
10 MHZ + or - 0.01%."
::= { eGrpStatisticsEntry 11 }
eGrpStatShortEvents OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Group counter of data burst where data is less than
10 bytes in length, with no SFD."
::= { eGrpStatisticsEntry 12 }
eGrpStatCollisions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Group counter of collision flags."
::= { eGrpStatisticsEntry 13 }
eGrpStatLateCollisions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Group counter of collisions occurring after the 64
byte collision window."
::= { eGrpStatisticsEntry 14 }
eGrpStatMJLPs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Group counter of MAU jabber lockup protection
where hub repeater chip goes into lockup state."
::= { eGrpStatisticsEntry 15 }
eGrpStatAutoPartitions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Group counter of ports in group autopartitioned in
response to 31 or more continuous collisions."
::= { eGrpStatisticsEntry 16 }
eGrpStatSFDMissings OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Group counter of a burst of data greater than or
equal to 10 bytes in length with no SFD."
::= { eGrpStatisticsEntry 17 }
eGrpStatBadFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Group counter of total errored frames including
toolong, runts, misaligned, or bad FCS."
::= { eGrpStatisticsEntry 18 }
-- ePortStatistics group
ePortStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF EnetPortStatisticsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table for port specific network statistics."
::= { eStatistics 4 }
ePortStatisticsEntry OBJECT-TYPE
SYNTAX EnetPortStatisticsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Entry for individual port in table."
INDEX { ePortGrpIndex, ePortIndex }
::= { ePortStatisticsTable 1 }
EnetPortStatisticsEntry ::= SEQUENCE {
ePortGrpIndex
INTEGER,
ePortIndex
INTEGER,
ePortStatReadableFrames
Counter,
ePortStatMcastFrames
Counter,
ePortStatBcastFrames
Counter,
ePortStatFrameTooLongs
Counter,
ePortStatRunts
Counter,
ePortStatAlignmentErrors
Counter,
ePortStatFragmentErrors
Counter,
ePortStatFCSErrors