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
|
-- ZyXEL Communications Corporation
-- Private Enterprise MIB definition
-- $Log: zyxel-AS.mib $
-- Revision 1.2 2006/06/08 09:18:11 niceguy
-- Revision 1.1 2005/11/23 12:47:58 niceguy
-- Initial revision
-- Revision 1.1 2005/08/18 13:30:38 Jeff
-- Initial revision
-- Revision 1.12 2004/06/08 10:12:38 jenny
-- Revision 1.11 2004/05/05 08:33:35 jennyhsu
-- Revision 1.10 2004/01/29 03:41:26 jennyhsu
-- Define DHCP option 82 setting
-- Revision 1.9 2003/09/19 04:57:58 jennyhsu
-- Add thermalSensorFailure trap. Change the syntax of
-- asDhcpRelayOption82Info to be DisplayString
-- Revision 1.8 2003/09/10 12:26:16 jennyhsu
-- add DHCP setup
-- Revision 1.7 2003/06/06 09:15:18 jennyhsu
-- Revise the descriptions of accessSwitchDSLConfTarget
-- Revision 1.6 2003/06/06 01:39:28 jennyhsu
-- Add objects for DSL configuration in batch mode
-- Revision 1.5 2003/05/27 08:12:45 jennyhsu
-- Add asPacketForwardingTable
-- Revision 1.4 2003/03/21 06:57:38 jennyhsu
-- remove the mask of accessSwitchSystemTemperature
-- Revision 1.3 2002/12/03 07:49:00 jennyhsu
-- Add accessSwitchSystemCurrentStatus into the variable binding of
-- temp, fan and voltage trap
-- Revision 1.2 2002/11/12 07:48:00 jennyhsu
-- Revision 1.1 2002/11/12 07:40:49 jennyhsu
-- Initial revision
ZYXEL-AS-MIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises, IpAddress FROM RFC1155-SMI
OBJECT-TYPE FROM RFC-1212
DisplayString, ifIndex, PhysAddress
FROM RFC1213-MIB
TRAP-TYPE FROM RFC-1215
PortList FROM Q-BRIDGE-MIB
RowStatus FROM SNMPv2-TC
MacAddress, Timeout, BridgeId
FROM BRIDGE-MIB;
zyxel OBJECT IDENTIFIER ::= { enterprises 890 }
products OBJECT IDENTIFIER ::= { zyxel 1 }
accessSwitch OBJECT IDENTIFIER ::= { products 5 }
-- accessSwitch generic managed objects
accessSwitchCommon OBJECT IDENTIFIER ::= { accessSwitch 1 }
accessSwitchMgnt OBJECT IDENTIFIER ::= { accessSwitchCommon 1 }
accessSwitchStats OBJECT IDENTIFIER ::= { accessSwitchCommon 2 }
asMacStats OBJECT IDENTIFIER ::= { accessSwitchStats 1 }
-- accessSwitchMgnt subtree
-- System Status
accessSwitchSystemCurrentStatus OBJECT-TYPE
SYNTAX INTEGER(0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "This variable indicates the status of the system.
The sysCurrentStatus is a bit map represented
as a sum, therefore, it can represent multiple defects
simultaneously. The sysNoDefect should be set if and only if
no other flag is set.
The various bit positions are:
1 sysNoDefect
2 sysOverHeat
3 sysFanRpmLow
4 sysVoltageLow
5 sysThermalSensorFailure"
::= { accessSwitchMgnt 1 }
-- System traps related managed objects
accessSwitchProblemCause OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The variable is the description of sytsem problem."
::= { accessSwitchMgnt 2 }
-- For AES-100, IES-1000 (SAM1008, AAM1008) only
accessSwitchSystemTemperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The variable is the current temperature in Celsius of the system."
::= { accessSwitchMgnt 3 }
-- Fan rpm table
accessSwitchFanRpmTable OBJECT-TYPE
SYNTAX SEQUENCE OF AccessSwitchFanRpmEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table that contains rpm information about the fans."
::= { accessSwitchMgnt 4 }
accessSwitchFanRpmEntry OBJECT-TYPE
SYNTAX AccessSwitchFanRpmEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of rpm information for each fan."
INDEX { accessSwitchFanRpmIndex }
::= { accessSwitchFanRpmTable 1 }
AccessSwitchFanRpmEntry ::=
SEQUENCE {
accessSwitchFanRpmIndex INTEGER,
accessSwitchFanRpmCurValue INTEGER,
accessSwitchFanRpmMaxValue INTEGER,
accessSwitchFanRpmMinValue INTEGER,
accessSwitchFanRpmLowThresh INTEGER,
accessSwitchFanRpmDescr DisplayString
}
accessSwitchFanRpmIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The identity of the fan."
::= { accessSwitchFanRpmEntry 1 }
accessSwitchFanRpmCurValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current rpm of the fan."
::= { accessSwitchFanRpmEntry 2 }
accessSwitchFanRpmMaxValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum rpm ever performed by the fan."
::= { accessSwitchFanRpmEntry 3 }
accessSwitchFanRpmMinValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minimum rpm ever performed by the fan."
::= { accessSwitchFanRpmEntry 4 }
accessSwitchFanRpmLowThresh OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The low threshold of the rpm of the fan. If the current rpm is less than
the threshold, the device will initiate the fanRpmLow trap."
::= { accessSwitchFanRpmEntry 5 }
accessSwitchFanRpmDescr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The description of the fan (e.g. location, function, etc.)."
::= { accessSwitchFanRpmEntry 6 }
-- Voltage table
accessSwitchVoltageTable OBJECT-TYPE
SYNTAX SEQUENCE OF AccessSwitchVoltageEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table that contains voltage information about the system."
::= { accessSwitchMgnt 5 }
accessSwitchVoltageEntry OBJECT-TYPE
SYNTAX AccessSwitchVoltageEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of voltage information for each sensor."
INDEX { accessSwitchVoltageIndex }
::= { accessSwitchVoltageTable 1 }
AccessSwitchVoltageEntry ::=
SEQUENCE {
accessSwitchVoltageIndex INTEGER,
accessSwitchVoltageCurValue INTEGER,
accessSwitchVoltageMaxValue INTEGER,
accessSwitchVoltageMinValue INTEGER,
accessSwitchVoltageNominalValue INTEGER,
accessSwitchVoltageLowThresh INTEGER,
accessSwitchVoltageDescr DisplayString
}
accessSwitchVoltageIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The identity of the sensor."
::= { accessSwitchVoltageEntry 1 }
accessSwitchVoltageCurValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current voltage detected by the sensor (in milli-voltage)."
::= { accessSwitchVoltageEntry 2 }
accessSwitchVoltageMaxValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum voltage ever detected by the sensor (in milli-voltage)."
::= { accessSwitchVoltageEntry 3 }
accessSwitchVoltageMinValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minimum voltage ever detected by the sensor (in milli-voltage)."
::= { accessSwitchVoltageEntry 4 }
accessSwitchVoltageNominalValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The nominal voltage which the power should supply (in milli-voltage)."
::= { accessSwitchVoltageEntry 5 }
accessSwitchVoltageLowThresh OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The low threshold of the voltage. If the current voltage is less than
the threshold, the device will initiate the voltageLow trap."
::= { accessSwitchVoltageEntry 6 }
accessSwitchVoltageDescr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The description of the voltage (e.g. location, nominal value, etc.)."
::= { accessSwitchVoltageEntry 7 }
-- System temperature table
accessSwitchSysTempTable OBJECT-TYPE
SYNTAX SEQUENCE OF AccessSwitchSysTempEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table that contains temperature information about system."
::= { accessSwitchMgnt 6 }
accessSwitchSysTempEntry OBJECT-TYPE
SYNTAX AccessSwitchSysTempEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of temperature information for each sensor."
INDEX { accessSwitchSysTempIndex }
::= { accessSwitchSysTempTable 1 }
AccessSwitchSysTempEntry ::=
SEQUENCE {
accessSwitchSysTempIndex INTEGER,
accessSwitchSysTempCurValue INTEGER,
accessSwitchSysTempMaxValue INTEGER,
accessSwitchSysTempMinValue INTEGER,
accessSwitchSysTempHighThresh INTEGER,
accessSwitchSysTempDescr DisplayString
}
accessSwitchSysTempIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The identity of the sensor."
::= { accessSwitchSysTempEntry 1 }
accessSwitchSysTempCurValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current temperature detected in Celsius by the sensor."
::= { accessSwitchSysTempEntry 2 }
accessSwitchSysTempMaxValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum temperature ever detected in Celsius by the sensor."
::= { accessSwitchSysTempEntry 3 }
accessSwitchSysTempMinValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minimum temperature ever detected in Celsius by the sensor."
::= { accessSwitchSysTempEntry 4 }
accessSwitchSysTempHighThresh OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The high threshold of the temperature in Celsius. If the current temperature
is higher than the threshold, the device will initiate the overheat trap."
::= { accessSwitchSysTempEntry 5 }
accessSwitchSysTempDescr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The description of the temperature sensor (e.g. location, function, etc.)."
::= { accessSwitchSysTempEntry 6 }
accessSwitchMaintenance OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The managed object is for system maintenance. When the EMS
wants to trigger the system maitenance operation, the EMS
shall send SNMP-SET message to set the corresponding bit value
to be 1. The various bit positions are:
BIT 1: config save
BIT 2: reset
BIT 3: local loopback test
BIT 4: remote loopback test"
::= { accessSwitchMgnt 7 }
accessSwitchMaintenancePort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The port which the maintenance operation should be performed on.
The value of 0 means the maintenance should be performed on the system."
::= { accessSwitchMgnt 8 }
accessSwitchMaxNumOfStaticVlans OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum number of static VLANs which the system supports"
::= { accessSwitchMgnt 9 }
-- Chassis information
ASSlotNum ::= INTEGER {
slot1(1),
slot2(2)
}
ASModuleType ::= INTEGER {
aes-100(1),
aes-100-1(2),
aam1008-61(3),
aam1008-63(4),
sam1008(5)
}
acccessSwitchChassisId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The chassis Id of the module"
::= { accessSwitchMgnt 10 }
accessSwitchSlotId OBJECT-TYPE
SYNTAX ASSlotNum
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The slot Id of the module"
::= { accessSwitchMgnt 11 }
accessSwitchModuleType OBJECT-TYPE
SYNTAX ASModuleType
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of the module"
::= { accessSwitchMgnt 12 }
accessSwitchFWVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The firmware version of the access switch."
::= { accessSwitchMgnt 13 }
accessSwitchDriverVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The driver version of the access port in this access switch"
::= { accessSwitchMgnt 14 }
accessSwitchModemCodeVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The modem code version of the access port in this access switch"
::= { accessSwitchMgnt 15 }
-- variables for provisioning DSL line in batch mode
accessSwitchDSLConfOps OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The managed object is for xDSL line configuration. When the EMS
wants to issue the desired operation, the EMS
shall send SNMP-SET message to set the corresponding bit value
to be 1. The various bit positions are:
BIT 1: enable port
BIT 2: disable port
BIT 3: set DSL mode
BIT 4: set profile"
::= { accessSwitchMgnt 16 }
accessSwitchDSLConfTarget OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The managed object is used for identify the target on which
the line configuration should be performed. The target is encoded
as:
Byte 1~4: reserved
Byte 5~7: each octet specifies a set of eight ports, with the first
octet specifying ports 1 through 8, etc.
Byte 8~10: reserved"
::= { accessSwitchMgnt 17 }
accessSwitchDSLConfProfileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..31))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The DSL profile name"
::= { accessSwitchMgnt 18 }
accessSwitchDSLConfMode OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The DSL mode. The semantic for each bit is:
Bit 1: ADSL, G.lite
Bit 2: ADSL, G.dmt
Bit 3: ADSL, T1.413
Bit 4: ADSL, Auto"
::= { accessSwitchMgnt 19 }
-- Packet Forwarding Table
asPacketForwardingTable OBJECT-TYPE
SYNTAX SEQUENCE OF AsPacketForwardingEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table includes the configuration of packet forwarding."
::= { accessSwitchMgnt 20 }
asPacketForwardingEntry OBJECT-TYPE
SYNTAX AsPacketForwardingEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in asPacketForwardingTable."
INDEX { ifIndex }
::= { asPacketForwardingTable 1 }
AsPacketForwardingEntry ::=
SEQUENCE {
asPacketForwardingPortList PortList
}
asPacketForwardingPortList OBJECT-TYPE
SYNTAX PortList
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The list defines the ports to which the packets
will be forwarded."
::= { asPacketForwardingEntry 1 }
-- DHCP Setup
asDhcpRelayEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable/disable DHCP relay function."
::= { accessSwitchMgnt 21 }
asDhcpRelayOption82Enable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable/disable the relay agent information option."
::= { accessSwitchMgnt 22 }
asDhcpRelayOption82Info OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"User specific relay agent information."
::= { accessSwitchMgnt 23 }
asMaxNumOfDhcpServers OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum number of DHCP servers."
::= { accessSwitchMgnt 24 }
asDhcpServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF AsDhcpServerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table that contains DHCP server information."
::= { accessSwitchMgnt 25 }
asDhcpServerEntry OBJECT-TYPE
SYNTAX AsDhcpServerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The entry of DHCP server table."
INDEX { asDhcpServerIp }
::= { asDhcpServerTable 1 }
AsDhcpServerEntry ::=
SEQUENCE {
asDhcpServerIp IpAddress,
asDhcpServerRowStatus RowStatus
}
asDhcpServerIp OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address of the DHCP server."
::= { asDhcpServerEntry 1 }
asDhcpServerRowStatus OBJECT-TYPE
SYNTAX RowStatus
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The row status of the DHCP server entry."
::= { asDhcpServerEntry 2 }
-- SNMP setup, Trap Destination
-- asMaxNumberOfTrapDestinations OBJECT-TYPE
-- SYNTAX INTEGER
-- ACCESS read-only
-- STATUS mandatory
-- DESCRIPTION
-- "The max number of the trap destinations."
-- ::= { accessSwitchMgnt 26 }
--
-- asSNMPTrapDestTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF AsSNMPTrapDestEntry
-- ACCESS not-accessible
-- STATUS mandatory
-- DESCRIPTION
-- "A table that contains SNMP trap destination information."
-- ::= { accessSwitchMgnt 27 }
-- asSNMPTrapDestEntry OBJECT-TYPE
-- SYNTAX AsSNMPTrapDestEntry
-- ACCESS not-accessible
-- STATUS mandatory
-- DESCRIPTION
-- "The entry of SNMP trap destination table."
-- INDEX { asTrapDestIp, asTrapDestPort }
-- ::= { asSNMPTrapDestTable 1 }
-- AsSNMPTrapDestEntry ::=
-- SEQUENCE {
-- asTrapDestIp IpAddress,
-- asTrapDestPort INTEGER,
-- asTrapDestRowStatus RowStatus
-- }
-- asTrapDestIp OBJECT-TYPE
-- SYNTAX IpAddress
-- ACCESS read-write
-- STATUS mandatory
-- DESCRIPTION
-- "The IP address of the trap destination."
-- ::= { asSNMPTrapDestEntry 1 }
-- asTrapDestPort OBJECT-TYPE
-- SYNTAX INTEGER
-- ACCESS read-write
-- STATUS mandatory
-- DESCRIPTION
-- "The UDP port of the trap destination."
-- ::= { asSNMPTrapDestEntry 2 }
-- asTrapDestRowStatus OBJECT-TYPE
-- SYNTAX RowStatus
-- ACCESS read-write
-- STATUS mandatory
-- DESCRIPTION
-- "The row status of the trap destination entry."
-- ::= { asSNMPTrapDestEntry 3}
-- RADIUS Server setup
asMaxNumberOfRadiusServers OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The max number of the RADIUS Servers."
::= { accessSwitchMgnt 28 }
asRadiusServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF AsRadiusServerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table that contains Radius Server information."
::= { accessSwitchMgnt 29 }
asRadiusServerEntry OBJECT-TYPE
SYNTAX AsRadiusServerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The entry of Radius Server table."
INDEX { asRadiusServerIndex }
::= { asRadiusServerTable 1 }
AsRadiusServerEntry ::=
SEQUENCE {
asRadiusServerIndex INTEGER,
asRadiusServerIp IpAddress,
asRadiusServerPort INTEGER,
asRadiusSharedSecret DisplayString,
asRadiusServerRowStatus RowStatus
}
asRadiusServerIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The identity of the RADIUS server."
::= { asRadiusServerEntry 1 }
asRadiusServerIp OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP address of the Radius Server."
::= { asRadiusServerEntry 2 }
asRadiusServerPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The UDP port of the Radius Server."
::= { asRadiusServerEntry 3 }
asRadiusSharedSecret OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The shared secret of the Radius Server."
::= { asRadiusServerEntry 4 }
asRadiusServerRowStatus OBJECT-TYPE
SYNTAX RowStatus
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The row status of the Radius Server entry."
::= { asRadiusServerEntry 5 }
-- 802.1x option
asDot1xEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable/disable the 802.1x function."
::= { accessSwitchMgnt 30 }
-- 802.1x Table
asDot1xPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF AsDot1xPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table includes the configuration of 802.1x."
::= { accessSwitchMgnt 31 }
asDot1xPortEntry OBJECT-TYPE
SYNTAX AsDot1xPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in asDot1xPortTable."
INDEX { ifIndex }
::= { asDot1xPortTable 1 }
AsDot1xPortEntry ::=
SEQUENCE {
asDot1xPortEnable INTEGER,
asDot1xPortControl INTEGER,
asDot1xPortReAuthEnable INTEGER,
asDot1xPortReAuthPeriod INTEGER
}
asDot1xPortEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The option defines if the port enables 802.1x
settings."
::= { asDot1xPortEntry 1 }
asDot1xPortControl OBJECT-TYPE
SYNTAX INTEGER {
auto(1),
forceAuth(2),
forceUnAuth(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The configuration defines the 802.1x port control
type."
::= { asDot1xPortEntry 2 }
asDot1xPortReAuthEnable OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The option defines if the port enables 802.1x
re-authentication."
::= { asDot1xPortEntry 3 }
asDot1xPortReAuthPeriod OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The configuration defines the 802.1x
re-authentication period for each port."
::= { asDot1xPortEntry 4 }
--------------------
-- Statistics
--------------------
asMacDisplayTarget OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This managed object is a filter used for identify the target from which
the MAC addresses are learned in macTable. The target should be
IfIndex which is used for identifying subscriber ports
(e.g. 300 means all ports in slot 3 and 301 means port 1 in slot 3)."
::= { asMacStats 1 }
-- macTable
asMacTable OBJECT-TYPE
SYNTAX SEQUENCE OF AsMacEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains information about unicast
entries for which the bridge has forwarding and/or
filtering information. This information is used
by the transparent bridging function in
determining how to propagate a received frame."
::= { asMacStats 2 }
asMacEntry OBJECT-TYPE
SYNTAX AsMacEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of asMacTable."
INDEX { asMacAddress }
::= { asMacTable 1 }
AsMacEntry ::=
SEQUENCE {
asMacAddress MacAddress,
asMacPort INTEGER,
asMacStatus INTEGER
}
asMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unicast MAC address for which the bridge has
forwarding and/or filtering information."
::= { asMacEntry 1 }
asMacPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port from which the mac address has been learned."
::= { asMacEntry 2 }
asMacStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
invalid(2),
learned(3),
self(4),
mgmt(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of this entry."
::= { asMacEntry 3 }
-- accessSwitch specific traps
reboot TRAP-TYPE
ENTERPRISE accessSwitch
VARIABLES {
accessSwitchProblemCause
}
DESCRIPTION "Send a message to the manager that the system is going to reboot.
The variable is the reason why the system reboots."
::= 1
systemShutdown TRAP-TYPE
ENTERPRISE accessSwitch
VARIABLES {
accessSwitchProblemCause
}
DESCRIPTION "Send a message to the manager that the system is going to shutdown.
The variable is the reason that causes the system to shutdown."
::= 2
overheat TRAP-TYPE
ENTERPRISE accessSwitch
VARIABLES {
accessSwitchSysTempIndex,
accessSwitchSysTempCurValue,
accessSwitchSystemCurrentStatus
}
DESCRIPTION "Send a message to the manager that the system is overheated.
The variable in the binding list is the current temperature in Celsius
of the system."
::= 3
overheatOver TRAP-TYPE
ENTERPRISE accessSwitch
VARIABLES {
accessSwitchSysTempIndex,
accessSwitchSysTempCurValue,
accessSwitchSystemCurrentStatus
}
DESCRIPTION "Send a message to the manager that the overheated condition is over.
The variable in the binding list is the current temperature in Celsius
of the system."
::= 4
errLog TRAP-TYPE
ENTERPRISE accessSwitch
VARIABLES {
accessSwitchProblemCause
}
DESCRIPTION "Send a message to the manager that an error log is created in system.
The variable in the binding list is the content of the error log."
::= 5
fanRpmLow TRAP-TYPE
ENTERPRISE accessSwitch
VARIABLES {
accessSwitchFanRpmIndex,
accessSwitchFanRpmCurValue,
accessSwitchSystemCurrentStatus
}
DESCRIPTION "Send a message to the manager that the rpm of the fan is too low.
The variable in the binding list is the current rpm of the fan."
::= 6
fanRpmNormal TRAP-TYPE
ENTERPRISE accessSwitch
VARIABLES {
accessSwitchFanRpmIndex,
accessSwitchFanRpmCurValue,
accessSwitchSystemCurrentStatus
}
DESCRIPTION "Send a message to the manager that the low-rpm condition of the fan is over.
The variable in the binding list is the current rpm of the fan."
::= 7
voltageOutOfRange TRAP-TYPE
ENTERPRISE accessSwitch
VARIABLES {
accessSwitchVoltageIndex,
accessSwitchVoltageCurValue,
accessSwitchSystemCurrentStatus
}
DESCRIPTION "Send a message to the manager that the voltage of the system is out of range.
The variable in the binding list is the current voltage in volt
of the system."
::= 8
voltageNormal TRAP-TYPE
ENTERPRISE accessSwitch
VARIABLES {
accessSwitchVoltageIndex,
accessSwitchVoltageCurValue,
accessSwitchSystemCurrentStatus
}
DESCRIPTION "Send a message to the manager that the low-voltage condition is over.
The variable in the binding list is the current voltage in volt
of the system."
::= 9
systemMaintenanceFailure TRAP-TYPE
ENTERPRISE accessSwitch
VARIABLES {
accessSwitchProblemCause
}
DESCRIPTION "Send a message to the manager that the system maintence operation
fail. The variable in the variable binding indicates the problem."
::= 10
configChange TRAP-TYPE
ENTERPRISE accessSwitch
VARIABLES {
accessSwitchProblemCause
}
DESCRIPTION "Send a message to the manager that the system configuration
data is changed."
::= 11
thermalSensorFailure TRAP-TYPE
ENTERPRISE accessSwitch
VARIABLES {
accessSwitchProblemCause
}
DESCRIPTION "The trap signifies that the thermal sensor failed."
::= 12
END
|