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
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
|
-- *****************************************************************
-- Main Control Card MIB
-- *****************************************************************
SL-MAIN-MIB DEFINITIONS ::= BEGIN
IMPORTS
Integer32, IpAddress, Opaque, Gauge32,
MODULE-IDENTITY, OBJECT-TYPE,
NOTIFICATION-TYPE, TimeTicks FROM SNMPv2-SMI
DisplayString, TruthValue,
RowStatus, TimeStamp, DateAndTime FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF
InterfaceIndex FROM IF-MIB
PerfCurrentCount, PerfIntervalCount,
PerfTotalCount FROM PerfHist-TC-MIB
sitelight FROM SL-NE-MIB;
slMain MODULE-IDENTITY
LAST-UPDATED "200008280000Z"
ORGANIZATION "PacketLight Networks Ltd."
CONTACT-INFO
"Omri_Viner@PacketLight.com"
DESCRIPTION
"This MIB module describes the Main Board"
::= { sitelight 3 }
-- The Main MIB consists of the following groups:
-- System Info
-- Authentication Table
-- Traps Table
-- Software Versions Table
-- Connections Info
-- Log Files Table
-- Configuration Files Table
slmSys OBJECT IDENTIFIER ::= { slMain 1 }
slmAdmin OBJECT IDENTIFIER ::= { slMain 2 }
slmAuth OBJECT IDENTIFIER ::= { slMain 3 }
slmLogin OBJECT IDENTIFIER ::= { slMain 4 }
slmTrap OBJECT IDENTIFIER ::= { slMain 5 }
-- slmEntity OBJECT IDENTIFIER ::= { slMain 6 }
-- slmMpls OBJECT IDENTIFIER ::= { slMain 7 }
slmLogFile OBJECT IDENTIFIER ::= { slMain 8 }
slmConfigFile OBJECT IDENTIFIER ::= { slMain 9 }
-- slTopology OBJECT IDENTIFIER ::= { slMain 10 }
-- slClocks OBJECT IDENTIFIER ::= { slMain 11 }
slmChPass OBJECT IDENTIFIER ::= { slMain 12 }
-- slTests OBJECT IDENTIFIER ::= { slMain 13 }
-- slLed OBJECT IDENTIFIER ::= { slMain 14 }
-- slMplsPm OBJECT IDENTIFIER ::= { slMain 15 }
-- slEntityAps OBJECT IDENTIFIER ::= { slMain 16 }
slmLicense OBJECT IDENTIFIER ::= { slMain 17 }
--
-- Textual Conventions
--
UserLogin ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The User Login Type."
SYNTAX DisplayString (SIZE (1..20))
UserPassword ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The User Password Type."
SYNTAX DisplayString (SIZE (1..20))
UserCommunity ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The User Community Type."
SYNTAX DisplayString (SIZE (1..20))
SoftwareRevision ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The Software Revision Name."
SYNTAX DisplayString (SIZE (1..20))
AdminAccess ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The administration access level."
SYNTAX INTEGER {
none(0), -- User has no access rights
read(1), -- Report only and Retrieve user
readwrite(2), -- Change access
provisioning(3), -- User is allowed to create connections
admin(4), -- User admin priviledge
trap(5) -- SNMP v3 Trap only user
}
-- The System Info
slmSysGatewayAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Gateway node IP Address."
::= { slmSys 1 }
slmSysSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Subnetwork Mask IP Address."
::= { slmSys 2 }
slmSysIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Node IP Address."
::= { slmSys 3 }
slmSysAlmAct OBJECT-TYPE
SYNTAX INTEGER (0..30)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Alarm Activation Time specified in Half-Seconds units.
Alarm will be considered active only if it
has been stable for that time."
::= { slmSys 4 }
slmSysAlmDeact OBJECT-TYPE
SYNTAX INTEGER (0..30)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Alarm Clearance Time specified in Half-Seconds units.
Alarm will be considered clear only if it
has been stable for that time."
::= { slmSys 5 }
slmSysAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2),
warmBoot(3),
coldBoot(4),
factoryBoot(5),
testing(6),
hotBoot(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Instruct the system to perform the boot
according to the specified type."
::= { slmSys 6 }
slmSysOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2),
testing(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational system state."
::= { slmSys 7 }
slmBoxSize OBJECT-TYPE
SYNTAX INTEGER {
half(1),
full(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The box size as was configured in the SEEP."
::= { slmSys 8 }
slmSysCalendarTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The system calendar time."
::= { slmSys 9 }
slmSysPmStartOfDay OBJECT-TYPE
SYNTAX INTEGER (0..23)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time of day that marks the beginning of each 1-day interval
used in the performance monitoring parameters for all interfaces
in the NE. This time is on an hour boundary."
DEFVAL { 0 } -- Midnight, local time
::= { slmSys 10 }
slmSysActiveSwVersion OBJECT-TYPE
SYNTAX INTEGER {
swRevA(1),
swRevB(2),
swRevFtpStart(3),
swRevFtpEnd(4),
swRevAHot(5),
swRevBHot(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Determines the active software version. This is the version that will
be loaded by rebooted cards. It is not legal to set this object
to the id of an illegal system software version.
swRevFtpStart(3) - is set by the NMS to signal the FTP start.
swRevFtpEnd(4) - is set by the NMS to signal the FTP completion.
swRevAHot(5) - means to change the active software version to A,
and to preform hot restart to all cards.
swRevBHot(6) - means to change the active software version to B,
and to preform hot restart to all cards.
Reading the object returns the current active software version."
::= { slmSys 11 }
slmSwRevTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlmSwRevEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table keeps the information about the system
software revisions."
::= { slmSys 12 }
slmConfigSysUptime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of timer ticks at the last configuration command."
::= { slmSys 13 }
slmConfigSysSignalType OBJECT-TYPE
SYNTAX INTEGER {
sonet(1),
sdh(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable identifies whether a SONET
or a SDH signal is used across this node.
This value is configured by the NMS."
::= { slmSys 14 }
slmRebootDelay OBJECT-TYPE
SYNTAX INTEGER (0..300)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of seconds to wait before reboot.
When this number equal to 0 the reboot should occur immediately.
After the reboot command is initiated, the value of this object
decrements accordingly.
Initially, the object value is 0.
It is also possible to change this value after starting the reboot
process.
Getting the value 0 means that there is no
pending reboot process in the background."
::= { slmSys 16 }
slmVcatDelay OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the VCAT delay as was read from the SEEP."
::= { slmSys 17 }
slmTid OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The SL TL1 name."
::= { slmSys 18 }
slmPsuNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Let the NMS to configure the number of PSU in the system.
If this number mismatch the reality, a mismatch alarm is declared."
::= { slmSys 19 }
slmOemType OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value tells the NMS the type of the OEM.
This value is read from the SEEP."
::= { slmSys 20 }
slmSysName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the shadow of the sysName object."
::= { slmSys 21 }
slmSysLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the shadow of the sysLocation object."
::= { slmSys 22 }
slmSysResetPm OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Writing 1 to this object reset the system PM counters."
::= { slmSys 23 }
slmSysUplinkRate OBJECT-TYPE
SYNTAX INTEGER {
up100(1), -- FE
up1000(2) -- GbE
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to configure the rate of the Uplink.
The configured rate applies to both Uplink ports."
::= { slmSys 24 }
slmSysChassisId OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to configure the chassis-id.
Node with the same value are considered to be stacked."
::= { slmSys 25 }
slmSysNetworkPrefix OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to configure the Network Prefix.
The prefix is used when the IP address of the node is
assigned automatically.
The automatic IP address of the node has the form A.x.y.z
where x.y.z is the last 3 bytes of the
MAC address 00:05:fd:x:y:z of the box.
The A is the assigned Network Prefix.
For example if the A is 10 and the MAC address is
00:05:fd:f6:55:11 the automatic IP of the node shall be
10.253.85.17."
::= { slmSys 26 }
slmSysLanIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Node LAN IP Address."
::= { slmSys 27 }
slmSysLanSubnetAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Node LAN Subnet Address."
::= { slmSys 28 }
slmPmAvailable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value tells the NMS if the PM support is available.
The value is taken from the SEEP and can not be changed."
::= { slmSys 29 }
slmPortsNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ports in the system.
The value is taken from the SEEP."
::= { slmSys 30 }
slmEdfaNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EDFA units in the system.
The value is taken from the SEEP."
::= { slmSys 31 }
slmMuxNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of MUX units in the system.
The value is taken from the SEEP."
::= { slmSys 32 }
slmOpticalSwitchExist OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Should an Optical Switch unit exist in the system.
The value is taken from the SEEP."
::= { slmSys 33 }
slmReadCommunity OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The SNMP read-only community.
This object should be accessible only by the Admin users of the Web."
::= { slmSys 34 }
slmWriteCommunity OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The SNMP read-write community.
This object should be accessible only by the Admin users of the Web."
::= { slmSys 35 }
slmSysEffectiveSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Effective Management subnetwork mask IP Address."
::= { slmSys 36 }
slmSysEffectiveIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Effective Management IP Address."
::= { slmSys 37 }
slmSysLanEffectiveIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Effective LAN IP Address."
::= { slmSys 38 }
slmSysLanEffectiveSubnetAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Effective LAN subnetwork mask address."
::= { slmSys 39 }
slmSysGatewayEffectiveIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Effective Gateway IP Address."
::= { slmSys 40 }
slmSysMode OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"System Mode configuration (this object applies to muxponder)."
::= { slmSys 41 }
slmSysTrapFormat OBJECT-TYPE
SYNTAX INTEGER {
fullIfIndex(1), --
portIfIndex(2) -- HPOV and SNMPc
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The format of the sent trap:
1 - the full ifIndex is sent.
2 - only the port number part of the ifIndex is sent."
::= { slmSys 42 }
slmSysTemperature OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature of the PL device in Celsius."
::= { slmSys 43 }
slmNetworkMode OBJECT-TYPE
SYNTAX INTEGER {
routing(1), -- Layer 3 Routing is required between the LAN to the OSC
switching(2) -- Layer 2 switching is required between the LAN and OSC
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"1 - means that the LAN is define on a different vlan than the MNG ports.
2 - means that the LAN is on the same vlan and the MNG ports"
::= { slmSys 44 }
slm40GConf OBJECT-TYPE
SYNTAX INTEGER {
g40(0), -- Zero 40G ports
g41(1), -- Single 40G Port 1
g42(2), -- Single 40G Port 2
g43(3), -- Dual 40G ports
g100(100) -- 40G not supported (taken from the SEEP)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"g40(0) - No 40G ports (service ports 3..10 are disabled)
g41(1) - Single 40G Port 1 (service ports 7,8,9,10 are disabled)
g42(2) - Single 40G Port 2 (service ports 3,4,5,6 are disabled)
g43(3) - Dual 40G ports"
::= { slmSys 45 }
slmRstpEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable the RSTP protocol.
Defalut value is TRUE."
::= { slmSys 46 }
slmTopologyEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable the topology discovery protocol.
Defalut value is TRUE."
::= { slmSys 47 }
slmAdminCommunity OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The SNMP admin community.
This object should be accessible only by the Admin users of the Web."
::= { slmSys 48 }
slmTrapCommunity OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The SNMP v1/v2c trap community.
This object should be accessible only by the Admin users of the Web."
::= { slmSys 49 }
slmSysSnmpVersion OBJECT-TYPE
SYNTAX INTEGER {
v3Only(3), -- V3 Only
v1v2v3(4) -- V1, V2c, V3
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The format of the sent trap:
3 - allow only SNMPv3 pdus.
4 - allow all pdus (coexistance mode)."
::= { slmSys 50 }
slmSysEncryptionCapability OBJECT-TYPE
SYNTAX INTEGER {
disabled(1), -- No Encryption
enabled(2) -- Encryption Supported
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The encryption capability:
1 - No Encryption.
2 - Encryption Supported."
::= { slmSys 51 }
--
-- Software Revision Table
--
slmSwRevEntry OBJECT-TYPE
SYNTAX SlmSwRevEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry exist per system revsion type (A or B)."
INDEX { slmSwRevDirectory }
::= { slmSwRevTable 1 }
SlmSwRevEntry ::=
SEQUENCE {
slmSwRevDirectory INTEGER,
slmSwRevStatus INTEGER,
slmSwRevName SoftwareRevision,
slmSwRevDate DateAndTime
}
slmSwRevDirectory OBJECT-TYPE
SYNTAX INTEGER {
swRevDirA(1),
swRevDirB(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The directory name A or B of this system software
revision."
::= { slmSwRevEntry 1 }
slmSwRevStatus OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2),
copyingToStandby(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the system software directory content.
The value valid(1) means that the data of this entry is
valid and that the software is loaded correctly and is
currently used.
The value copyingToStandby(3) means that the SW is currently
being copied to the Standby Switch. During this period
the NMS is not allowed to upgrade the SW version. This value
is applicable only to the Standby software version.
The value invalid(2) means otherwise. This value is applicable
only to the Standby software version."
::= { slmSwRevEntry 2 }
slmSwRevName OBJECT-TYPE
SYNTAX SoftwareRevision
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The identification string of the system software revision.
This value is taken from the content of the system software
configuration data that is downloded with the rest of the
software files."
::= { slmSwRevEntry 3 }
slmSwRevDate OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The release date of the system software revision.
This value is taken from the content of the system software
configuration data that is downloded with the rest of the
software files."
::= { slmSwRevEntry 4 }
-- The admin table
--
-- This table is used to store per each authorised user
-- its corresponding access level.
-- This table may be accessed and changed only by the system
-- administrator.
-- The table is used by the GNE during the login session
-- to return the user its community string according to
-- its access level.
-- The initial table contains one entry with:
-- Login='admin', Password='root', Access=admin(3)
-- At least one entry with Access=admin(3) should remain in
-- the table.
--
slmAdminTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlmAdminEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The admin table is used to supply the access
level for the user login."
::= { slmAdmin 1 }
slmAdminEntry OBJECT-TYPE
SYNTAX SlmAdminEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry exist per user."
INDEX { slmAdminLogin }
::= { slmAdminTable 1 }
SlmAdminEntry ::=
SEQUENCE {
slmAdminLogin UserLogin,
slmAdminPassword UserPassword,
slmAdminRowStatus RowStatus,
slmAdminAccess AdminAccess,
slmSnmpv3Auth INTEGER,
slmSnmpv3Priv INTEGER,
slmSnmpv3Password UserPassword
}
slmAdminLogin OBJECT-TYPE
SYNTAX UserLogin
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The user login."
::= { slmAdminEntry 3 }
slmAdminPassword OBJECT-TYPE
SYNTAX UserPassword
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The user password."
::= { slmAdminEntry 4 }
slmAdminRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the
slmAdminTable."
::= { slmAdminEntry 5 }
slmAdminAccess OBJECT-TYPE
SYNTAX AdminAccess
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The user access level."
::= { slmAdminEntry 6 }
slmSnmpv3Auth OBJECT-TYPE
SYNTAX INTEGER {
noaccess(1), -- User has no access rights
noauth(2), -- No Auth
md5(3), -- MD5
sha(4), -- HMAC-SHA
sha224(5), -- SHA-224
sha256(6), -- SHA-256
sha384(7), -- SHA-384
sha512(8) -- SHA-512
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The user SNMP v3 authentication mode."
::= { slmAdminEntry 7 }
slmSnmpv3Priv OBJECT-TYPE
SYNTAX INTEGER {
noaccess(1), -- User has no access rights
nopriv(2), -- No Priv
des(3), -- CBC-DES
aes(4), -- AES-128
des3(5), -- CBC-DES3
aes192(6), -- AES-192
aes256(7) -- AES-256
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The user SNMP v3 privacy mode."
::= { slmAdminEntry 8 }
slmSnmpv3Password OBJECT-TYPE
SYNTAX UserPassword
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The SNMP v3 Password"
::= { slmAdminEntry 9 }
-- The authentication table
--
-- This table is used to retrieve a community string
-- according to the user login and password
-- The rows of the table are temporary and used
-- to avoid access to the data by more than one user at a time.
-- After the completion of the operation the entry is
-- erased.
--
slmAuthTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlmAuthEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The authentication table is used
for creating authentication requests."
::= { slmAuth 1 }
slmAuthEntry OBJECT-TYPE
SYNTAX SlmAuthEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry is used to compute the slmAuthCommunity based
on the indexes Login and Password. Note that the table contains
no data, and when using GetNext it apears to be empty.
To compute the community the NMS should Get the field
slmAuthCommunity with the corresponding indexes."
INDEX { slmAuthLogin, slmAuthPassword }
::= { slmAuthTable 1 }
SlmAuthEntry ::=
SEQUENCE {
slmAuthLogin UserLogin,
slmAuthPassword UserPassword,
slmAuthCommunity UserCommunity
}
slmAuthLogin OBJECT-TYPE
SYNTAX UserLogin
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The user login."
::= { slmAuthEntry 1 }
slmAuthPassword OBJECT-TYPE
SYNTAX UserPassword
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The user password."
::= { slmAuthEntry 2 }
slmAuthCommunity OBJECT-TYPE
SYNTAX UserCommunity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The user community name correponds to slmAuthLogin and
slmAuthPassword and which defines user'a access scope.
The value of this object is available for reading only
after the the first three colunms have been filled"
::= { slmAuthEntry 3 }
--
-- The change password table
--
-- This table is used to allow a user to change its password
--
slmChPassTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlmChPassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table is used for changing the user passowrd."
::= { slmChPass 1 }
slmChPassEntry OBJECT-TYPE
SYNTAX SlmChPassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry is used to set the slmChPassNewPass.
Note that the table contains no data, and when
using GetNext it apears to be empty.
To change the password, the NMS should issue a SET
command with the new password while the two indexes
equal to the old user login and password."
INDEX { slmChPassLogin, slmChPassOldPass }
::= { slmChPassTable 1 }
SlmChPassEntry ::=
SEQUENCE {
slmChPassLogin UserLogin,
slmChPassOldPass UserPassword,
slmChPassNewPass UserPassword
}
slmChPassLogin OBJECT-TYPE
SYNTAX UserLogin
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The user login."
::= { slmChPassEntry 1 }
slmChPassOldPass OBJECT-TYPE
SYNTAX UserPassword
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The user password."
::= { slmChPassEntry 2 }
slmChPassNewPass OBJECT-TYPE
SYNTAX UserPassword
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The user password."
::= { slmChPassEntry 3 }
-- Trap Destination Table
--
-- This table defines the destination addresses for traps generated
-- from the device. This table maps a community to one or more trap
-- destination entries.
--
-- The same trap will be sent to all destinations specified in the
-- entries that have the same trapDestCommunity as the eventCommunity
-- (as defined by RMON MIB).
--
slmTrapDestTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlmTrapDestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of trap destination entries."
::= { slmTrap 1 }
slmTrapDestEntry OBJECT-TYPE
SYNTAX SlmTrapDestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry includes a destination IP address to which to send
traps for this community. An entry in the table is created by
the NMS.
In order to keep the entry in the table the management should
refresh the entry periodicaly. Otherwise it will be deleted
by the GNE after 5 minutes."
INDEX { slmTrapDestAddress }
::= { slmTrapDestTable 1 }
SlmTrapDestEntry ::= SEQUENCE {
slmTrapDestAddress Integer32,
slmTrapDestRowStatus RowStatus,
slmTrapDestCommunity UserCommunity,
slmTrapDestProtVersion INTEGER,
slmTrapUserLogin UserLogin,
slmTrapUserAccess AdminAccess,
slmTrapEnable TruthValue,
slmTrapPort INTEGER,
slmTrapDestIpAddress IpAddress
}
slmTrapDestAddress OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A copy of slmTrapDestIpAddress represented as an integer.
Needed due to VxWorks failure to handle an ip address as a table index."
::= { slmTrapDestEntry 1 }
slmTrapDestRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the
trapDestTable."
::= { slmTrapDestEntry 2 }
slmTrapDestCommunity OBJECT-TYPE
SYNTAX UserCommunity
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A community to which this destination address belongs.
This entry is associated with any eventEntries in the RMON
MIB whose value of eventCommunity is equal to the value of
this object. Every time an associated event entry sends a
trap due to an event, that trap will be sent to each
address in the trapDestTable with a trapDestCommunity equal to
eventCommunity.
This object may not be modified if the associated
trapDestStatus object is equal to active(1)."
::= { slmTrapDestEntry 3 }
slmTrapDestProtVersion OBJECT-TYPE
SYNTAX INTEGER {
snmpVer1(1),
snmpVer2(2),
snmpVer3(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The SNMP version of the traps which this manager expects to receive."
DEFVAL { snmpVer2 }
::= { slmTrapDestEntry 4 }
slmTrapUserLogin OBJECT-TYPE
SYNTAX UserLogin
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The user login. This is used to describe to the manager
the current active login sessions. The NMS should read
this value periodicaly in order to refresh its entry, otherwise
the entry will be deleted by the GNE after a timeout of 5 minutes."
::= { slmTrapDestEntry 5 }
slmTrapUserAccess OBJECT-TYPE
SYNTAX AdminAccess
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The user access."
::= { slmTrapDestEntry 6 }
slmTrapEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"TRUE - means that that the alarms are allowed.
FALSE - means that all alarms should not be sent for this session."
::= { slmTrapDestEntry 7 }
slmTrapPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The destination port for to send the trap.
The default value is 162."
::= { slmTrapDestEntry 8 }
slmTrapDestIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The address to send traps on behalf of this entry.
This object may not be modified if the associated
slmTrapDestStatus object is equal to active(1)."
::= { slmTrapDestEntry 9 }
-- Trap Log Table
--
-- This table keeps the log of the sent traps
--
slmTrapLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlmTrapLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of trap log entries."
::= { slmTrap 2 }
slmTrapLogEntry OBJECT-TYPE
SYNTAX SlmTrapLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table keeps the log of a single trap."
INDEX { slmTrapLogId }
::= { slmTrapLogTable 1 }
SlmTrapLogEntry ::= SEQUENCE {
slmTrapLogId Gauge32,
slmTrapLogName OCTET STRING,
slmTrapLogTimeStamp TimeTicks,
slmTrapLogParam1 OCTET STRING,
slmTrapLogParam2 OCTET STRING,
slmTrapLogParam3 OCTET STRING,
slmTrapLogParam4 OCTET STRING,
slmTrapLogParam5 OCTET STRING,
slmTrapLogParam6 OCTET STRING
}
slmTrapLogId OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The trap log id. The id increments each time a new log
entry arrives."
::= { slmTrapLogEntry 1 }
slmTrapLogName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object id of the trap."
::= { slmTrapLogEntry 2 }
slmTrapLogTimeStamp OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The trap time stamp."
::= { slmTrapLogEntry 3 }
slmTrapLogParam1 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The first parameter of the trap."
::= { slmTrapLogEntry 4 }
slmTrapLogParam2 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The second parameter of the trap."
::= { slmTrapLogEntry 5 }
slmTrapLogParam3 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The third parameter of the trap."
::= { slmTrapLogEntry 6 }
slmTrapLogParam4 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The forth parameter of the trap."
::= { slmTrapLogEntry 7 }
slmTrapLogParam5 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The fifth parameter of the trap."
::= { slmTrapLogEntry 8 }
slmTrapLogParam6 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sixth parameter of the trap."
::= { slmTrapLogEntry 9 }
--
-- Other Traps
--
slmTrapSoftwareStatusChange NOTIFICATION-TYPE
OBJECTS { slmSwRevDirectory, slmSwRevStatus }
STATUS current
DESCRIPTION
"A slmTrapSoftwareStatusChange trap is sent when the
value of the slmSwRevStatus of one of the directories changes."
::= { slmTrap 4 }
slmTrapSysNameChange NOTIFICATION-TYPE
OBJECTS { slmSysName }
STATUS current
DESCRIPTION
"A slmTrapSysNameChange trap is sent when the
value of the slmSysName is changed."
::= { slmTrap 5 }
slmTrapSysLocationChange NOTIFICATION-TYPE
OBJECTS { slmSysLocation }
STATUS current
DESCRIPTION
"A slmTrapSysLocationChange trap is sent when the
value of the slmSysLocation is changed."
::= { slmTrap 6 }
--
-- Syslog Destination Table
--
slmSyslogDestTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlmSyslogDestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of syslog destination entries."
::= { slmTrap 7 }
slmSyslogDestEntry OBJECT-TYPE
SYNTAX SlmSyslogDestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry includes a destination IP addresses to which to send
log messages."
INDEX { slmSyslogDestAddress }
::= { slmSyslogDestTable 1 }
SlmSyslogDestEntry ::= SEQUENCE {
slmSyslogDestAddress Integer32,
slmSyslogDestRowStatus RowStatus,
slmSyslogLevel INTEGER,
slmSyslogPort INTEGER,
slmSyslogDestIpAddress IpAddress
}
slmSyslogDestAddress OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A copy of slmSyslogDestTable represented as an integer.
Needed due to VxWorks failure to handle an ip address as a table index."
::= { slmSyslogDestEntry 1 }
slmSyslogDestRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the slmSyslogDestTable."
::= { slmSyslogDestEntry 2 }
slmSyslogLevel OBJECT-TYPE
SYNTAX INTEGER {
traps(1), -- send traps only
log(2), -- send all log messages
debug(3) -- send also debug meesages
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The level of log messages which this manager expects to receive."
::= { slmSyslogDestEntry 3 }
slmSyslogPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The destination port for to send the log message.
The default value is 514."
::= { slmSyslogDestEntry 4 }
slmSyslogDestIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The address to send log messages on behalf of this entry."
::= { slmSyslogDestEntry 5 }
--
-- License Table
--
slmLicenseTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlmLicenseEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of License entries."
::= { slmLicense 1 }
slmLicenseEntry OBJECT-TYPE
SYNTAX SlmLicenseEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table correspond to installed license."
INDEX { slmLicenseIndex }
::= { slmLicenseTable 1 }
SlmLicenseEntry ::= SEQUENCE {
slmLicenseIndex INTEGER,
slmLicenseExpiration INTEGER,
slmLicenseId DisplayString
}
slmLicenseIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The license index."
::= { slmLicenseEntry 1 }
slmLicenseExpiration OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of seconds to expiration.
Value -1 for permanent."
::= { slmLicenseEntry 2 }
slmLicenseId OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The license text"
::= { slmLicenseEntry 3 }
END
|