-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAtiL2-MIB
3395 lines (2841 loc) · 115 KB
/
AtiL2-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
-- Copyright 1999-2002 by Allied Telesyn International, Inc.
--
-- Name : ATIL2.MIB
-- Version : 2.3
-- Description : Private MIB for ATI Gigabit Uplink and 10/100M Switches.
-- : This MIB will be used in Windows and UNIX Environment.
-- History :
-- * 04-13-99 - Created.
-- * 04-03-02 (Praveen) - Renamed the MIB from fstswtch-mib to atil2-mib
-- * 04-17-02 (Praveen) - Added atiL2DeviceNumber. Extended atiL2deviceProductType
-- with values for AT-8326GB, AT-9410GB and AT-8350GB
-- * 04-18-02 (Praveen) - Added product OID entry for AT-8316F
-- * 04-26-02 (Praveen) - Changed atiL2DevicePortSpeed from read-write to read-only
-- * 08-23-02 (Praveen) - Added a new product specific group atiL2QOSConfigGroup,
-- applicable only to AT-8326GB, AT-9410GB and AT-8350GB.
-- Changed range of atiL2DevicePortSTPCost from 0..65535 to
-- 1..65535
AtiL2-MIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises,Counter,IpAddress,TimeTicks
FROM RFC1155-SMI
DisplayString
FROM RFC1213-MIB
TRAP-TYPE
FROM RFC-1215
OBJECT-TYPE
FROM RFC-1212;
--
-- General Definitions
--
MacAddress ::= OCTET STRING (SIZE (6)) -- a 6 octet address
BridgeId ::= OCTET STRING (SIZE (8)) -- the Bridge
-- Identifier as
-- used in the
-- Spanning Tree
-- Protocol to uniquely identify a bridge. Its first two
-- octets (in network byte order) contain a priority
-- value and its last 6 octets contain the MAC address
-- used to refer to a bridge in a unique fashion
-- (typically, the numerically smallest MAC address
-- of all ports on the bridge).
-- Several objects in this MIB module represent values of
-- timers used by the Spanning Tree Protocol. In this
-- MIB, these timers have values in units of hundreths of
-- a second (i.e. 1/100 secs).
-- These timers, when stored in a Spanning Tree Protocol's
-- BPDU, are in units of 1/256 seconds. Note, however,
-- that 802.1D-1990 specifies a settable granularity of
-- no more than 1 second for these timers. To avoid
-- ambiguity, a data type is defined here as a textual
-- convention and all representation of these timers
-- in this MIB module are defined using this data type. An
-- algorithm is also defined for converting between the
-- different units, to ensure a timer's value is not
-- distorted by multiple conversions.
-- The data type is:
Timeout ::= INTEGER -- a STP timer in units of 1/100 seconds
-- To convert a Timeout value into a value in units of
-- 1/256 seconds, the following algorithm should be used:
--
-- b = floor( (n * 256) / 100)
--
-- where:
-- floor = quotient [ignore remainder]
-- n is the value in 1/100 second units
-- b is the value in 1/256 second units
--
-- To convert the value from 1/256 second units back to
-- 1/100 seconds, the following algorithm should be used:
--
-- n = ceiling( (b * 100) / 256)
--
-- where:
-- ceiling = quotient [if remainder is 0], or
-- quotient + 1 [if remainder is non-zero]
-- n is the value in 1/100 second units
-- b is the value in 1/256 second units
--
-- Note: it is important that the arithmetic operations are
-- done in the order specified (i.e., multiply first, divide
-- second).
-- OID tree for Allied Telesyn Products and MIBs
alliedTelesyn OBJECT IDENTIFIER ::= { enterprises 207 }
atiProduct OBJECT IDENTIFIER ::= { alliedTelesyn 1 }
swhub OBJECT IDENTIFIER ::= { atiProduct 4 }
at-8324 OBJECT IDENTIFIER ::= { swhub 37 }
at-8124XL-V2 OBJECT IDENTIFIER ::= { swhub 52 }
at-8326GB OBJECT IDENTIFIER ::= { swhub 72 }
at-9410GB OBJECT IDENTIFIER ::= { swhub 73 }
at-8350GB OBJECT IDENTIFIER ::= { swhub 74 }
at-8316F OBJECT IDENTIFIER ::= { swhub 77 }
mibObject OBJECT IDENTIFIER ::= { alliedTelesyn 8 }
atiL2Mib OBJECT IDENTIFIER
-- LAST-UPDATED "9903200000Z"
-- ORGANIZATION "Allied Telesyn International."
-- CONTACT-INFO
-- "Allied Telesyn International Customer Service
--
-- Postal: 960 Stewart Drive,Suite B
-- Sunnyvale, CA 94086
-- USA
--
-- Email: [email protected]
--
-- DESCRIPTION
-- "Private MIB for ATI Gigabit Uplink and 10/100M
-- Switches"
::= { mibObject 33}
-- Stack Wide Generic Groups
atiL2GlobalGroup OBJECT IDENTIFIER ::= {atiL2Mib 1 }
atiL2IpGroup OBJECT IDENTIFIER ::= {atiL2Mib 2}
atiL2NMGroup OBJECT IDENTIFIER ::= {atiL2Mib 3}
atiL2DHCPGroup OBJECT IDENTIFIER ::= {atiL2Mib 4}
-- Module Wide Generic Groups
atiL2DeviceGroup OBJECT IDENTIFIER ::= {atiL2Mib 5}
atiL2EthernetStatsGroup OBJECT IDENTIFIER ::= {atiL2Mib 6}
-- Port on a Module Groups
atiL2DevicePortConfigGroup OBJECT IDENTIFIER ::= {atiL2Mib 7}
atiL2VlanConfigGroup OBJECT IDENTIFIER ::= {atiL2Mib 8}
atiL2IfExt OBJECT IDENTIFIER ::= { atiL2Mib 9}
atiL2BridgeMib OBJECT IDENTIFIER ::= { atiL2Mib 10}
atiL2BrBase OBJECT IDENTIFIER ::= { atiL2BridgeMib 1 }
atiL2BrStp OBJECT IDENTIFIER ::= { atiL2BridgeMib 2 }
atiL2BrTp OBJECT IDENTIFIER ::= { atiL2BridgeMib 3 }
atiL2TrapAttrGroup OBJECT IDENTIFIER ::= { atiL2Mib 11}
-- Product specific groups
-- Applicable only to at-8326GB, at-9410GB and at-8350GB
atiL2QOSConfigGroup OBJECT IDENTIFIER ::= { atiL2Mib 12}
--
-- atiL2GlobalGroup
--
atiL2SwProduct OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Identifies the software product the device is
running."
::= { atiL2GlobalGroup 1 }
atiL2SwVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
" Identifies the version number of the present
release."
::= { atiL2GlobalGroup 2 }
atiL2Reset OBJECT-TYPE
SYNTAX INTEGER {
switch-no-reset (1),
switch-reset (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
" Object use to reset all the Modules globally."
::= { atiL2GlobalGroup 3 }
atiL2MirroringSourceModule OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
" This is the mirror source module number. If the
atiL2EthConfigMirrorState is Enabled then the mirror
source module/port data gets routed to the mirror
destination module/port. Both transmitted and
recieved source activity is mirrored to the destination.
This arrangement is to put an RMON Probe on the
destination port to probe the traffic on the Source port.
This object will return a '0' if the MirrorState is not
enabled."
::= { atiL2GlobalGroup 4 }
atiL2MirroringSourcePort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
" This is the Source port number for which there is
another mirror port.If the atiL2EthConfigMirrorState is
Enabled then the mirror portgets routed with all the
packets going in and out of Source port. This
arrangement is to put an RMON Probe on mirrored port to
Probe the traffic on the Source port. One of the port is
dedicated to this so that for any port as source port,
this dedicated port can be a mirrored port. This object
will return a '0' if the MirrorState is not enabled."
::= { atiL2GlobalGroup 5 }
atiL2MirroringDestinationModule OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
" This is the mirror destination module number. If the
atiL2EthConfigMirrorState is Enabled then the mirror
source module/port data gets routed to the mirror
destination module/port. Both transmitted and recieved
source activity is mirrored to the destination. This
arrangement is to put an RMON Probe on the destination
port to probe the traffic on the Source port. This
object will return a '0' if the MirrorState is not
enabled."
::= { atiL2GlobalGroup 6 }
atiL2MirroringDestinationPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
" This is the Destination port number for which there is
another mirror port.If the atiL2EthConfigMirrorState is
Enabled then,the mirror portgets routed with all the
packets going in and out of Destination port. This
arrangement is to put an RMON Probe on mirrored port to
Probe the traffic on the Destination port. One of the
port is dedicated to this so that for any port as
destination port, this dedicated port can be a mirrored
port. This object will return a '0' if the MirrorState
is not enabled."
::= { atiL2GlobalGroup 7 }
atiL2MirrorState OBJECT-TYPE
SYNTAX INTEGER {
receive-and-transmit(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
" if the state of Mirroring is enabled by selecting one
of the two values , then the Mirroring explained above
works. If disabled, port operation works normally. No
Traffic gets routed from MirroringSourcePort to
Destination Mirrored Port."
::= { atiL2GlobalGroup 8 }
atiL2IGMPState OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This attribute allows an administrative request to
configure IGMP"
::= { atiL2GlobalGroup 9 }
atiL2DeviceNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of devices in the stack."
::= { atiL2GlobalGroup 10 }
--
-- atiL2IpGroup
--
-- The Ip Sys group contains IP Address which is current and configured
-- IP address which gets effective when reset. Also, subnet mask and
-- Default Gateway address.
atiL2CurrentIpAddress OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
" The Current IP address is the one which is currently
used and is obtained dynamically through one of the
protocols interaction.( DHCP or Bootp.) This address
is NULL if the Address is Statically configured."
::= { atiL2IpGroup 1 }
atiL2ConfiguredIpAddress OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
" The Configured IP address of the device. This is
the address configured through Network or Local Omega. "
::= { atiL2IpGroup 2 }
atiL2ConfiguredSubnetMask OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
" The Configured Subnet Mask of the device."
::= { atiL2IpGroup 3 }
atiL2ConfiguredRouter OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
" The Configured Gateway/Router address of the device"
::= { atiL2IpGroup 4 }
atiL2IPAddressStatus OBJECT-TYPE
SYNTAX INTEGER {
from-dhcp(1),
from-bootp(2),
from-psuedoip(3),
from-Omega(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
" The IP Address can be obtained/configured by any of
the above different ways. This object specifies how
IP address currently on the switch Box, was
configured/obtained."
::= { atiL2IpGroup 5 }
atiL2DNServer OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
" The Configured DNS Server address of the device"
::= { atiL2IpGroup 6 }
atiL2DefaultDomainName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
" This Object defines the Default Domain where this
switch can be belong to."
::= { atiL2IpGroup 7 }
--
-- atiL2NMGroup (SNMP NetManagemnt related MIB object)
--
atiL2NwMgrTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtiL2NwMgrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of SNMP Trap Manager stations Entries.
The number of entries is given by the
switchNwMgrTotal mib object."
::= { atiL2NMGroup 1 }
atiL2NwMgrEntry OBJECT-TYPE
SYNTAX AtiL2NwMgrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Trap receipt Manager Entry containing ipaddress of
the configured NMS's to which Traps are sent."
INDEX { atiL2NwMgrIndex }
::= { atiL2NwMgrTable 1 }
AtiL2NwMgrEntry ::=
SEQUENCE {
atiL2NwMgrIndex INTEGER,
atiL2NwMgrIpAddr IpAddress
}
atiL2NwMgrIndex OBJECT-TYPE
SYNTAX INTEGER (1..4)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Index of the Managers Ip address."
::= { atiL2NwMgrEntry 1 }
atiL2NwMgrIpAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP Address of the NMS host configured."
::= { atiL2NwMgrEntry 2 }
--
-- atiL2DHCPGroup
--
atiL2DHCPSysGroup OBJECT IDENTIFIER ::= {atiL2DHCPGroup 1 }
atiL2DHCPTimerGroup OBJECT IDENTIFIER ::= {atiL2DHCPGroup 2 }
--atiL2DHCPCurrentDHCPServerAddress OBJECT-TYPE
-- SYNTAX IpAddress
-- ACCESS read-only
-- STATUS mandatory
-- DESCRIPTION
-- "The IP address of the DHCP server selected by the end of
-- DHCP Protocols 'REQUEST STATE' .DHCP client selects the
-- server from the responses ( one or more ) in the
-- SELECTSTATE and sends out a DHCPREQUEST to confirm the
-- DHCP server selected."
-- ::= {atiL2DHCPSysGroup 1}
atiL2DHCPCurrentDHCPClientAddress OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current IP address of the client. To start with,it might
be null. This is filled by the server when sending a
DHCPOFFER and the client uses the most comfortable offer
from offers sent by different DHCP servers. A DHCPREQUEST
packet is sent with the Client address agreed upon to the
selected server ( Broadcast). Server Acks back this packet
which is where Client/Server moves to the Bound state. Once
reached into Bound state, the client address is made the
official address on the client."
::= {atiL2DHCPSysGroup 1}
atiL2DHCPSubnetMask OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"When the client/server reaches the BOUND state, this is
one of the parameters set by the server."
::= {atiL2DHCPSysGroup 2}
atiL2DHCPCurrentRelayAgentAddress OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address of the DHCP relay Agent on the same subnet.
Normally there will be no DHCP server on each of the
subnet and this Relay Agent will act in sending server
across the subnets. There might not be any relay agent.
This depends on the network Toplogy like where is the
DHCP server and DHCP client."
::= {atiL2DHCPSysGroup 3}
atiL2DHCPNextDHCPServerAddress OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address of the next DHCP server to be used during
bootstrap. This address is sent by the DHCP server in
the messages DHCPOFFER, DHCPACK,DHCPNACK."
::= {atiL2DHCPSysGroup 4}
atiL2DHCPLeaseTimer OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"When the client/server reaches the BOUND state, this is
one of the parameters set by the server. The lease time
period in seconds for the DHCP client for using IP address
on lease from the server. At the end of 50% of this timer
a renewal request is sent by the client . This is the next
Object atiL2DHCPReacquisitionTimer."
::= {atiL2DHCPTimerGroup 1}
atiL2DHCPReacquisitionTimer OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"When the client/server reaches the BOUND state, this is
one of the parameters set by the server.
Mentioned in RFC2131 4.4.5 as T1, this renewal time
period in secs for the DHCP client is for using IP address
on lease from the server Once the Reacquisition Timer
period in secs after the lease period is reached,
the client sends a DHCPREQUEST to the DHCP server
requesting for renewal of the lease. Default would be 50%
of the Lease timer which is represeneted by the above
object. The client moves from BOUND to RENEW state once
the DHCPREQUEST is sent after time T1 secs is passed from
the start of to release time. T1 is always less than T2
( see below for 'T2') which is less than the lease Timer
period."
::= {atiL2DHCPTimerGroup 2}
atiL2DHCPExpirationTimer OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"When the client/server reaches the BOUND state, this is
one of the parameters set by the server.
Mentioned in RFC2131 4.4.5 as T2,this Expiration time
period in secs is the time period in secs during which
DHCP has gone through the BOUND->RENEWAL state. After T1
secs and when the state machine reaches T2 secs,
( T1 < T2 < lease period), DHCP client sends another
DHCPREQUEST to the server asking the server to renew the
lease for the IP parameters. By default it would be 87.5%
of the Lease timer .If there is DHCPACK then the DHCP
client moves from REBIND to BOUND. Else it moves to INIT
state where it starts all over again sending a request for
DHCPDISCOVER."
::= {atiL2DHCPTimerGroup 3 }
--
-- atiL2DeviceGroup
--
atiL2deviceTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtiL2deviceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table contains the mapping of all devices
in the chassis."
::= { atiL2DeviceGroup 1}
atiL2deviceEntry OBJECT-TYPE
SYNTAX AtiL2deviceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The device entry in the DeviceTable."
INDEX { atiL2deviceIndex }
::= { atiL2deviceTable 1 }
AtiL2deviceEntry ::=
SEQUENCE {
atiL2deviceIndex
INTEGER,
atiL2deviceDescr
DisplayString,
atiL2deviceProductType
INTEGER,
atiL2devicePortCount
INTEGER,
atiL2deviceSecurityConfig
INTEGER,
atiL2deviceSecurityAction
INTEGER,
atiL2deviceDebugAvailableBytes
INTEGER,
atiL2deviceMDA1Type
INTEGER,
atiL2deviceMDA2Type
INTEGER,
atiL2deviceReset
INTEGER
}
atiL2deviceIndex OBJECT-TYPE
SYNTAX INTEGER(1..8)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Slot number in the chassis where the device is
installed."
::= { atiL2deviceEntry 2 }
atiL2deviceDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A textual description of the device."
::= { atiL2deviceEntry 3 }
atiL2deviceProductType OBJECT-TYPE
SYNTAX INTEGER {
at-8324(1),
at-8316F(2),
at-8124XL-V2(3),
at-8326GB(4),
at-9410GB(5),
at-8350GB(6),
other(20)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object will return Product Type."
::= { atiL2deviceEntry 4 }
atiL2devicePortCount OBJECT-TYPE
SYNTAX INTEGER (1..1024)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ports contained within the device.
Valid range is 1-32. Within each device, the
ports are uniquely numbered in the range from
1 to maxportCapacity."
::= { atiL2deviceEntry 5}
atiL2deviceSecurityConfig OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
enabled-with-learning-locked(2),
limited-enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Security feature configuration Object.The Security
disable would let the device carry on the
learn-new-address-as-it-comes-in mode as usual.When
security is enabled-with-learning-locked, the learning
of new address is stopped and the addresses locked in
the device is used as the security Database. If an
address comes in which is not present in the Device
Security Database, then any of the atiL2SecurityAction
Configured is triggered. When limited-enabled is
selected, a per-port atiL2PortSecurityNumberOfAddresses
specify the max number of MACs to be learned."
::= { atiL2deviceEntry 6 }
atiL2deviceSecurityAction OBJECT-TYPE
SYNTAX INTEGER {
send-trap-only(1),
disable-port-only(2),
disable-port-and-send-trap(3),
do-nothing(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Security Action to be carried when the
atiL2SecurityConfig is enabled-with-learning-locked
or limted-enabled."
::= { atiL2deviceEntry 7 }
atiL2deviceDebugAvailableBytes OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is strictly for Debug reason and this object
should not be believed as the correct number."
::= { atiL2deviceEntry 8}
atiL2deviceMDA1Type OBJECT-TYPE
SYNTAX INTEGER {
ten-100rj45-mii(1),
hundredfiber-mii(2),
oneGb-rj45(3),
oneGb-Fiber(4),
none(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object returns the MDA type of the Uplink
port. The values of 1 and 2 are the only one
present in 81XX. 82XX has all the values
supported. This object returns the MDA type of
the Uplink Port named 'A'. It returns 'none'
if a 'A' MDA slot is not installed."
::= { atiL2deviceEntry 9 }
atiL2deviceMDA2Type OBJECT-TYPE
SYNTAX INTEGER {
ten-100rj45-mii(1),
hundredfiber-mii(2),
oneGb-rj45(3),
oneGb-Fiber(4),
none(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This Object is supported in 81XX 82XX product
lines. The values of 1 and 2 are the only one
present in 81XX. 82XX has all the values
supported. This object returns the MDA type of
the Uplink Port named 'B'. It returns 'none'
if a 'B' MDA slot is not installed."
::= { atiL2deviceEntry 10 }
atiL2deviceReset OBJECT-TYPE
SYNTAX INTEGER {
switch-no-reset (1),
switch-reset (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this object to 'switch-reset' will
cause the switch to perform a hardware reset
within approximately 4-6 seconds. Setting this
object to 'switch-no-reset will have no effect.
The value 'no-reset' will be returned whenever
this object is retrieved."
::= { atiL2deviceEntry 11 }
--
-- atiL2EthernetStatsGroup (Ethernet Monitor Group)
--
-- The Monitor group contains statistics measured
-- per module identified by the module Id.
-- These statistics take the form of free running counters that start
-- from zero.
atiL2EthMonStatsGroup OBJECT IDENTIFIER ::= { atiL2EthernetStatsGroup 1}
atiL2EthErrStatsGroup OBJECT IDENTIFIER ::= { atiL2EthernetStatsGroup 2}
atiL2EthMonStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtiL2EthMonStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of statistics entries."
::= { atiL2EthMonStatsGroup 1 }
atiL2EthMonStatsEntry OBJECT-TYPE
SYNTAX AtiL2EthMonStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A collection of statistics kept for a particular port."
INDEX {atiL2EthMonModuleId }
::= { atiL2EthMonStatsTable 1 }
AtiL2EthMonStatsEntry ::=
SEQUENCE {
atiL2EthMonModuleId
INTEGER,
atiL2EthMonRxGoodFrames
Counter,
atiL2EthMonTxGoodFrames
Counter,
atiL2EthMonTxTotalBytes
Counter ,
atiL2EthMonTxDeferred
Counter ,
atiL2EthMonTxCollisions
Counter,
atiL2EthMonTxBroadcastFrames
Counter,
atiL2EthMonTxMulticastFrames
Counter,
atiL2EthMonRxOverruns
Counter
}
atiL2EthMonModuleId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This Object Identifies the Module Id for which the
Statistics is collected."
::= { atiL2EthMonStatsEntry 1 }
atiL2EthMonRxGoodFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of Good Frames received on this
module."
::= { atiL2EthMonStatsEntry 2 }
atiL2EthMonTxGoodFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of Good Frames Transmitted by this
module."
::= { atiL2EthMonStatsEntry 3 }
atiL2EthMonTxTotalBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of Bytes transmitted from this
module."
::= { atiL2EthMonStatsEntry 4 }
atiL2EthMonTxDeferred OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This is the count of first time Transmission attempt
which failed on an interface due to medium being busy."
::= { atiL2EthMonStatsEntry 5 }
atiL2EthMonTxCollisions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of collisions while switching on an
interface."
::= { atiL2EthMonStatsEntry 6 }
atiL2EthMonTxBroadcastFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of Transmit Broadcast Frames while
switching on an interface."
::= { atiL2EthMonStatsEntry 7 }
atiL2EthMonTxMulticastFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of Transmit Multicast while switching
on an interface."
::= { atiL2EthMonStatsEntry 8 }
atiL2EthMonRxOverruns OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of Recieved Overrun Frames while
switching on an interface."
::= { atiL2EthMonStatsEntry 9 }
--
-- The Following is a Per Port MonStats Table.
--
atiL2EthPortMonStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtiL2EthPortMonStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of statistics entries per Port on a Module."
::= { atiL2EthMonStatsGroup 2 }
atiL2EthPortMonStatsEntry OBJECT-TYPE
SYNTAX AtiL2EthPortMonStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A collection of statistics kept for a particular port."
INDEX {atiL2EthPortMonModuleId,atiL2EthPortMonPortId}
::= { atiL2EthPortMonStatsTable 1 }
AtiL2EthPortMonStatsEntry ::=
SEQUENCE {
atiL2EthPortMonModuleId
INTEGER,
atiL2EthPortMonPortId
INTEGER,
atiL2EthPortMonRxGoodFrames
Counter,
atiL2EthPortMonTxGoodFrames
Counter,
atiL2EthPortMonTxTotalBytes
Counter ,
atiL2EthPortMonTxDeferred
Counter ,
atiL2EthPortMonTxCollisions
Counter,
atiL2EthPortMonTxBroadcastFrames
Counter,
atiL2EthPortMonTxMulticastFrames
Counter,
atiL2EthPortMonRxOverruns
Counter
}
atiL2EthPortMonModuleId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This Object Identifies the Module Id for which the
Statistics is collected."
::= { atiL2EthPortMonStatsEntry 1 }
atiL2EthPortMonPortId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This Object Identifies the Port on the Module
recognised by EthMonPortModuleId for which the
Statistics is collected."
::= { atiL2EthPortMonStatsEntry 2 }
atiL2EthPortMonRxGoodFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of Good Frames received on this module."