summaryrefslogtreecommitdiff
path: root/MIBS/ericsson/XF-SOFTWARE-MIB
blob: b649f92b2831b0649cebd03be40b2b211cf40ced (plain)
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
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
	XF-SOFTWARE-MIB DEFINITIONS ::= BEGIN

		IMPORTS
			entPhysicalIndex
				FROM ENTITY-MIB
			SnmpAdminString
				FROM SNMP-FRAMEWORK-MIB
			OBJECT-GROUP, MODULE-COMPLIANCE
				FROM SNMPv2-CONF
			Integer32, OBJECT-TYPE, MODULE-IDENTITY, OBJECT-IDENTITY
				FROM SNMPv2-SMI
			DateAndTime, TEXTUAL-CONVENTION
				FROM SNMPv2-TC
			xfPlatform, XfProductnumber, XfProductRevision
				FROM XF-TOP-MIB;


		-- 1.3.6.1.4.1.193.81.2.7
		xfSoftwareMIB MODULE-IDENTITY
			LAST-UPDATED "200803060000Z"		-- March 06, 2008 at 00:00 GMT
			ORGANIZATION
				"Ericsson-Norway"
			CONTACT-INFO
				" "
			DESCRIPTION
				"This MIB contains the objects which support software
				inventory information."
			REVISION "200803051803Z"		-- March 05, 2008 at 18:03 GMT
			DESCRIPTION
				"N : Removed BITS"
			REVISION "200711261244Z"		-- November 26, 2007 at 12:44 GMT
			DESCRIPTION
				"M   Extended xfSwLmUpgradeOperStatus and
				    xfSwReleaseOperStatus with ftp error codes"
			REVISION "200706110912Z"		-- June 11, 2007 at 09:12 GMT
			DESCRIPTION
				" K added preparingForTest(9) to
				   xfSwGlobalState"
			REVISION "200704100909Z"		-- April 10, 2007 at 09:09 GMT
			DESCRIPTION
				"J Added extra value testingFromManual(8) to
				    xfSwReleaseOperStatus
				    Added xfSwGlobalState
				"
			REVISION "200306191030Z"		-- June 19, 2003 at 10:30 GMT
			DESCRIPTION
				"D
				Changed description of xfSwNpuPassiveSwitch
				  to state that a warm restart is required to
				  activate the fallback
				Added noFailure(3) to
				 xfSwLoadModuleFailure"
			REVISION "200203080841Z"		-- March 08, 2002 at 08:41 GMT
			DESCRIPTION
				"C
				Changed contact info
				Added one state to the xfSWBoardStatus
				Added objects for multiple load modules
				per board and type of the load module.
				"
			REVISION "200201140911Z"		-- January 14, 2002 at 09:11 GMT
			DESCRIPTION
				"B write to xfSwReleaseAdminStatus
				for active release has no effect
				Added conformance
				Change syntax for product number
				and revision
				Change name to xfSwBoardStatus"
			REVISION "200110101215Z"		-- October 10, 2001 at 12:15 GMT
			DESCRIPTION
				"A Initial Revision"
			REVISION "200401301351Z"		-- January 30, 2004 at 13:51 GMT
			DESCRIPTION
				"E Added objects for progress indication,
				Better fault indication.
				New release handling."
			REVISION "200408030823Z"		-- August 03, 2004 at 08:23 GMT
			DESCRIPTION
				"F   due to new scope in Neptune
				removed ..AdditionalInfo,
				xfSwLmUpgradeNewProductNumber and
				xfSwLmUpgrade/xfSwLoadModuleDescription.
				added xfSwReleaseSBLType and
				xfBoardTrafficDisturbance

				changed the values of xfSwLmUpgradeOper and
				AdminStatus. Removed not used values and
				removed 'holes' in the enum values."
			REVISION "200501310826Z"		-- January 31, 2005 at 08:26 GMT
			DESCRIPTION
				"G Added xfSwLoadModuleDescription,
				minSoftwareRevision(5)to xfSwBoardStatus
				and xfSuLmUpgradeDescription"
			REVISION "200502090813Z"		-- February 09, 2005 at 08:13 GMT
			DESCRIPTION
				"H reintroduced xfSwBoardLoadModuleIndex as index"
			::= { xfPlatform 7 }



--
-- Textual conventions
--

--  Textual conventions
--
--
--
		XfSwRelease ::= TEXTUAL-CONVENTION
			STATUS current
			DESCRIPTION
				"Indication of one of the two software releases."
			SYNTAX Integer32 (1..2)

		XfSwEnableDisable ::= TEXTUAL-CONVENTION
			STATUS current
			DESCRIPTION
				"This TC is used for objects that can have these values."
			SYNTAX INTEGER
				{
				enable(1),
				disable(2)
				}


--
-- Node definitions
--

--  Node definitions
--
		-- 1.3.6.1.4.1.193.81.2.7.1
		xfSwObjects OBJECT IDENTIFIER ::= { xfSoftwareMIB 1 }


		-- 1.3.6.1.4.1.193.81.2.7.1.1
		xfSwLoadModuleTable OBJECT-TYPE
			SYNTAX SEQUENCE OF XfSwLoadModuleEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"This table contains information about the load modules
				that are part of the system releases as described by
				the xfSwReleaseTable."
			::= { xfSwObjects 1 }


		-- 1.3.6.1.4.1.193.81.2.7.1.1.1
		xfSwLoadModuleEntry OBJECT-TYPE
			SYNTAX XfSwLoadModuleEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Information about 1 software load module."
			INDEX { xfSwRelease, xfSwLoadModuleIndex }
			::= { xfSwLoadModuleTable 1 }


		XfSwLoadModuleEntry ::=
			SEQUENCE {
				xfSwRelease
					XfSwRelease,
				xfSwLoadModuleIndex
					Integer32,
				xfSwLoadModuleProductNumber
					XfProductnumber,
				xfSwLoadModuleRevision
					XfProductRevision,
				xfSwLoadModuleOperStatus
					INTEGER,
				xfSwLoadModuleFailure
					INTEGER,
				xfSwLoadModuleProgress
					Integer32,
				xfSwLoadModuleDescription
					SnmpAdminString
			 }

		-- 1.3.6.1.4.1.193.81.2.7.1.1.1.1
		xfSwRelease OBJECT-TYPE
			SYNTAX XfSwRelease
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"There are two software releases present on the node:
				- an active release, normally the most recent release
				  and the one that is running
				- a passive release, that is the previous release or
				  the one that is currently being download to upgrade
				  the active release.
				xfSwRelease is an index into the active or passive
				release. xfSwActiveRelease indicates which release is
				active."
			::= { xfSwLoadModuleEntry 1 }


		-- 1.3.6.1.4.1.193.81.2.7.1.1.1.2
		xfSwLoadModuleIndex OBJECT-TYPE
			SYNTAX Integer32 (1..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Unique value within one release for each load module."
			::= { xfSwLoadModuleEntry 2 }


		-- 1.3.6.1.4.1.193.81.2.7.1.1.1.3
		xfSwLoadModuleProductNumber OBJECT-TYPE
			SYNTAX XfProductnumber
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Product number of the load module. Normally something
				like 'CAXR102_012/1'."
			::= { xfSwLoadModuleEntry 3 }


		-- 1.3.6.1.4.1.193.81.2.7.1.1.1.4
		xfSwLoadModuleRevision OBJECT-TYPE
			SYNTAX XfProductRevision
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Revision of the load module. Normally something like
				'R1A'."
			::= { xfSwLoadModuleEntry 4 }


		-- 1.3.6.1.4.1.193.81.2.7.1.1.1.5
		xfSwLoadModuleOperStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				passive(1),
				upgradeStarted(2),
				upgradeFinished(3),
				upgradeFailed(4),
				upgradeAborted(5)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Indicates the status of the software upgrade process
				for this load module.
				passive(1)
				   the load module is not involved in a upgrade
				   process and is not active. I.e.it is part of
				   the previous software release.

				upgradeStarted(2)
				   a load module will have this status directly
				   after the SBDF info for this module is loaded
				   and the xfSwLoadModuleAdminStatus of the
				   release was set to upgradeStarted.

				upgradeFinished(3)
				   indicates that this load modules has been retrieved
				   and burned into the flash memories. This is the state
				   of load modules that are part of an active release.

				upgradeFailed(4)
				   upgraded has failed for a reason, e.g. file transfer
				   checksum was wrong, see xfSwLoadModuleFailure.

				upgradeAborted(5)
				   when the manager has aborted the upgrade of the
				   complete release whilst this load module wasn't
				   upgradedFinished yet this will be its status.
				"
			::= { xfSwLoadModuleEntry 5 }


--
		-- 1.3.6.1.4.1.193.81.2.7.1.1.1.6
		xfSwLoadModuleFailure OBJECT-TYPE
			SYNTAX INTEGER
				{
				downloadFailure(1),
				programFailure(2),
				noFailure(3)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"The objects specifies the cause of a software upgrade
				failure for this load module. "
			::= { xfSwLoadModuleEntry 6 }


		-- 1.3.6.1.4.1.193.81.2.7.1.1.1.8
		xfSwLoadModuleProgress OBJECT-TYPE
			SYNTAX Integer32 (0..100)
			UNITS "percent"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object indicates the progress in downloading
				the respective load module when part of an upgrade
				of an NE to a software baseline."
			::= { xfSwLoadModuleEntry 8 }


		-- 1.3.6.1.4.1.193.81.2.7.1.1.1.9
		xfSwLoadModuleDescription OBJECT-TYPE
			SYNTAX SnmpAdminString (SIZE (0..30))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object indicates a textual
				description of the load module, indicating PIU type
				as stated by the entPhysicalDescription MO."
			::= { xfSwLoadModuleEntry 9 }


		-- 1.3.6.1.4.1.193.81.2.7.1.2
		xfSwReleaseTable OBJECT-TYPE
			SYNTAX SEQUENCE OF XfSwReleaseEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"This contains the information on the active and passive
				software releases."
			::= { xfSwObjects 2 }


		-- 1.3.6.1.4.1.193.81.2.7.1.2.1
		xfSwReleaseEntry OBJECT-TYPE
			SYNTAX XfSwReleaseEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Information about a software release. There are always
				only two releases. For the active release write is
				possible but will have no impact and will result in a
				inconsistentValue error response."
			INDEX { xfSwReleaseIndex }
			::= { xfSwReleaseTable 1 }


		XfSwReleaseEntry ::=
			SEQUENCE {
				xfSwReleaseIndex
					XfSwRelease,
				xfSwReleaseProductNumber
					XfProductnumber,
				xfSwReleaseRevision
					XfProductRevision,
				xfSwReleaseAdminStatus
					INTEGER,
				xfSwReleaseOperStatus
					INTEGER,
				xfSwReleaseSBLType
					INTEGER
			 }

		-- 1.3.6.1.4.1.193.81.2.7.1.2.1.1
		xfSwReleaseIndex OBJECT-TYPE
			SYNTAX XfSwRelease
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Indicates the Release the info for which this row is
				applicable."
			::= { xfSwReleaseEntry 1 }


		-- 1.3.6.1.4.1.193.81.2.7.1.2.1.2
		xfSwReleaseProductNumber OBJECT-TYPE
			SYNTAX XfProductnumber
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Product number of the installed software package in
				this release. Normally something like 'CAXR102 012/1'.
				For the active release this is a read-only object."
			::= { xfSwReleaseEntry 2 }


		-- 1.3.6.1.4.1.193.81.2.7.1.2.1.3
		xfSwReleaseRevision OBJECT-TYPE
			SYNTAX XfProductRevision
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Revision of the installed software package in this
				Release. Normally something like 'R1A'.
				For the active release this is a read-only object."
			::= { xfSwReleaseEntry 3 }


		-- 1.3.6.1.4.1.193.81.2.7.1.2.1.4
		xfSwReleaseAdminStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				upgradeStarted(1),
				upgradeAborted(2),
				activeAndRunning(5),
				upgradeTest(6)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Indicates the desired status for this release. To start
				a software upgrade the manager has to set
				xfSwReleaseProductNumber and xfSwReleaseRevision. After
				that it will set this object to upgradeStarted. Which
				will lead to downloading the SBDF-file from the FTP
				Server.
				For the active release this is a read-only object."
			::= { xfSwReleaseEntry 4 }


		-- 1.3.6.1.4.1.193.81.2.7.1.2.1.5
		xfSwReleaseOperStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				passive(1),
				upgradeStarted(2),
				upgradeFinished(3),
				testing(4),
				upgradeFailed(5),
				upgradeAborted(6),
				running(7),
				testingFromManual(8),
				errorInternal(50),
				errorFileStorage(51),
				ftpPingFailed(52),
				ftpNoAccess(53),
				ftpConnectionDetailsMissing(54),
				ftpConnectionDetailsInvalid(55),
				ftpConnectionTimeout(56),
				ftpNoSuchRemoteFile(57),
				ftpNoSuchRemoteDir(58),
				ftpServiceNotAvailable(421),
				ftpUnableToOpenDataConnection(425),
				ftpConnectionClosed(426),
				ftpFileBusy(450),
				ftpLocalError(451),
				ftpInsufficientStorageSpace(452),
				ftpSyntaxError(501),
				ftpCommandNotImplemented(502),
				ftpBadSequenceCommands(503),
				ftpParameterNotImplemented(504),
				ftpNoLoggedIn(530),
				ftpNeedAccount(532),
				ftpFileUnavailable(550),
				ftpExceededStorageAllocation(552),
				ftpFileNameNotAllowed(553)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Indicates the status of this release.
				passive(1)
				  release not involved in upgrade and currently not
				  running.

				upgradeStarted(2)
				  the release is in the process of being upgraded

				upgradeFinished(3)
				  All load modules of the release are downloaded and
				  burned in the respective flash memories.

				testing(4)
				  This release is running as test and not committed yet.

				upgradeFailed(5)
				  The upgrade to this release failed, e.g. due to FTP
				  server failure.

				upgradeAborted(6)
				  The manager has order to abort the upgrade to this
				  release.

				running(7)
				  This is the release that is running now and all new
				  boards should upgrade to.

				testingFromManual(8)
				  Same as value testing(4) but indicating that this a test phase
				  after a SBL from Manual mode. As such a fall-back will result in manual mode,
				  i.e. no SBL.


				The 50 series errors are reported by the FTP client on
				the node.


				errorInternalError(50)
				   An internal error detected before FTP operation.

				errorFileStorage(51)
				   Error when erasing flash to store the downloaded
				   file at the node.

				ftpPingFailed(52)
				   FTP ping failed.

				ftpNoAccess(53)
				   Not able to send the FTP commands.

				ftpConnectionDetailsMissing(54)
				   FTP connection details are missing.

				ftpConnectionDetailsInvalid(55)
				   FTP connection details are invalid.

				ftpConnectionTimeout(56)
				   FTP connection timeout is detected.

				ftpNoSuchRemoteFile(57)
				   No such remote file exists.

				ftpNoSuchRemoteDir(58)
				   No such remote directory exists.


				The 400 series errors occur when the command was not accepted
				and the requested action did not take place, but the error
				condition is temporary and the action may be requested again.


				ftpServiceNotAvailable(421)
				   Service not available, closing control connection. This
				   may be a reply to any command if the service knows it
				   must shut down. Possible causes are transfer timeouts
				   and/or FTP server resets.

				ftpUnableToOpenDataConnection(425)
				  Can't open data connection. Try changing from PASV to
				  PORT mode.

				ftpConnectionClosed(426)
				  Connection closed and file transfer is aborted. Possible
				  causes are out of local diskspace and loss of connection.


				ftpFileBusy(450)
				  Requested file action not taken. File
				  unavailable (e.g file busy).

				ftpLocalError(451)
				  Requested action aborted due to local error in processing.

				ftpInsufficienStorageSpace(452)
				  Requested action not taken due to insufficient
				  storage space on the server.


				The 500 series errors occur when the command was not accepted
				and the requested action did not take place.


				ftpSyntaxError(501)
				  FTP Syntax error in parameters or arguments.

				ftpCommandNotImplemented(502)
				  FTP Command not implemented.

				ftpBadSequenceCommands(503)
				  Bad sequence of the FTP commands.

				ftpParameterNotImplemented(504)
				  FTP command not implemented for that parameter.

				ftpNotLoggedIn(530)
				  Not logged in. Your username and/or password is being
				  rejected, contact the server adminstrator.

				ftpNeedAccount(532)
				  Need account for storing files.

				ftpFileUnavailable(550)
				  Requested action not taken. File unavailable
				  (e.g.file not found, no access). Contact the server
				  adminstrator.

				ftpExceededStorageAllocation(552)
				  Requested file action aborted.Exceeded storage allocation (for
				  current directory or data set). Contact the server adminstrator.

				ftpFileNameNotAllowed(553)
				  Requested action not taken. File name not allowed. Try changing
				  the file name or getting rid of spaces in the file name."
			::= { xfSwReleaseEntry 5 }


		-- 1.3.6.1.4.1.193.81.2.7.1.2.1.6
		xfSwReleaseSBLType OBJECT-TYPE
			SYNTAX INTEGER
				{
				definedByEricsson(1),
				definedByOperator(2)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object indicates whether the SBL information in
				the SBDF is generated by Ericsson or by an operator.
				This is based on a check of the SBDF.
				Of course this will only be a reliable object when the
				software can distinguish between Ericsson and operator
				defined SBDFs, i.e. upgrading from R2A."
			::= { xfSwReleaseEntry 6 }


		-- 1.3.6.1.4.1.193.81.2.7.1.3
		xfSwActiveRelease OBJECT-TYPE
			SYNTAX XfSwRelease
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Indicates which of the two Releases is active at the
				moment, i.e. active is the software actually running."
			::= { xfSwObjects 3 }


		-- 1.3.6.1.4.1.193.81.2.7.1.4
		xfSwBootTime OBJECT-TYPE
			SYNTAX DateAndTime
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Indicates when the XF NE will warm restart to test the
				new software release. If all fields have value 0 an
				immediate boot will be performed."
			::= { xfSwObjects 4 }


		-- 1.3.6.1.4.1.193.81.2.7.1.5
		xfSwCommitType OBJECT-TYPE
			SYNTAX INTEGER
				{
				operatorCommit(1),
				nodeCommit(2)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"In case of a scheduled restart, i.e. valid date and
				time in xfSwBootTime, two different commit procedures
				can be followed:
				operatorCommit(1)
				  The manager commits the software release
				  under test by setting the xfSwRelease-
				  AdminState to activeAndRunning.

				nodeCommit(2)
				  The release under test is accepted when
				  the node is able to establish contact
				  through the DCN with an external IP-address.

				Default values is operatorCommit(1)."
			::= { xfSwObjects 5 }


		-- 1.3.6.1.4.1.193.81.2.7.1.6
		xfSwBoardTable OBJECT-TYPE
			SYNTAX SEQUENCE OF XfSwBoardEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"This table holds the information about software present
				on the boards in the XF-NE. Boards without software will
				not be in this table."
			::= { xfSwObjects 6 }


		-- 1.3.6.1.4.1.193.81.2.7.1.6.1
		xfSwBoardEntry OBJECT-TYPE
			SYNTAX XfSwBoardEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Entry in the table."
			INDEX { entPhysicalIndex, xfSwLoadModuleIndex }
			::= { xfSwBoardTable 1 }


		XfSwBoardEntry ::=
			SEQUENCE {
				xfSwBoardLoadModuleIndex
					Integer32,
				xfSwBoardLoadModuleType
					OBJECT IDENTIFIER,
				xfSwBoardProductNumber
					XfProductnumber,
				xfSwBoardRevision
					XfProductRevision,
				xfSwBoardStatus
					INTEGER,
				xfSwBoardSuProgress
					Integer32,
				xfSwBoardMinProductNumber
					XfProductnumber,
				xfSwBoardMinRevision
					XfProductRevision,
				xfSwBoardTrafficDisturbance
					INTEGER
			 }

		-- 1.3.6.1.4.1.193.81.2.7.1.6.1.1
		xfSwBoardLoadModuleIndex OBJECT-TYPE
			SYNTAX Integer32 (1..10)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Index to the load module on the board. A board may
				contain more than one load module.
				"
			::= { xfSwBoardEntry 1 }


		-- 1.3.6.1.4.1.193.81.2.7.1.6.1.2
		xfSwBoardLoadModuleType OBJECT-TYPE
			SYNTAX OBJECT IDENTIFIER
			MAX-ACCESS read-only
			STATUS obsolete
			DESCRIPTION
				"This object indicates of what type the software is,
				like DP (Device Processor) or FPGA (Field Programmable
				Gate Array) or another type. New type can be defined by
				defining a new OID in a other MIB.
				 "
			::= { xfSwBoardEntry 2 }


		-- 1.3.6.1.4.1.193.81.2.7.1.6.1.3
		xfSwBoardProductNumber OBJECT-TYPE
			SYNTAX XfProductnumber
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This is a string indicating the product number of the
				software in the active flash memory.
				"
			::= { xfSwBoardEntry 3 }


		-- 1.3.6.1.4.1.193.81.2.7.1.6.1.4
		xfSwBoardRevision OBJECT-TYPE
			SYNTAX XfProductRevision
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This is a string indicating the revision of the
				software in the active flash memory."
			::= { xfSwBoardEntry 4 }


		-- 1.3.6.1.4.1.193.81.2.7.1.6.1.5
		xfSwBoardStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				unknown(1),
				active(2),
				upgrading(3),
				wrongSoftware(4),
				minSoftwareRevision(5)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Indicates the status of the software on the board:
				Unknown(1)
				  The status of the software is unknown for example
				  at startup.

				Active(2)
				  Software on the board is OK and running

				Upgrading(3)
				  Software is in the process of being upgraded

				WrongSoftware(4)
				  Wrong software on the board and for some reason
				  not being upgraded yet.

				MinSoftware revision(5)
				  The board was tried to downgrade to a software revision that
				  is not compatible with the hardware.

				The xfSwBoardStatus is only of use in case version control is
				enabled. If version control is not enabled the unit will always
				runs its software."
			::= { xfSwBoardEntry 5 }


		-- 1.3.6.1.4.1.193.81.2.7.1.6.1.6
		xfSwBoardSuProgress OBJECT-TYPE
			SYNTAX Integer32 (0..100)
			UNITS "percent"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object indicates the progress of the software
				upgrade process for each individual PIU. This indicates
				both flash erasing and programming.
				This object indicates this for both upgrade to a
				baseline as well as for inserted PIUs.
				In case the software upgrade of the board takes less
				than 10 seconds this objects will directly go to 100%."
			::= { xfSwBoardEntry 6 }


		-- 1.3.6.1.4.1.193.81.2.7.1.6.1.7
		xfSwBoardMinProductNumber OBJECT-TYPE
			SYNTAX XfProductnumber
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This is a string indicating the product number of the
				minimally acceptable software revision for this unit
				type/variant.
				"
			::= { xfSwBoardEntry 7 }


		-- 1.3.6.1.4.1.193.81.2.7.1.6.1.8
		xfSwBoardMinRevision OBJECT-TYPE
			SYNTAX XfProductRevision
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This is a string indicating the revision of the
				minimally acceptable software revision for this unit
				type/variant."
			::= { xfSwBoardEntry 8 }


		-- 1.3.6.1.4.1.193.81.2.7.1.6.1.9
		xfSwBoardTrafficDisturbance OBJECT-TYPE
			SYNTAX INTEGER
				{
				unknown(1),
				disturbing(2),
				notDisturbing(3)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object indicates that software upgrade of this
				load module on this unit might lead to traffic
				disturbance. This could for example happen in the
				exceptional case where the load module includes FPGA
				code for the traffic system."
			::= { xfSwBoardEntry 9 }


		-- 1.3.6.1.4.1.193.81.2.7.1.7
		xfSwNpuObjects OBJECT IDENTIFIER ::= { xfSwObjects 7 }


--  Software related objects specific for NPU. The NPU is the only PIU
-- for which the passive memory bank is of interest to external
-- management, since a fall-back to it can be performed.
--
		-- 1.3.6.1.4.1.193.81.2.7.1.7.1
		xfSwNpuPassiveProductNumber OBJECT-TYPE
			SYNTAX XfProductnumber
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Product number of NPU software in passive bank."
			::= { xfSwNpuObjects 1 }


		-- 1.3.6.1.4.1.193.81.2.7.1.7.2
		xfSwNpuPassiveRevision OBJECT-TYPE
			SYNTAX XfProductRevision
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Revision of software in passive bank on NPU."
			::= { xfSwNpuObjects 2 }


		-- 1.3.6.1.4.1.193.81.2.7.1.7.3
		xfSwNpuPassiveSwitch OBJECT-TYPE
			SYNTAX INTEGER { switch(1) }
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"This object can be used to switch the NPU passive
				software.
				As a safety precaution this object is
				only available when the node is in installation mode
				or when the node is accessed through the USB port
				(if present).
				A warm restart is required to activate the fallback.
				A switch leads to all xfSwUpgradePreferences being set
				to their default values, i.e. no version control."
			::= { xfSwNpuObjects 3 }


		-- 1.3.6.1.4.1.193.81.2.7.1.8
		xfSwLoadModuleTypes OBJECT IDENTIFIER ::= { xfSwObjects 8 }


--   The following software types where known at time of definition
-- of this MIB.
--
		-- 1.3.6.1.4.1.193.81.2.7.1.8.1
		xfDeviceProcessorSoftware OBJECT-IDENTITY
			STATUS obsolete
			DESCRIPTION
				"Used for DP software load modules."
			::= { xfSwLoadModuleTypes 1 }


		-- 1.3.6.1.4.1.193.81.2.7.1.8.2
		xfPciFpgaCode OBJECT-IDENTITY
			STATUS obsolete
			DESCRIPTION
				"Used for PCI FPGA load modules."
			::= { xfSwLoadModuleTypes 2 }


		-- 1.3.6.1.4.1.193.81.2.7.1.9
		xfSwUpgradePreferences OBJECT IDENTIFIER ::= { xfSwObjects 9 }


--   These objects are used to configure the software
-- upgrade process, i.e. all from only informing to
-- total control.
--
		-- 1.3.6.1.4.1.193.81.2.7.1.9.1
		xfSwVersionControl OBJECT-TYPE
			SYNTAX XfSwEnableDisable
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Used to enable/disable version control.
				Default: disable."
			::= { xfSwUpgradePreferences 1 }


		-- 1.3.6.1.4.1.193.81.2.7.1.9.2
		xfSwAutoUpgrade OBJECT-TYPE
			SYNTAX XfSwEnableDisable
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Used to enable/disable automatic software upgrade.
				In case xfSwVersionControl is enabled a change of the
				value will cause all PIUs to be checked again.

				Default: disable."
			::= { xfSwUpgradePreferences 2 }


		-- 1.3.6.1.4.1.193.81.2.7.1.9.3
		xfSwAutoDowngrade OBJECT-TYPE
			SYNTAX XfSwEnableDisable
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Used to enable/disable automatic software downgrade.
				In case xfSwVersionControl is enabled a change of the
				value will cause all PIUs to be checked again.
				Default: disable."
			::= { xfSwUpgradePreferences 3 }


		-- 1.3.6.1.4.1.193.81.2.7.1.9.4
		xfSwAcceptFailure OBJECT-TYPE
			SYNTAX XfSwEnableDisable
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Used to enable/disable setting of new PIUs, that fail
				to up/downgrade, in  'out of service'. PIUs that are
				out of service will not be taken into service on the
				disable/enable transistion.
				Default: enable."
			::= { xfSwUpgradePreferences 4 }


		-- 1.3.6.1.4.1.193.81.2.7.1.10
		xfSwLmUpgradeTable OBJECT-TYPE
			SYNTAX SEQUENCE OF XfSwLmUpgradeEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"This table is used to upgrade a single load module. For
				each known load module an entry is present."
			::= { xfSwObjects 10 }


		-- 1.3.6.1.4.1.193.81.2.7.1.10.1
		xfSwLmUpgradeEntry OBJECT-TYPE
			SYNTAX XfSwLmUpgradeEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Entry in the table."
			INDEX { xfSwLmUpgradeIndex }
			::= { xfSwLmUpgradeTable 1 }


		XfSwLmUpgradeEntry ::=
			SEQUENCE {
				xfSwLmUpgradeIndex
					Integer32,
				xfSwLmUpgradeProductNumber
					XfProductnumber,
				xfSwLmUpgradeRevision
					XfProductRevision,
				xfSwLmUpgradeAdminStatus
					INTEGER,
				xfSwLmUpgradeOperStatus
					INTEGER,
				xfSwLmUpgradeProgress
					Integer32,
				xfSwLmUpgradeFailure
					INTEGER,
				xfSwLmUpgradeDescription
					SnmpAdminString
			 }

		-- 1.3.6.1.4.1.193.81.2.7.1.10.1.1
		xfSwLmUpgradeIndex OBJECT-TYPE
			SYNTAX Integer32 (1..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Objects used to index the table."
			::= { xfSwLmUpgradeEntry 1 }


		-- 1.3.6.1.4.1.193.81.2.7.1.10.1.3
		xfSwLmUpgradeProductNumber OBJECT-TYPE
			SYNTAX XfProductnumber
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Product number of the load module. Normally something
				like 'CAXR102_012/1'."
			::= { xfSwLmUpgradeEntry 3 }


		-- 1.3.6.1.4.1.193.81.2.7.1.10.1.4
		xfSwLmUpgradeRevision OBJECT-TYPE
			SYNTAX XfProductRevision
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Revision to which the load module should be upgraded.
				Normally something like 'R1A'."
			::= { xfSwLmUpgradeEntry 4 }


		-- 1.3.6.1.4.1.193.81.2.7.1.10.1.6
		xfSwLmUpgradeAdminStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				upgradeStarted(1),
				upgradeAborted(2),
				activeAndRunning(3),
				upgradeTest(4)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Indicates the desired status for this release. To start
				a software upgrade the manager has to set
				xfSwLmUpgradeRevision. After that it will set this
				object to upgradeStarted. Which will lead to downloading
				the SBDF-file from the FTP Server. For the active release
				write is possible but will have no impact."
			::= { xfSwLmUpgradeEntry 6 }


		-- 1.3.6.1.4.1.193.81.2.7.1.10.1.7
		xfSwLmUpgradeOperStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				active(1),
				upgradeStarted(2),
				upgradeFinished(3),
				upgradeTested(4),
				upgradeFailed(5),
				upgradeAborted(6),
				errorInternalError(50),
				errorFileStorage(51),
				ftpPingFailed(52),
				ftpNoAccess(53),
				ftpConnectionDetailsMissing(54),
				ftpConnectionDetailsInvalid(55),
				ftpConnectionTimeout(56),
				ftpNoSuchRemoteFile(57),
				ftpNoSuchRemoteDir(58),
				ftpServiceNotAvailable(421),
				ftpUnableToOpenDataConnection(425),
				ftpConnectionClosed(426),
				ftpFileBusy(450),
				ftpLocalError(451),
				ftpInsufficienStorageSpace(452),
				ftpSyntaxError(501),
				ftpCommandNotImplemented(502),
				ftpBadSequenceCommands(503),
				ftpParameterNotImplemented(504),
				ftpNotLoggedIn(530),
				ftpNeedAccount(532),
				ftpFileUnavailable(550),
				ftpExceededStorageAllocation(552),
				ftpFileNameNotAllowed(553)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Indicates the status of the software upgrade process
				for this load module.
				active(1)
				   the load module is active and running on the PIU.

				upgradeStarted(2)
				   a load module will have this status directly
				   after the SRDF info for this module is loaded
				   and the xfSwLmUpgradeAdminStatus of the
				   release was set to upgradeStarted.

				upgradeFinished(3)
				   indicates that this load modules has been retreived
				   and burned into the flash memories.This is the
				   state of load modules that are part of an active
				   release.

				upgradeTested(4)
				  This release is running as test and not committed
				  yet.

				upgradeFailed(5)
				   upgraded has failed for a reason, e.g. file transfer
				   checksum was wrong, see xfSwLmUpgradeFailure.

				upgradeAborted(6)
				   when the manager has aborted the upgrade of the
				   complete release whilst this load module wasn't
				   upgradedFinished yet this will be its status.



				The 50 series errors are reported by the FTP client on
				the node.


				errorInternalError(50)
				   An internal error detected before FTP operation.

				errorFileStorage(51)
				   Error when erasing flash to store the downloaded
				   file at the node.

				ftpPingFailed(52)
				   FTP ping failed.

				ftpNoAccess(53)
				   Not able to send the FTP commands.

				ftpConnectionDetailsMissing(54)
				   FTP connection details are missing.

				ftpConnectionDetailsInvalid(55)
				   FTP connection details are invalid.

				ftpConnectionTimeout(56)
				   FTP connection timeout is detected.

				ftpNoSuchRemoteFile(57)
				   No such remote file exists.

				ftpNoSuchRemoteDir(58)
				   No such remote directory exists.


				The 400 series errors occur when the command was not accepted
				and the requested action did not take place, but the error
				condition is temporary and the action may be requested again.


				ftpServiceNotAvailable(421)
				   Service not available, closing control connection. This
				   may be a reply to any command if the service knows it
				   must shut down. Possible causes are transfer timeouts
				   and/or FTP server resets.

				ftpUnableToOpenDataConnection(425)
				  Can't open data connection. Try changing from PASV to
				  PORT mode.

				ftpConnectionClosed(426)
				  Connection closed and file transfer is aborted. Possible
				  causes are out of local diskspace and loss of connection.


				ftpFileBusy(450)
				  Requested file action not taken. File
				  unavailable (e.g file busy).

				ftpLocalError(451)
				  Requested action aborted due to local error in processing.

				ftpInsufficienStorageSpace(452)
				  Requested action not taken due to insufficient
				  storage space on the server.


				The 500 series errors occur when the command was not accepted
				and the requested action did not take place.


				ftpSyntaxError(501)
				  FTP Syntax error in parameters or arguments.

				ftpCommandNotImplemented(502)
				  FTP Command not implemented.

				ftpBadSequenceCommands(503)
				  Bad sequence of the FTP commands.

				ftpParameterNotImplemented(504)
				  FTP command not implemented for that parameter.

				ftpNotLoggedIn(530)
				  Not logged in. Your username and/or password is being
				  rejected, contact the server adminstrator.

				ftpNeedAccount(532)
				  Need account for storing files.

				ftpFileUnavailable(550)
				  Requested action not taken. File unavailable
				  (e.g.file not found, no access). Contact the server
				  adminstrator.

				ftpExceededStorageAllocation(552)
				  Requested file action aborted.Exceeded storage allocation (for
				  current directory or data set). Contact the server adminstrator.

				ftpFileNameNotAllowed(553)
				  Requested action not taken. File name not allowed. Try changing
				  the file name or getting rid of spaces in the file name.
				"
			::= { xfSwLmUpgradeEntry 7 }


		-- 1.3.6.1.4.1.193.81.2.7.1.10.1.8
		xfSwLmUpgradeProgress OBJECT-TYPE
			SYNTAX Integer32 (0..100)
			UNITS "percent"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object indicates the progress in downloading
				the respective load module when part of an upgrade of
				an inserted PIU."
			::= { xfSwLmUpgradeEntry 8 }


		-- 1.3.6.1.4.1.193.81.2.7.1.10.1.9
		xfSwLmUpgradeFailure OBJECT-TYPE
			SYNTAX INTEGER
				{
				downloadFailure(1),
				programFailure(2),
				noFailure(3)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object specifies the cause of a software
				upgrade failure. "
			::= { xfSwLmUpgradeEntry 9 }


		-- 1.3.6.1.4.1.193.81.2.7.1.10.1.10
		xfSwLmUpgradeDescription OBJECT-TYPE
			SYNTAX SnmpAdminString (SIZE (0..30))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object indicates a textual
				description of the load module, indicating PIU type
				as stated by the entPhysicalDescription MO."
			::= { xfSwLmUpgradeEntry 10 }


		-- 1.3.6.1.4.1.193.81.2.7.1.11
		xfSwGlobalState OBJECT-TYPE
			SYNTAX BITS
				{
				noUpgrade(0),
				sblStarted(1),
				sblWaitForActivate(2),
				sblWaitForCommit(3),
				manualStarted(4),
				manualWaitForActivate(5),
				manualWaitForCommit(6),
				unitUpgrade(7),
				cachingLoadModules(8),
				preparingForTest(9)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This objecty indicates the global state of the
				Software Upgrade process.
				noUpgrade(0), no Software upgrade ongoing

				sblStarted(1), a SBL upgrade is started and SBDF and Load Modules are downloading

				sblWaitForActivate(2), a SBL upgrade is finished and waiting for an activation

				sblWaitForCommit(3), a SBL upgrade is in test phase and waiting for commit

				manualStarted(4), a manual upgrade is started and Load Modules are downloading

				manualWaitForActivate(5), a manual upgrade is finished and waiting for an activation


				manualWaitForCommit(6), a manual upgrade is in test phase and waiting for commit

				unitUpgrade(7), an unit is inserted and in the process of upgrading

				cachingLoadModules(8), software upgrade is in the process of downloading the load
				                       modules for cache.

				preparingForTest(9),   a period after a power-up/restart the node prepares to enter
				                       the test phase. During this period some units might restart
				                       and it is not possible to commit the software upgrade."
			::= { xfSwObjects 11 }


		-- 1.3.6.1.4.1.193.81.2.7.2
		xfSwConformance OBJECT IDENTIFIER ::= { xfSoftwareMIB 2 }


		-- 1.3.6.1.4.1.193.81.2.7.2.1
		xfSwCompliances OBJECT IDENTIFIER ::= { xfSwConformance 1 }


--  this module
-- this module
		-- 1.3.6.1.4.1.193.81.2.7.2.1.1
		xfSwFullCompliance MODULE-COMPLIANCE
			STATUS current
			DESCRIPTION
				"The compliance statement for SNMP entities which
				implement everything."
			MODULE -- this module
				MANDATORY-GROUPS { xfSwGroup, xSwGroupR2 }
			::= { xfSwCompliances 1 }


		-- 1.3.6.1.4.1.193.81.2.7.2.2
		xfSwGroups OBJECT IDENTIFIER ::= { xfSwConformance 2 }


		-- 1.3.6.1.4.1.193.81.2.7.2.2.1
		xfSwGroup OBJECT-GROUP
			OBJECTS { xfSwRelease, xfSwLoadModuleIndex, xfSwLoadModuleProductNumber, xfSwLoadModuleRevision, xfSwLoadModuleOperStatus,
				xfSwReleaseIndex, xfSwReleaseProductNumber, xfSwReleaseRevision, xfSwReleaseAdminStatus, xfSwReleaseOperStatus,
				xfSwActiveRelease, xfSwBootTime, xfSwCommitType, xfSwBoardProductNumber, xfSwBoardRevision,
				xfSwNpuPassiveProductNumber, xfSwNpuPassiveSwitch, xfSwLoadModuleFailure, xfSwNpuPassiveRevision, xfSwBoardStatus
				 }
			STATUS current
			DESCRIPTION
				"Group of all software related objects."
			::= { xfSwGroups 1 }


		-- 1.3.6.1.4.1.193.81.2.7.2.2.2
		xSwGroupR2 OBJECT-GROUP
			OBJECTS { xfSwBoardSuProgress, xfSwLmUpgradeIndex, xfSwLmUpgradeProductNumber, xfSwLmUpgradeRevision, xfSwLmUpgradeAdminStatus,
				xfSwLmUpgradeOperStatus, xfSwBoardMinProductNumber, xfSwBoardMinRevision, xfSwVersionControl, xfSwLoadModuleProgress,
				xfSwLmUpgradeFailure, xfSwBoardTrafficDisturbance, xfSwReleaseSBLType, xfSwLmUpgradeProgress, xfSwAutoUpgrade,
				xfSwAutoDowngrade, xfSwGlobalState, xfSwAcceptFailure, xfSwLoadModuleDescription, xfSwLmUpgradeDescription
				 }
			STATUS current
			DESCRIPTION
				"All objects added for MINI-LINK Traffic Node R2."
			::= { xfSwGroups 2 }


		-- 1.3.6.1.4.1.193.81.2.7.2.2.3
		xfSwObsoleteGroup OBJECT-GROUP
			OBJECTS { xfSwBoardLoadModuleIndex, xfSwBoardLoadModuleType }
			STATUS obsolete
			DESCRIPTION
				"Description."
			::= { xfSwGroups 3 }



	END

--
-- 10_19603-crxr10201_1_software.mi2
--