AMOS Step by Step for Beginners

29
AMOS for new comer Contents 1 The Basics...............Error! Bookmark not defined. 1.1 Managed Object (MO) Concept...................2 1.2 AMOS..........................................2 1.3 MO states.....................................3 1.4 Loading MOs...................................3 1.5 Addressing an MO..............................4 1.6 Examining attributes in an MO.................6 2 Sorting the MO list................................11 3 Alarms and boards..................................12 3.1 Alarms.......................................12 3.2 Node logs....................................12 4 Configuration version..............................14 5 RNC specific information...........................15 5.1 Examining cells and Iub links................15 To quickly check states of all cells in an RNC use str: .............................................15 5.2 Iublink......................................16 5.3 Utrancells...................................17 5.4 Shortcuts....................................19 5.5 RNC Modules..................................20 6 Some basic troubleshooting commands................21 6.1 MO States....................................21 6.2 Node information.............................22 6.3 Linking MOs..................................23 6.4 Checking calls in an RNC.....................24 6.5 Restarts.....................................25 7 References.........................................26

description

AMOS for Beginners

Transcript of AMOS Step by Step for Beginners

AMOS for new comer

Contents

1 The Basics...................................................Error! Bookmark not defined.1.1 Managed Object (MO) Concept...............................................21.2 AMOS.........................................................................................21.3 MO states...................................................................................31.4 Loading MOs.............................................................................31.5 Addressing an MO....................................................................41.6 Examining attributes in an MO................................................6

2 Sorting the MO list................................................................................11

3 Alarms and boards...............................................................................123.1 Alarms......................................................................................123.2 Node logs................................................................................12

4 Configuration version..........................................................................14

5 RNC specific information.....................................................................155.1 Examining cells and Iub links...............................................15To quickly check states of all cells in an RNC use str:....................155.2 Iublink......................................................................................165.3 Utrancells................................................................................175.4 Shortcuts.................................................................................195.5 RNC Modules..........................................................................20

6 Some basic troubleshooting commands...........................................216.1 MO States................................................................................216.2 Node information....................................................................226.3 Linking MOs............................................................................236.4 Checking calls in an RNC......................................................246.5 Restarts...................................................................................25

7 References............................................................................................26

1 Basics

1.1 Managed Object (MO) Concept

The MO is a way of modelling some resources in a Cello node so they can be easily accessed by the O&M engineer for configuration, trouble-shooting and performance management purposes. Each MO instance belongs to an “MO Class”, eg: PlugInUnit, Program, AtmPort, etc. An MO Class is used to modelize all resources of the same type. The MOs are organised in a hierarchical structure of parent and child MOs. For example:RncFunction=1,UtranCell=U0525,Fach=1Rncfunction is a parent MO to utrancellUtranCell is a parent MO to FachFach is a child Mo to UtranCell

Each MO class contains a number of attributes which are used to store configuration data or performance measurement data. - Configuration management (eg: administrativestate, externalVci, etc.). Stored permanently in the

database copy on the harddisk.- Fault management (eg: availabilityStatus, operationalState, etc.). Not stored permantenly.- Performance management (eg: pmReceivedAtmCells, pmTransmittedAtmCells, etc.). Not stored

permanently.The Managed Object Model (MOM) is a reference document describing all the MO Classes that can exist in a node, together with their attributes and actions.

1.2 AMOS

It is text-based and uses command-line interface. It must be run within a unix shell window. This tool that allows us to perform operations/configurations on a node as it is useful to check the states and troubleshooting of MOs. To connect to RNC for example using AMOS from your home directory in OSS:

mmadian@ossrcsv> moshell <rncname>

If you don’t have AMOS you can use moshell with updated ipdatabase or the IP address.

mmadian@ossrcsv> moshell SRX01

__ __ ____ _____ /\ | \/ |/ __ \ / ____| / \ | \ / | | | | (___ / /\ \ | |\/| | | | |\___ \ / ____ \| | | | |__| |____) | /_/ \_\_| |_|\____/|_____/ OSS Framework for MoShell-8.0a $amosrb_pid = 29305

Checking ip contact...OK

HELP MENU : h

BASIC MO COMMANDS : mOTHER MO COMMANDS : nOTHER COMMANDS : oPM COMMANDS : pQUIT : q

SRX01>

All commands are run in the same way as with moshell except the following commands which are disabled:- fset, fget, facc- pcr, pset, pbl, pdebAn additional process checks every moshell command for permission and license validity.All moshell utilities (e.g. mobatch) are also available in AMOS.AMOS documentation:- The AMOS UG, available from OSSRC CPI - The document /opt/ericsson/amos/moshell/UserGuide.pdf in OSS-RC

Differences between AMOS and moshell: - http://utran01.epa.ericsson.se/moshell/forum_viewtopic.php?4.2717

1.3 MO states

We are most concerned with the administrative and operational states of MOs. Not all MOs have an administrative state; only the ones that can be locked and unlocked (e.g. utrancell).administrativeState can be UNLOCKED or LOCKEDoperationalState can be DISABLED or ENABLEDSome MOs can be ENABLED when LOCKED, others DISABLED when LOCKED (e.g. utrancell). This can be rather confusing, but correct according to the specifications!

1.4 Loading MOs

To connect to the MO interface, we must to load the MOs into the moshell session before we can look at it. We generally used to load them all by run the command “lt all”.The command “lt all” reads the list of all MOs currently existing in the MIB and their LDN (Local Distinguished Name).Moshell builds a table containing the list of all MO LDNs and assigns each of them an arbitrary proxy number.

SRX01> lt all

Last MO: 18415. Loaded 18415 MOs. Total: 18416 MOs.

Historically, you just loaded some as the memory wasn’t big enough. This is probably not an issue now, but if you need to know:To load an MO:lt <mo> - Load mo type

SRX01> lt UtranCell

Load Proxys for MOs of following type...===================================================================================ExternalUtranCellUtranCell===================================================================================

Please Confirm [y/n]: y

Last MO: 414. Loaded 414 MOs. Total: 415 MOs. MO Class: ExternalUtranCell.Last MO: 509. Loaded 95 MOs. Total: 510 MOs. MO Class: UtranCell.

It can also be useful to load the ‘child’ MOs so that they can be also examinedTo load an MO and its child MOs:ltc <mo>- Load mo Types and all subsequent Childrenltc utrancell – this enables you to check the utrancell and its child MOs (common channels)

we can load the children of an MO (given its proxy or rdn)lc <proxy number>

SRX01> lc 468

Load Proxys for children of following MOs...=================================================================================== 468 RncFunction=1,UtranCell=U1281A===================================================================================

Please Confirm [y/n]: y

Last MO: 571. Loaded 65 MOs. Total: 572 MOs.

And loading the children and all subsequent chidlren of an MO (given its proxy or rdn)lcc <proxy number>

SRX01> lcc 468

100520-02:26:09 10.128.20.65 8.0a RNC_NODE_MODEL_K_9_115 stopfile=/tmp/5859

Load Proxys for children of following MOs and all subsequent children...=================================================================================== 468 RncFunction=1,UtranCell=U1281A===================================================================================

Please Confirm [y/n]: y

Last MO: 637. Loaded 66 MOs. Total: 573 MOs.

1.5 Addressing an MO

The MOs are organised in a hierarchical structure. Each MO instance is uniquely identified in the node by its Local Distinguished Name (LDN). The string located at the far right of an LDN, just after the last comma, is called a Relative Distinguished Name (RDN). It is a unique way of addressing an MO instance in relation to its closest parent. E.g. RncFunction=1,UtranCell= U1281A,Hsdsch=1 – LDN

Hsdsch=1 - RDNYou can address an MO by using its number, LDN or RDN. Note that in general, any get, set, st, bl, deb etc command will need an “l” in front of it to use the LDN. Get, set etc can be used with the RDN or number.E.g. Using its Proxy number:

SRX01> get 4114

100520-01:30:23 10.128.20.65 8.0a RNC_NODE_MODEL_K_9_115 stopfile=/tmp/14434================================================================================================================4114 RncFunction=1,UtranCell=U1281A,Hsdsch=1================================================================================================================HsdschId 1administrativeState 1 (UNLOCKED)availabilityStatus 0 (NO_STATUS)codeThresholdPdu656 6cqiFeedbackCycle 8

deltaAck1 5deltaAck2 7deltaCqi1 4deltaCqi2 6deltaNack1 5deltaNack2 7enhancedL2Support 0 (OFF)hsMeasurementPowerOffset 80initialAckNackRepetitionFactor 1initialCqiRepetitionFactor 1numHsPdschCodes 1numHsScchCodes 1operationalState 1 (ENABLED)qam64Support 0 (OFF)userLabel ================================================================================================================Total: 1 MOs

Using its RDN:

SRX01> get IubLink=Iub_UCAI1281

100520-01:33:37 10.128.20.65 8.0a RNC_NODE_MODEL_K_9_115 stopfile=/tmp/14434================================================================================================================18185 RncFunction=1,IubLink=Iub_UCAI1281================================================================================================================IubLinkId Iub_UCAI1281administrativeState 1 (UNLOCKED)atmUserPlaneTermSubrackRef Subrack=ES-4availabilityStatus 0 (NO_STATUS)cachedRemoteCpIpAddress1 cachedRemoteCpIpAddress2 controlPlaneTransportOption Struct{2} >>> 1.atm = 1 (TRUE) >>> 2.ipv4 = 0 (FALSE)dlHwAdm 100l2EstReqRetryTimeNbapC 5l2EstReqRetryTimeNbapD 5operationalState 1 (ENABLED)rbsId 1281remoteCpIpAddress1 000.000.000.000remoteCpIpAddress2 000.000.000.000reservedBy [3] = >>> reservedBy = RncFunction=1,UtranCell=U1281A >>> reservedBy = RncFunction=1,UtranCell=U1281B >>> reservedBy = RncFunction=1,UtranCell=U1281CrncModuleRef RncModule=42sctpRef spare 0ulHwAdm 100userLabel userPlaneGbrAdmBandwidthDl 10000userPlaneGbrAdmBandwidthUl 10000userPlaneGbrAdmEnabled 0 (FALSE)userPlaneGbrAdmMarginDl 0userPlaneGbrAdmMarginUl 0userPlaneIpResourceRef userPlaneTransportOption Struct{2} >>> 1.atm = 1 (TRUE) >>> 2.ipv4 = 0 (FALSE)================================================================================================================Total: 1 MOs

Using its LDN:

SRX01> lget RncFunction=1,UtranCell=U1281A,Hsdsch=1,Eul=1

100520-01:34:38 10.128.20.65 8.0a RNC_NODE_MODEL_K_9_115 stopfile=/tmp/14434================================================================================================================

14683 RncFunction=1,UtranCell=U1281A,Hsdsch=1,Eul=1

EulId 1administrativeState 1 (UNLOCKED)availabilityStatus 0 (NO_STATUS)edchTti2Support 0 (OFF)eulMaxTargetRtwp -499numEagchCodes 1numEhichErgchCodes 2operationalState 1 (ENABLED)userLabel ================================================================================================================Total: 1 MOs

1.6 Examining attributes in an MO

Can examine all parameters in an MO:get <mo>Or a specific one if you know the attribute nameget <mo> <attribute name>

SRX01> get UtranCell=U1281A maximumTransmissionPower

100520-01:36:07 10.128.20.65 8.0a RNC_NODE_MODEL_K_9_115 stopfile=/tmp/14434===========================================================================================================MO Attribute Value=============================================================================================================UtranCell=U1281A maximumTransmissionPower 475=============================================================================================================Total: 1 MOs

You can also do this with more than 1 attribute by separating them with “|” e.g.

SRX01> get UtranCell=U1281A maximumTransmissionPower|primaryscramblingcode

100520-01:40:31 10.128.20.65 8.0a RNC_NODE_MODEL_K_9_115 stopfile=/tmp/14434=============================================================================================================MO Attribute Value=============================================================================================================UtranCell=U1281A maximumTransmissionPower 475UtranCell=U1281A primaryScramblingCode 165=============================================================================================================Total: 1 MOs

hget is also a nice command, as you get all attributes for an MO on one line, nice if you are looking at several MOs:

SRX01> hget UtranCell=U1281 maximumTransmissionPower|primaryscramblingcode

100520-01:42:04 10.128.20.65 8.0a RNC_NODE_MODEL_K_9_115 stopfile=/tmp/14434.=============================================================================================================MO maximumTransmissionPower primaryScramblingCode=============================================================================================================UtranCell=U1281B 475 166 UtranCell=U1281A 475 165 UtranCell=U1281C 475 167 =============================================================================================================Total: 3 MOsAdded 3 MOs to group: hget_group

For faster response, moshell performs the “get” operation on many MOs at a time and many attributes at a time.The drawback is in case one attribute or MO cannot be read then the “get” response is corrupted for all MO/attributes that were read in that request.The command “speed” can be used to specify the max number of MOs in each “get” request.

The command “sget” can be used to read one attribute at a time.

Example: When looking for disabled MOs, it is also recommended to include the !!! to look for MOs whose state cannot be read

RNC11> st . dis|!!!

===================================================================================Proxy Adm State Op. State MO=================================================================================== 74 1 (UNLOCKED) 0 (DISABLED) Equipment=1,Subrack=MS,Slot=26,PlugInUnit=1,ExchangeTerminal=1,Os155SpiTtp=1 75 0 (DISABLED) Equipment=1,Subrack=MS,Slot=26,PlugInUnit=1,ExchangeTerminal=1,Os155SpiTtp=1,Vc4Ttp=1 520 1 (UNLOCKED) 0 (DISABLED) Equipment=1,Subrack=MS,Slot=7,PlugInUnit=1,ExchangeTerminal=1,Os155SpiTtp=2 521 0 (DISABLED) Equipment=1,Subrack=MS,Slot=7,PlugInUnit=1,ExchangeTerminal=1,Os155SpiTtp=2,Vc4Ttp=1 522 1 (UNLOCKED) 0 (DISABLED) Equipment=1,Subrack=MS,Slot=7,PlugInUnit=1,ExchangeTerminal=1,Os155SpiTtp=1 523 0 (DISABLED) Equipment=1,Subrack=MS,Slot=7,PlugInUnit=1,ExchangeTerminal=1,Os155SpiTtp=1,Vc4Ttp=1 547 1 (UNLOCKED) 0 (DISABLED) Equipment=1,Subrack=MS,Slot=5,PlugInUnit=1,TimingUnit=1,TuSyncRef=1 556 1 (UNLOCKED) 0 (DISABLED) Equipment=1,Subrack=MS,Slot=4,PlugInUnit=1,TimingUnit=1,TuSyncRef=1 1684 0 (DISABLED) TransportNetwork=1,AtmPort=MS-7-2-1 1719 0 (DISABLED) TransportNetwork=1,SccpSp=Iu,SccpScrc=1,SccpApRemote=Iuc-2351-2300 1844 0 (DISABLED) TransportNetwork=1,AtmPort=MS-7-1-1 2473 0 (DISABLED) TransportNetwork=1,Aal2Sp=1,Aal2Ap=Iuc-2351-2300 2561 0 (DISABLED) TransportNetwork=1,AtmPort=MS-26-1-1 2623 !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19" !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19" TransportNetwork=1,Aal2PathVccTp=Iub-3-51 2624 !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19" !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19" TransportNetwork=1,Aal2PathVccTp=Iub-3-48 2625 !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19" !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19" TransportNetwork=1,Aal2PathVccTp=Iub-3-47 2627 !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19" !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19" TransportNetwork=1,Aal2PathVccTp=Iub-3-39 2628 !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19" TransportNetwork=1,Aal5TpVccTp=Iub-20-45..... 7361 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-3-3,Hsdsch=1,Eul=1 7377 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-3-2,Hsdsch=1,Eul=1 7403 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-3-1,Hsdsch=1,Eul=1 7593 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-22-3,Hsdsch=1,Eul=1 7620 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-22-2,Hsdsch=1,Eul=1 7658 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-22-1,Hsdsch=1,Eul=1 7802 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-2-3,Hsdsch=1,Eul=1 7829 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-2-2,Hsdsch=1,Eul=1 7833 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-2-1 7840 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-2-1,Fach=1028 7845 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-2-1,Hsdsch=1 7846 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-2-1,Hsdsch=1,Eul=1 7850 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-2-1,Pch=1028 7855 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-2-1,Rach=1028===================================================================================Total: 155 MOs

What happens in this case is that the state of a few MOs could not be read due to some fault on the node.Since moshell is reading the state of many MOs at the same time, the corruption appears to be on many MOs.To force moshell to read only one MO at a time, use the command “speed 1”

RNC11> speed 1

New speed: 1

RNC11> st . dis|!!!

===================================================================================Proxy Adm State Op. State MO=================================================================================== 74 1 (UNLOCKED) 0 (DISABLED) Equipment=1,Subrack=MS,Slot=26,PlugInUnit=1,ExchangeTerminal=1,Os155SpiTtp=1 75 0 (DISABLED) Equipment=1,Subrack=MS,Slot=26,PlugInUnit=1,ExchangeTerminal=1,Os155SpiTtp=1,Vc4Ttp=1 520 1 (UNLOCKED) 0 (DISABLED) Equipment=1,Subrack=MS,Slot=7,PlugInUnit=1,ExchangeTerminal=1,Os155SpiTtp=2 521 0 (DISABLED) Equipment=1,Subrack=MS,Slot=7,PlugInUnit=1,ExchangeTerminal=1,Os155SpiTtp=2,Vc4Ttp=1 522 1 (UNLOCKED) 0 (DISABLED) Equipment=1,Subrack=MS,Slot=7,PlugInUnit=1,ExchangeTerminal=1,Os155SpiTtp=1 523 0 (DISABLED) Equipment=1,Subrack=MS,Slot=7,PlugInUnit=1,ExchangeTerminal=1,Os155SpiTtp=1,Vc4Ttp=1 547 1 (UNLOCKED) 0 (DISABLED) Equipment=1,Subrack=MS,Slot=5,PlugInUnit=1,TimingUnit=1,TuSyncRef=1 556 1 (UNLOCKED) 0 (DISABLED) Equipment=1,Subrack=MS,Slot=4,PlugInUnit=1,TimingUnit=1,TuSyncRef=1 1684 0 (DISABLED) TransportNetwork=1,AtmPort=MS-7-2-1 1719 0 (DISABLED) TransportNetwork=1,SccpSp=Iu,SccpScrc=1,SccpApRemote=Iuc-2351-2300 1844 0 (DISABLED) TransportNetwork=1,AtmPort=MS-7-1-1 2473 0 (DISABLED) TransportNetwork=1,Aal2Sp=1,Aal2Ap=Iuc-2351-2300 2561 0 (DISABLED) TransportNetwork=1,AtmPort=MS-26-1-1 2678 0 (DISABLED) TransportNetwork=1,Mtp3bSpItu=Iu,Mtp3bAp=Qaal2-Iuc-2351-2300 2679 0 (DISABLED) TransportNetwork=1,Mtp3bSpItu=Iu,Mtp3bSrs=Iuc-2351-2300 2680 0 (DISABLED) TransportNetwork=1,Mtp3bSpItu=Iu,Mtp3bSrs=Iuc-2351-2300,Mtp3bSr=Iuc-2351-2300 2681 !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19" TransportNetwork=1,Mtp3bSpItu=Iu,Mtp3bSls=Iuc-2351-2300 2682 !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19" TransportNetwork=1,Mtp3bSpItu=Iu,Mtp3bSls=Iuc-2351-2300,Mtp3bSlItu=Iuc-2351-2300 2683 0 (DISABLED) TransportNetwork=1,Mtp3bSpItu=Iu,Mtp3bAp=Iuc-2351-2300 3156 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-21-3,Hsdsch=1,Eul=1 3177 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-21-2,Hsdsch=1,Eul=1 3201 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-21-1,Hsdsch=1,Eul=1 3274 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-6,Rach=1021 3275 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-6,Pch=1021 3282 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-6,Fach=1021 3285 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-5,Rach=1020 3292 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-5,Pch=1020 3297 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-5,Fach=1020 3305 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-4,Rach=1019 3309 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-4,Fach=1019 3313 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-4,Pch=1019 3326 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-3,Fach=1018 3338 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-3,Pch=1018 3343 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-3,Hsdsch=1,Eul=1 3344 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-3,Rach=1018 3352 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-2,Fach=1017 3360 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-2,Pch=1017 3366 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-2,Hsdsch=1,Eul=1 3367 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-2,Rach=1017 3372 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-1,Fach=1016 3387 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-1,Rach=1016 3388 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-1,Pch=1016 3393 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-1-1,Hsdsch=1,Eul=1 6475 0 (DISABLED) RncFunction=1,Ranap=Iuc-2300 6723 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-5-3,Hsdsch=1,Eul=1 6750 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-5-2,Hsdsch=1,Eul=1 6769 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-5-1,Hsdsch=1,Eul=1 6920 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-24-3,Hsdsch=1,Eul=1 6938 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-24-2,Hsdsch=1,Eul=1

6960 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-24-1,Hsdsch=1,Eul=1 7044 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-4-3,Hsdsch=1,Eul=1 7061 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-4-2,Hsdsch=1,Eul=1 7083 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-4-1,Hsdsch=1,Eul=1 7214 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-23-3,Hsdsch=1,Eul=1 7251 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-23-2,Hsdsch=1,Eul=1 7280 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-23-1,Hsdsch=1,Eul=1 7361 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-3-3,Hsdsch=1,Eul=1 7377 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-3-2,Hsdsch=1,Eul=1 7403 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-3-1,Hsdsch=1,Eul=1 7593 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-22-3,Hsdsch=1,Eul=1 7620 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-22-2,Hsdsch=1,Eul=1 7658 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-22-1,Hsdsch=1,Eul=1 7802 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-2-3,Hsdsch=1,Eul=1 7829 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-2-2,Hsdsch=1,Eul=1 7833 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-2-1 7840 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-2-1,Fach=1028 7845 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-2-1,Hsdsch=1 7846 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-2-1,Hsdsch=1,Eul=1 7850 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-2-1,Pch=1028 7855 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=Iub-2-1,Rach=1028===================================================================================Total: 70 MOs

Have a look at the faulty MOs. Only 2682 is faulty. Since moshell reads all attributes of an MO in one request, if some attributes cannot be read, it affects all the other attributes.

RNC11> get 2681 2682

================================================================================================================2681 TransportNetwork=1,Mtp3bSpItu=Iu,Mtp3bSls=Iuc-2351-2300================================================================================================================Mtp3bSlsId Iuc-2351-2300availabilityStatus 1056 (DEPENDENCY_FAILED)cLinkAnsi falsemtp3bSrsId Mtp3bSpItu=Iu,Mtp3bSrs=Iuc-2351-2300operationalState 0 (DISABLED)periodicLinkTestFlag truereservedBy [1] = >>> reservedBy = TransportNetwork=1,Mtp3bSpItu=Iu,Mtp3bSrs=Iuc-2351-2300,Mtp3bSr=Iuc-2351-2300usageState 0 (IDLE)userLabel ================================================================================================================2682 TransportNetwork=1,Mtp3bSpItu=Iu,Mtp3bSls=Iuc-2351-2300,Mtp3bSlItu=Iuc-2351-2300================================================================================================================Mtp3bSlItuId !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"autoStartLink !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"availabilityStatus !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"linkState !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"operationalState !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"prioBeforeSio !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"proceduralState !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"

signLinkCode !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"tpId !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"usageState !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"userLabel !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"================================================================================================================Total: 2 MOs

To read attributes only one at a time, use command “sget” (“slow get”).We are then able to read some of the attributes that are not affected by the corruption.

RNC11> sget 2682

================================================================================================================2682 TransportNetwork=1,Mtp3bSpItu=Iu,Mtp3bSls=Iuc-2351-2300,Mtp3bSlItu=Iuc-2351-2300================================================================================================================Mtp3bSlItuId Iuc-2351-2300autoStartLink !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"availabilityStatus !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"linkState !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"operationalState !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"prioBeforeSio !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"proceduralState !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"signLinkCode !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"tpId NniSaalTp=RANAP-Iuc-2351-2300usageState !!!! Processing failure :se.ericsson.cello.moframework.FroRequestFailedException TAG :"FroRequestFailed" VARIABLES :"$MO typename" = "Mtp3bSlItu", "$FRO typename" = "Mtp3bSlItu", "$Request type" = "GetAttrReq: SCC_MGMT_FRO_NON_EXIST", "$result" = "19"userLabel Mtp3sSl Iuc 2351-2300================================================================================================================Total: 1 MOs

2 Sorting the MO listBy default, the MO list is sorted by proxy number.It’s possible to sort it by alphabetical order instead. Example:

Default behaviour, sorted by proxy number:

STP49> pr uerc=

===================================================================================Proxy MO=================================================================================== 2561 RncFunction=1,UeRc=0 2577 RncFunction=1,UeRc=172 2582 RncFunction=1,UeRc=133

2583 RncFunction=1,UeRc=132... 5882 RncFunction=1,UeRc=99 5898 RncFunction=1,UeRc=129===================================================================================Total: 182 MOs

Activate alphabetical sorting:

STP49> s+

Sorting of MO list: activated.

STP49> pr uerc=

===================================================================================Proxy MO=================================================================================== 2561 RncFunction=1,UeRc=0 2577 RncFunction=1,UeRc=1 2582 RncFunction=1,UeRc=2 2583 RncFunction=1,UeRc=3... 5882 RncFunction=1,UeRc=180 5898 RncFunction=1,UeRc=181===================================================================================Total: 182 MOs

Return to default behaviour:

STP49> s-Sorting of MO list: deactivated.

3 Alarms and boards

3.1 Alarms

The RNC alarm list indicates all alarms presently on the RNC. This can be accessed by command:It is possible to combine several options, eg: al, ala, altk, alatk, etc.al: active alarm list is printed in overview format, only four fields are shown per alarm.ala: same as al, but the full detailed list is added underneath the overview table.alt: same as al, but the time field is added to the table and the alarms are sorted chronologically.alk: same as al, but the list is separated in two parts, one for the unacknowledged alarms, and one for the acknowledged alarms.

Note: in alt and alk, the severity field is shortened to one character:C for CriticalM for Majorm for minorw for warning

3.1.1 Examining the board states on the RNC

The cab command can be used to check if all the boards on the RNC are operating normally.

cab : prints hw info and led status for all boards except xp boardscabx : prints hw info and led status for all boards including xp boards (eg: TMA, MCPA, Fans, etc.)cabl : prints hw info, led status, and processor load, for all boards except xp boards.cabs : prints hw info, led status, and program list, for all boards except xp boards.cabr : prints all board restarts . Abnormal restarts are shown in red.caba : prints only abnormal board restarts.cabd : print disk usage. Disks that are getting over a certain limit will appear in color. The limit can be defined in cabview file. You might need to clean the discs that show red.

3.2 Node logs

You can also check various logs to check what has happened in a node before:lga – alarm loglge – event loglgv – availability loglgs – system loglgu – upgrade loglgo – command log (i.e. when someone has done an action, create delete or set on a MO)lgy – security loggl – COLI log (i.e. anything typed in from moshell COLI)lgh – HILI loglgd – node restarts and downtimelgx – alarms on specific dateslgu – upgrade log (for SW upgrades)

You can also add a suffix at the end:m – merge logs togetheri – inverse orderc – csv formatf- fetch new logsr – forced update of logs, i.e. refresh the cache

And you can specify the amount of time, e.g 10m is 10 minutesYou can combine these so as to see several things at once, e.g.

lgolrm 10m

I find it best to merge if you’re doing this so that you can see everything together in chronological order. In the above case you would see COLI and command log merged, i.e.:SRX01> lgolrm 10m

======================================================================================================Timestamp (UTC) Type Merged Log Entry======================================================================================================2010-05-19 22:39:27 MO-A SET RncFunction=1,IurLink=iurlink_prx06,ExternalUtranCell=U2305C cellCapability edchSupport=0|edchTti2Support=0|hsdschSupport=0|enhancedL2Support=02010-05-19 22:39:27 MO-A SET RncFunction=1,IurLink=iurlink_prx06,ExternalUtranCell=U2305B cellCapability edchSupport=0|edchTti2Support=0|hsdschSupport=0|enhancedL2Support=0..2010-05-19 22:45:31 COLI moshelluser Coli access granted /telnet_10.74.4.16:48436 echo "EndOfPrint"2010-05-19 22:45:32 COLI moshelluser Coli access granted /telnet_10.74.4.16:48436 exit

You can also specify time and day if you want to know what’s happened in a certain period, e.g. for 10th April 2009 between 13:12 and 13:13, the merged and refreshed command and COLI log:

SRX01> lgo -s 20100518.2359 -e 20100519.0200

======================================================================================================Timestamp (UTC) Description======================================================================================================2010-05-19 00:14:05 MO-A SET RncFunction=1,IurLink=iurlink_prx06,ExternalUtranCell=U0371A cellCapability edchSupport=0|edchTti2Support=0|hsdschSupport=0|enhancedL2Support=02010-05-19 00:14:27 MO-A SET RncFunction=1,IurLink=iurlink_prx06,ExternalUtranCell=U0371A cellCapability edchSupport=1|edchTti2Support=0|hsdschSupport=1|enhancedL2Support=02010-05-19 01:12:10 MO-A SET RncFunction=1,IurLink=iurlink_prx06,ExternalUtranCell=U0341A cellCapability edchSupport=0|edchTti2Support=0|hsdschSupport=0|enhancedL2Support=0....2010-05-19 01:48:56 MO-A SET RncFunction=1,IurLink=iurlink_prx06,ExternalUtranCell=U0341A qRxLevMin -1112010-05-19 01:48:56 MO-A SET RncFunction=1,IurLink=iurlink_prx06,ExternalUtranCell=U0341A cId 34112010-05-19 01:48:56 MO-A SET RncFunction=1,IurLink=iurlink_prx06,ExternalUtranCell=U0341A lac 310612010-05-19 01:48:56 MO-A SET RncFunction=1,IurLink=iurlink_prx06,ExternalUtranCell=U0341A rac 12010-05-19 01:51:37 MO-A SET RncFunction=1,IurLink=iurlink_prx06,ExternalUtranCell=U0341A cellCapability edchSupport=1|edchTti2Support=0|hsdschSupport=1|enhancedL2Support=02010-05-19 01:51:37 MO-A SET RncFunction=1,IurLink=iurlink_prx06,ExternalUtranCell=U0341B cellCapability edchSupport=1|edchTti2Support=0|hsdschSupport=1|enhancedL2Support=02010-05-19 01:51:37 MO-A SET RncFunction=1,IurLink=iurlink_prx06,ExternalUtranCell=U0341C cellCapability edchSupport=1|edchTti2Support=0|hsdschSupport=1|enhancedL2Support=0

4 Configuration version

You need to know which dump and SW the node is operating on, which can be done with this commands:

SRX01> cvcu

=============================================================================================================100520-03:07 CV Name Upgrade Package Release=============================================================================================================Startable: SRX01_CR5144 CXP9013831_R9YC/24 P7.1 (CPP_7.0.3.10.1)Loaded: SU_CXP9013831_R9YC%24_100430_0036 CXP9013831_R9YC/24 P7.1 (CPP_7.0.3.10.1)Executing: SRX01_CR5144 CXP9013831_R9YC/24 P7.1 (CPP_7.0.3.10.1)Last created: SRX01_CR5144 CXP9013831_R9YC/24 P7.1 (CPP_7.0.3.10.1)-------------------------------------------------------------------------------------------------------------Current UpgradePkg: UpgradePackage=CXP9013831_R9YC/24 CXP9013831_R9YC/24 P7.1 (CPP_7.0.3.10.1)AutoCreatedCV: EnabledRollback status: Rollback is offRollback init timer: 2880Rollback init counter: 2=============================================================================================================

You can check which other dumps exist with this command:

SRX01> cvls

================================================================================================================100520-03:08 CV Name Upgrade Package Release================================================================================================================Startable: SRX01_CR5144 CXP9013831_R9YC/24 P7.1 (CPP_7.0.3.10.1)Loaded: SU_CXP9013831_R9YC%24_100430_0036 CXP9013831_R9YC/24 P7.1 (CPP_7.0.3.10.1)Executing: SRX01_CR5144 CXP9013831_R9YC/24 P7.1 (CPP_7.0.3.10.1)Last created: SRX01_CR5144 CXP9013831_R9YC/24 P7.1 (CPP_7.0.3.10.1)-------------------------------------------------------------------------------------------------------------------Current UpgradePkg: UpgradePackage=CXP9013831_R9YC/24 CXP9013831_R9YC/24 P7.1 (CPP_7.0.3.10.1)AutoCreatedCV: EnabledRollback status: Rollback is offRollback init timer: 2880Rollback init counter: 2================================================================================================================UP name ProductData CVs LMs PrDate LastCV state Release CompatIndex

================================================================================================================CXP9013831_R9UB CXP9013831_R9UB 8 374 090929 100113 IDLE, UPGRADE_COMPLETED P7.1.2 (CPP7.0.3.4-EP5) RncMOM_BA2CXP9013831_R9UB/4 CXP9013831_R9UB/4 11 374 091109 100214 IDLE, UPGRADE_COMPLETED P7.1.2-4 (EP9-CPP_7.0.3.4) RncMOM_BA2CXP9013831_R9YC CXP9013831_R9YC 2 374 091217 100214 IDLE, UPGRADE_COMPLETED P7.1.4 (EP-4CPP7.0.3.10) RncMOM_BA2CXP9013831_R9YC/6 CXP9013831_R9YC/6 19 374 100121 100429 IDLE, UPGRADE_COMPLETED P7.1.4-4 (EP8-CPP 7.0.3.10.1) RncMOM_BA2CXP9013831_R9YC/24 CXP9013831_R9YC/24 6 374 100411 100519 IDLE, UPGRADE_COMPLETED P7.1 (CPP_7.0.3.10.1) RncMOM_BA2================================================================================================================CV Name Creation Date UpgradePackage Release Type Operator Comment================================================================================================================SU_CXP9013831_R9YC%24_100430_0036 2010-04-30 00:36 CXP9013831_R9YC/24 P7.1 upgr_tol CPP Temp. CV autocreated at SUFi_CXP9013831_R9YC%24_100430_0043 2010-04-30 00:43 CXP9013831_R9YC/24 P7.1 other CPP Final CV autocreated at SURb_CXP9013831_R9YC%24_100430_0016 2010-04-30 00:16 CXP9013831_R9YC/6 P7.1.4-4 other CPP Rollb. CV autocreated at SUFi_CXP9013831_R9YC%24_100430_0043 2010-04-30 00:43 CXP9013831_R9YC/24 P7.1 other CPP Final CV autocreated at SURb_CXP9013831_R9YC%24_100430_0016 2010-04-30 00:16 CXP9013831_R9YC/6 P7.1.4-4 other CPP Rollb. CV autocreated at SUSRX01_after_upgrade 2009-12-15 01:38 CXP9013831_R9UB P7.1.2 other eraarif noneRb_CXP9013831_R9UB%4_091216_0015 2009-12-16 00:16 CXP9013831_R9UB P7.1.2 other CPP Rollb. CV autocreated at SUFi_CXP9013831_R9UB%4_091216_0108 2009-12-16 01:08 CXP9013831_R9UB/4 P7.1.2-4 other CPP Final CV autocreated at SUSRX01_after_091216 2009-12-16 01:19 CXP9013831_R9UB/4 P7.1.2-4 other eraarif nonebefore_iur_prx06 2009-12-21 12:23 CXP9013831_R9UB P7.1.2 other EHIDBAY noneafter_iur_prx06 2009-12-21 12:49 CXP9013831_R9UB P7.1.2 other EHIDBAY noneafter_prx06_numberDirection_201120403 2009-12-22 12:09 CXP9013831_R9UB P7.1.2 other EHIDBAY noneprx06_numberDirection_201120403_final 2009-12-22 12:12 CXP9013831_R9UB P7.1.2 other EHIDBAY nonebefore_oss_upgrade 2010-05-02 18:46 CXP9013831_R9YC/24 P7.1 other mgamal noneAu_CXP9013831_R9YC%24_100518_0400 2010-05-18 04:00 CXP9013831_R9YC/24 P7.1 autocreate CPP Daily autocreated CVAu_CXP9013831_R9YC%24_100519_0400 2010-05-19 04:00 CXP9013831_R9YC/24 P7.1 autocreate CPP Daily autocreated CVSRX01_CR5144 2010-05-19 23:10 CXP9013831_R9YC/24 P7.1 other arif none================================================================================================================>>> Total: 48 CV's, 5 UP's

5 RNC specific information

5.1 Examining cells and Iub links

To quickly check states of all cells in an RNC use str:

SRX01> str..............................................................................................................................Following 27 sites are up:---------------------------------------------------------------------------------------------------------------------MOD IUBLINK CELLNAMES CFRPHEM1 CFRPHEM2 CFRPHEM3 ICDS TN ATMPORTS--------------------------------------------------------------------------------------------------------------------- 2 Iub_UCAI2424 U2424-A/B/C 111111 111111 111111 1111 A 3 Iub_UCAI2296 U2296-A/B/C 111111 111111 111111 1111 A 3 Iub_UCAI2316 U2316-A/B/C 111111 111111 111111 1111 A 3 Iub_UCAI2427 U2427-A/B/C 111111 111111 111111 1111 A 4 Iub_UCAI0569 U0569-A 111111 1111 A 4 Iub_UCAI2140 U2140-A/B/C 111111 111111 111111 1111 A 5 Iub_UCAI2149 U2149-A/B/C 111111 111111 111111 1111 A 5 Iub_UCAI2409 U2409-A/B/C 111111 111111 111111 1111 A 5 Iub_UCAI2692 U2692-A/B/C 111111 111111 111111 1111 A 6 Iub_UCAI2315 U2315-A/B/C 111111 111111 111111 1111 A 6 Iub_UCAI2691 U2691-A/B/C 111111 111111 111111 1111 A 7 Iub_UCAI0309 U0309-A/B/C 111111 111111 111111 1111 A 7 Iub_UCAI2141 U2141-A/B/C 111111 111111 111111 1111 A 9 Iub_UCAI2138 U2138-A/B/C 111111 111111 111111 1111 A 10 Iub_UCAI1280 U1280-A/B/C 111111 111111 111111 1111 A 10 Iub_UCAI2688 U2688-A/B/C 111111 111111 111111 1111 A 11 Iub_UCAI1673 U1673-A/B/C 111111 111111 111111 1111 A

12 Iub_UCAI2139 U2139-A/B/C 111111 111111 111111 1111 A 25 Iub_UCAI2136 U2136-A/B/C 111111 111111 111111 1111 A 30 Iub_UCAI2408 U2408-A/B/C 111111 111111 111111 1111 A 31 Iub_UCAI0133 U0133-A/B/C 111111 111111 111111 1111 A 32 Iub_UCAI0136 U0136-A/B/C 111111 111111 111111 1111 A 35 Iub_UCAI0134 U0134-A/B/C 111111 111111 111111 1111 A 35 Iub_UCAI2685 U2685-A/B/C 111111 111111 111111 1111 A 42 Iub_UCAI1281 U1281-A/B/C 111111 111111 111111 1111 A 42 Iub_UCAI2898 U2898-A/B/C 111111 111111 111111 1111 A 43 Iub_UCAI1845 U1845-A/B 111111 111111 1111 A ---------------------------------------------------------------------------------------------------------------------

Following 12 sites are totally or partially unavailable:---------------------------------------------------------------------------------------------------------------------MOD IUBLINK CELLNAMES CFRPHEM1 CFRPHEM2 CFRPHEM3 ICDS TN ATMPORTS--------------------------------------------------------------------------------------------------------------------- 2 Iub_UCAI2321 LLL0 A 3 Iub_UCAI2963 U2963-A/B LLLLLL LLLLLL LLL0 A 5 Iub_UCAI0102 U0102-A LLLLLL LLL0 A 6 Iub_UCAI1215 LLL0 A 7 Iub_UCAI2939 U2939-A LLLLLL LLL0 A 9 Iub_UCAI2704 LLL0 A 11 Iub_UCAI1672 U1672-A/B/C LLLLLL LLLLLL LLLLLL LLL0 A 15 Iub_UCAI2947 U2947-A/B/C LLLLLL LLLLLL LLLLLL LLL0 A 25 Iub_UCAI2938 U2938-A LLLLLL LLL0 A 42 Iub_UCAI2723 U2723-A/B/C LLLLLL LLLLLL LLLLLL LLL0 A 52 Iub_UCAI2736 U2736-A/B/C LLLLLL LLLLLL LLLLLL LLL0 A 55 Iub_UCAI0124 LLL0 A ---------------------------------------------------------------------------------------------------------------------

Cell availability: 78 of 95 cells are up (82.1 %)Site availability: 27 of 39 sites are fully operational (69.2 %)Unlocked Cell availability: 78 of 78 unlocked cells are up (100.0 %)

5.2 Iublink

The Iub link is the link between the RNC and RBS. For each Iub link, there is one RBS and several utrancells (usually 3, but sometimes less)To load the MOslt iublink

To check a specific link:get iublink=<iublink>

E,g, check Iublink for site 1281, and see which utrancells this site has:

SRX01> get IubLink=.*1281

================================================================================================================956 RncFunction=1,IubLink=Iub_UCAI1281================================================================================================================IubLinkId Iub_UCAI1281administrativeState 1 (UNLOCKED)atmUserPlaneTermSubrackRef Subrack=ES-4availabilityStatus 0 (NO_STATUS)cachedRemoteCpIpAddress1 cachedRemoteCpIpAddress2 controlPlaneTransportOption Struct{2} >>> 1.atm = 1 (TRUE) >>> 2.ipv4 = 0 (FALSE)dlHwAdm 100l2EstReqRetryTimeNbapC 5

l2EstReqRetryTimeNbapD 5operationalState 1 (ENABLED)rbsId 1281remoteCpIpAddress1 000.000.000.000remoteCpIpAddress2 000.000.000.000reservedBy [3] = >>> reservedBy = RncFunction=1,UtranCell=U1281A >>> reservedBy = RncFunction=1,UtranCell=U1281B >>> reservedBy = RncFunction=1,UtranCell=U1281CrncModuleRef RncModule=42sctpRef spare 0ulHwAdm 100userLabel userPlaneGbrAdmBandwidthDl 10000userPlaneGbrAdmBandwidthUl 10000userPlaneGbrAdmEnabled 0 (FALSE)userPlaneGbrAdmMarginDl 0userPlaneGbrAdmMarginUl 0userPlaneIpResourceRef userPlaneTransportOption Struct{2} >>> 1.atm = 1 (TRUE) >>> 2.ipv4 = 0 (FALSE)================================================================================================================Total: 1 MOs

ltc iublinkTo examine a specific link and its child MOs:lst iublink=<iublink>

SRX01> lst IubLink=.*1281

100520-03:15:41 10.128.20.65 8.0a RNC_NODE_MODEL_K_9_115 stopfile=/tmp/5998===================================================================================Proxy Adm State Op. State MO=================================================================================== 67 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,IubLink=Iub_UCAI1281 187 1 (ENABLED) RncFunction=1,IubLink=Iub_UCAI1281,NodeSynch=1 188 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,IubLink=Iub_UCAI1281,NbapCommon=1 189 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,IubLink=Iub_UCAI1281,NbapDedicated=1===================================================================================Total: 4 MOs

This works because lst will show all the MOs with Iublink=Iub_UCAI1281 in the LDN, effectively showing you the children of this MO.

5.3 Utrancells

To load MOslt utrancell

To check MO operational and administrative states:st utrancell=<utrancell>

To examine all attributes on the MO:get utrancell=<utrancell>

To check individual cells and channels below them (common channels)To load MOsltc utrancell

To examine a specific utrancell and its children MOs:lst utrancell=<utrancell>

Some examples:

This is a working cell:

SRX01> lst U1281A

100520-03:22:57 10.128.20.65 8.0a RNC_NODE_MODEL_K_9_115 stopfile=/tmp/5998===================================================================================Proxy Adm State Op. State MO=================================================================================== 1205 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,UtranCell=U1281A 4307 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,UtranCell=U1281A,Rach=1 4338 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,UtranCell=U1281A,Hsdsch=1 4339 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,UtranCell=U1281A,Hsdsch=1,Eul=1 4352 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,UtranCell=U1281A,Fach=1 4357 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,UtranCell=U1281A,Pch=1===================================================================================Total: 6 MOs

This is a cell that is locked and as a result the children MOs are DISABLED because this MO is DISABLED:

SRX01> lst U1281B

===================================================================================Proxy Adm State Op. State MO=================================================================================== 1205 0 (LOCKED) 0 (DISABLED) RncFunction=1,UtranCell=U1281B 4307 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=U1281B,Rach=1 4338 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=U1281B,Hsdsch=1 4339 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=U1281B,Hsdsch=1,Eul=1 4352 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=U1281B,Fach=1 4357 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=U1281B,Pch=1===================================================================================Total: 6 MOs

This is a cell that seems to have problems:

SRX01> lst U1281C

===================================================================================Proxy Adm State Op. State MO=================================================================================== 1205 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=U1281C 4307 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=U1281C,Rach=1 4338 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=U1281C,Hsdsch=1 4339 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=U1281C,Hsdsch=1,Eul=1 4352 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=U1281C,Fach=1 4357 1 (UNLOCKED) 0 (DISABLED) RncFunction=1,UtranCell=U1281C,Pch=1===================================================================================Total: 6 MOs

All the child MOs as well as the utrancell should be ENABLED and UNLOCKED for the site to be fully working.

NOTE : be careful with ltc for utrancell, as there are many child MOs, so this may take some time to load.

5.4 Shortcuts

You can use the last letter of MOs if you know that the name of the MO will be unique with its type . This is very useful with utrancells, e.g.

SRX01> pr UtranCell=U1281

===================================================================================Proxy MO===================================================================================12515 RncFunction=1,UtranCell=U1281B14648 RncFunction=1,UtranCell=U1281A15486 RncFunction=1,UtranCell=U1281C===================================================================================Total: 3 MOs

SRX01> pr U1281

===================================================================================Proxy MO===================================================================================12515 RncFunction=1,UtranCell=U1281B14648 RncFunction=1,UtranCell=U1281A15486 RncFunction=1,UtranCell=U1281C===================================================================================Total: 3 MOs

You can also use a dot to replace the MO name for a get command to indicate all MOs, e.g.

SRX01> get . rncid

================================================================================================================MO Attribute Value================================================================================================================RncFunction=1 rncId 1IurLink=0 rncId 2IurLink=205_602_3 rncId 205IurLink=IurLink_srh08 rncId 208IurLink=iurlink_prx06 rncId 6IurLink=206_602_3 rncId 206IurLink=IurLink_crx05 rncId 5IurLink=IurLink_arx01 rncId 203IurLink=602_602_3 rncId 602================================================================================================================Total: 9 MOs

If the MO name is unique on the RNC you can even get rid of the MO type and just used the name. Although with cells this doesn’t always happen E.g.

SRX01> pr U1281A

===================================================================================Proxy MO===================================================================================18877 RncFunction=1,UtranCell=U1281A19441 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-U1281B19442 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-U0134C19443 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-U1281C19444 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-U0134A19445 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-U0133A19451 RncFunction=1,UtranCell=U0134C,UtranRelation=U0134C-U1281A19452 RncFunction=1,UtranCell=U0133B,UtranRelation=U0133B-U1281A19453 RncFunction=1,UtranCell=U2409C,UtranRelation=U2409C-U1281A19463 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-U0133C19464 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-U0133B19465 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-U2409C19466 RncFunction=1,UtranCell=U1281B,UtranRelation=U1281B-U1281A19470 RncFunction=1,UtranCell=U1281C,UtranRelation=U1281C-U1281A19473 RncFunction=1,UtranCell=U0134A,UtranRelation=U0134A-U1281A19474 RncFunction=1,UtranCell=U0133A,UtranRelation=U0133A-U1281A19521 RncFunction=1,UtranCell=U2316C,UtranRelation=U2316C-U1281A

19571 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-U2316C19579 RncFunction=1,UtranCell=U0133C,UtranRelation=U0133C-U1281A19590 RncFunction=1,UtranCell=U1280A,UtranRelation=U1280A-U1281A19605 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-U1280A19740 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-U2898C19744 RncFunction=1,UtranCell=U2898C,UtranRelation=U2898C-U1281A19750 RncFunction=1,UtranCell=U2898A,UtranRelation=U2898A_U1281A19751 RncFunction=1,UtranCell=U2898B,UtranRelation=U2898B_U1281A19757 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A_U2898A19758 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A_U2898B20230 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-HU0133120242 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-HU0133220259 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-HU0133320296 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-HU1281220305 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-HU1281320572 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-HU2409320653 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-HU2316321039 RncFunction=1,UtranCell=U2316B,UtranRelation=U2316B-U1281A21205 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-HU1120121218 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-HU1120321224 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-HU0110121237 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-HU2607121434 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-HU0539121510 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-HU0124121544 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-HU2262121547 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-HU2262221594 RncFunction=1,UtranCell=U1281A,UtranRelation=U1281A-HU27372===================================================================================Total: 44 MOs

However, this can be useful to find any MOs related to eachother by naming convention, e.g.

SRX01> pr ms-6

===================================================================================Proxy MO=================================================================================== 359 TransportNetwork=1,AtmPort=MS-6-1 829 TransportNetwork=1,AtmPort=MS-6-2===================================================================================Total: 2 MOs

5.5 RNC Modules

An RNC module is a way of splitting up the resources in an RNC such that certain RBS sites in an RNC are dedicated to a particular module. In P7 it seems that the module an RBS is on can move around.

To load MOs:lt rncmodule

To examine rncmodules:get rncmodule=<rncmodule number>

SRX01> get rncmodule=8

================================================================================================================11005 RncFunction=1,RncModule=8================================================================================================================RncModuleId 8availabilityStatus 0 (NO_STATUS)operationalState 1 (ENABLED)reservedBy [0] = rncModuleResourceId 1rpuRefs [3] =

>>> rpuRefs = SwManagement=1,ReliableProgramUniter=rnc_cell_8 >>> rpuRefs = SwManagement=1,ReliableProgramUniter=rnc_ue_8 >>> rpuRefs = SwManagement=1,ReliableProgramUniter=rnc_mod_om_8userLabel 8================================================================================================================Total: 1 MOs

6 Some basic troubleshooting commands

6.1 MO States

This is mostly for RBSs, but it is good to check the states of all MOs that are disabled. Remember that some MOs should be disabled:

st all dis

UCAI1113> st all dis

100520-03:40:06 10.130.1.241 8.0a RBS_NODE_MODEL_L_10_9 stopfile=/tmp/19470===================================================================================Proxy Adm State Op. State MO=================================================================================== 85 0 (LOCKED) 0 (DISABLED) Equipment=1,Subrack=1,Slot=2,PlugInUnit=1,ExchangeTerminalIp=1,EthernetSwitch=1,EthernetSwitchPort=4 87 0 (LOCKED) 0 (DISABLED) Equipment=1,Subrack=1,Slot=2,PlugInUnit=1,ExchangeTerminalIp=1,EthernetSwitch=1,EthernetSwitchPort=7 89 0 (LOCKED) 0 (DISABLED) Equipment=1,Subrack=1,Slot=2,PlugInUnit=1,ExchangeTerminalIp=1,EthernetSwitch=1,EthernetSwitchPort=1 91 0 (LOCKED) 0 (DISABLED) Equipment=1,Subrack=1,Slot=2,PlugInUnit=1,ExchangeTerminalIp=1,EthernetSwitch=1,EthernetSwitchPort=5 93 0 (LOCKED) 0 (DISABLED) Equipment=1,Subrack=1,Slot=2,PlugInUnit=1,ExchangeTerminalIp=1,EthernetSwitch=1,EthernetSwitchPort=6 96 0 (LOCKED) 0 (DISABLED) Equipment=1,Subrack=1,Slot=2,PlugInUnit=1,ExchangeTerminalIp=1,EthernetSwitch=1,EthernetSwitchPort=2 98 0 (LOCKED) 0 (DISABLED) Equipment=1,Subrack=1,Slot=2,PlugInUnit=1,ExchangeTerminalIp=1,EthernetSwitch=1,EthernetSwitchPort=3 145 0 (LOCKED) 0 (DISABLED) Equipment=1,Subrack=1,Slot=1,PlugInUnit=1,Cbu=1,ExchangeTerminal=1,E1PhysPathTerm=pp4 150 0 (LOCKED) 0 (DISABLED) Equipment=1,Subrack=1,Slot=1,PlugInUnit=1,Cbu=1,ExchangeTerminal=1,E1PhysPathTerm=pp3 157 0 (LOCKED) 0 (DISABLED) Equipment=1,Subrack=1,Slot=1,PlugInUnit=1,Cbu=1,TimingUnit=1,TuSyncRef=1 234 0 (DISABLED) Equipment=1,Subrack=1,Slot=8,PlugInUnit=1,TxDeviceGroup=1,DbccDeviceSet=1,DbccDevice=4 237 0 (DISABLED) Equipment=1,Subrack=1,Slot=8,PlugInUnit=1,TxDeviceGroup=1,DbccDeviceSet=1,DbccDevice=6 239 0 (DISABLED) Equipment=1,Subrack=1,Slot=8,PlugInUnit=1,TxDeviceGroup=1,DbccDeviceSet=1,DbccDevice=5 275 0 (DISABLED) Equipment=1,SectorAntenna=3,AuxPlugInUnit=RRUW-1,RruDeviceGroup=1,DpclDeviceSet=1,DpclDevice=2 283 0 (DISABLED) Equipment=1,SectorAntenna=3,AuxPlugInUnit=RRUW-1,RruDeviceGroup=1,TrDeviceSet=1,TrDevice=3 284 0 (DISABLED) Equipment=1,SectorAntenna=3,AuxPlugInUnit=RRUW-1,RruDeviceGroup=1,TrDeviceSet=1,TrDevice=4 316 0 (DISABLED) Equipment=1,SectorAntenna=1,AuxPlugInUnit=RRUW-1,RruDeviceGroup=1,TrDeviceSet=1,TrDevice=4 319 0 (DISABLED) Equipment=1,SectorAntenna=1,AuxPlugInUnit=RRUW-1,RruDeviceGroup=1,TrDeviceSet=1,TrDevice=3 327 0 (DISABLED) Equipment=1,SectorAntenna=1,AuxPlugInUnit=RRUW-1,RruDeviceGroup=1,DpclDeviceSet=1,DpclDevice=2 350 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=25 351 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=11 352 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=21 353 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=15 354 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=19 355 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=22 356 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=32 359 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=16 360 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=12 362 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=31 364 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=29 366 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=17 367 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=13 368 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=20 369 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=9 370 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=30 372 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=24 373 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=28 374 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=26 376 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=18 377 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=14 378 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=27 380 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=10 381 0 (LOCKED) 0 (DISABLED) Equipment=1,AuxPlugInUnit=1,XalmDeviceGroup=1,AlmDeviceSet=1,AlmDevice=23 401 0 (DISABLED) Equipment=1,SectorAntenna=2,AuxPlugInUnit=RRUW-1,RruDeviceGroup=1,DpclDeviceSet=1,DpclDevice=2 415 0 (DISABLED) Equipment=1,SectorAntenna=2,AuxPlugInUnit=RRUW-1,RruDeviceGroup=1,TrDeviceSet=1,TrDevice=4

416 0 (DISABLED) Equipment=1,SectorAntenna=2,AuxPlugInUnit=RRUW-1,RruDeviceGroup=1,TrDeviceSet=1,TrDevice=3===================================================================================Total: 46 MOsAdded 46 MOs to group: st_group

E.g. the Tusyncref is not used and so locked and disabled.

6.2 Node information

You can check some kind of basic information about the RNC or RBS such as its name with this command:

UCAI1113> get 0

================================================================================================================0 ManagedElement=1================================================================================================================ManagedElementId 1applicationConfiguration t[0] = faultTolerantCoreStates s[1] = ManagedElement=1,Equipment=1,Subrack=1,Slot=1,PlugInUnit=1;Active healthCheckResult Struct{3} >>> 1.healthCheckResult = 99 >>> 2.message = >>> 3.startTime = healthCheckSchedule t[0] = logicalName UCAI1113mimInfo Struct{3} >>> 1.mimName = RBS_NODE_MODEL_L >>> 2.mimVersion = 10.9 >>> 3.mimRelease = mimName RBS_NODE_MODEL_LproductName RBS3418productNumber 11/COH1092082productRevision productType Nodesite UCAI1113userLabel UCAI1113================================================================================================================Total: 1 MOs

6.3 Linking MOs

This is good when you are stuck and you are trying to work out where an MO fault is. Find all the linked MOs and check if they are OK:

SRX01> lk UCAI1281

100520-03:43:39 10.128.20.65 8.0a RNC_NODE_MODEL_K_9_115 stopfile=/tmp/24749.............................................................................===================================================================================Proxy Adm State Op. State MOs linked to 157:ImaGroup=IMA-UCAI1281=================================================================================== 495 TransportNetwork=1,Aal2Sp=1,Aal2Ap=b1281,Aal2PathDistributionUnit=1 656 1 (UNLOCKED) 1 (ENABLED) TransportNetwork=1,Aal2PathVccTp=b1281a1 799 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc39 1389 1 (ENABLED) TransportNetwork=1,AtmCrossConnection=b1281ib 800 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc33 1608 TransportNetwork=1,Aal2RoutingCase=201100401901281 494 1 (ENABLED) TransportNetwork=1,Aal2Sp=1,Aal2Ap=b1281 1739 1 (ENABLED) TransportNetwork=1,UniSaalTp=b1281qa 1445 1 (ENABLED) TransportNetwork=1,Aal5TpVccTp=b1281qa 801 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc38 742 1 (ENABLED) TransportNetwork=1,AtmCrossConnection=b1281ia 802 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc3218186 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,IubLink=Iub_UCAI1281,NbapDedicated=1 1648 1 (ENABLED) TransportNetwork=1,UniSaalTp=b1281da 1299 1 (ENABLED) TransportNetwork=1,Aal5TpVccTp=b1281da

803 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc3718185 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,IubLink=Iub_UCAI1281,NbapCommon=1 156 1 (ENABLED) TransportNetwork=1,UniSaalTp=b1281ca 1591 1 (ENABLED) TransportNetwork=1,Aal5TpVccTp=b1281ca 804 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc36 1288 1 (UNLOCKED) 1 (ENABLED) TransportNetwork=1,Aal2PathVccTp=b1281a2 805 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc40 798 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1 797 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1 796 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281 157 1 (ENABLED) TransportNetwork=1,ImaGroup=IMA-UCAI1281===================================================================================Total: 26 MOs

Added 26 MOs to group: lk_group.............................................................................===================================================================================Proxy Adm State Op. State MOs linked to 796:AtmPort=IMA-UCAI1281=================================================================================== 495 TransportNetwork=1,Aal2Sp=1,Aal2Ap=b1281,Aal2PathDistributionUnit=1 656 1 (UNLOCKED) 1 (ENABLED) TransportNetwork=1,Aal2PathVccTp=b1281a1 799 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc39 1389 1 (ENABLED) TransportNetwork=1,AtmCrossConnection=b1281ib 800 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc33 1608 TransportNetwork=1,Aal2RoutingCase=201100401901281 494 1 (ENABLED) TransportNetwork=1,Aal2Sp=1,Aal2Ap=b1281 1739 1 (ENABLED) TransportNetwork=1,UniSaalTp=b1281qa 1445 1 (ENABLED) TransportNetwork=1,Aal5TpVccTp=b1281qa 801 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc38 742 1 (ENABLED) TransportNetwork=1,AtmCrossConnection=b1281ia 802 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc3218186 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,IubLink=Iub_UCAI1281,NbapDedicated=1 1648 1 (ENABLED) TransportNetwork=1,UniSaalTp=b1281da 1299 1 (ENABLED) TransportNetwork=1,Aal5TpVccTp=b1281da 803 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc3718185 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,IubLink=Iub_UCAI1281,NbapCommon=1 156 1 (ENABLED) TransportNetwork=1,UniSaalTp=b1281ca 1591 1 (ENABLED) TransportNetwork=1,Aal5TpVccTp=b1281ca 804 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc36 1288 1 (UNLOCKED) 1 (ENABLED) TransportNetwork=1,Aal2PathVccTp=b1281a2 805 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc40 798 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1 797 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1 796 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281===================================================================================Total: 25 MOs

Added 25 MOs to group: lk_group.........................................................===================================================================================Proxy Adm State Op. State MOs linked to 18183:IubLink=Iub_UCAI1281=================================================================================== 2116 Equipment=1,Subrack=ES-416962 1 (ENABLED) RncFunction=1,RncModule=4210620 RncFunction=1,LocationArea=3101214648 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,UtranCell=U1281A12515 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,UtranCell=U1281B15486 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,UtranCell=U1281C18183 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,IubLink=Iub_UCAI128118187 RncFunction=1,IubLink=Iub_UCAI1281,IubEdch=118185 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,IubLink=Iub_UCAI1281,NbapCommon=118186 1 (UNLOCKED) 1 (ENABLED) RncFunction=1,IubLink=Iub_UCAI1281,NbapDedicated=118184 1 (ENABLED) RncFunction=1,IubLink=Iub_UCAI1281,NodeSynch=1 1608 TransportNetwork=1,Aal2RoutingCase=201100401901281 494 1 (ENABLED) TransportNetwork=1,Aal2Sp=1,Aal2Ap=b1281 495 TransportNetwork=1,Aal2Sp=1,Aal2Ap=b1281,Aal2PathDistributionUnit=1 656 1 (UNLOCKED) 1 (ENABLED) TransportNetwork=1,Aal2PathVccTp=b1281a1 1288 1 (UNLOCKED) 1 (ENABLED) TransportNetwork=1,Aal2PathVccTp=b1281a2 156 1 (ENABLED) TransportNetwork=1,UniSaalTp=b1281ca 1648 1 (ENABLED) TransportNetwork=1,UniSaalTp=b1281da

1739 1 (ENABLED) TransportNetwork=1,UniSaalTp=b1281qa 1591 1 (ENABLED) TransportNetwork=1,Aal5TpVccTp=b1281ca 1299 1 (ENABLED) TransportNetwork=1,Aal5TpVccTp=b1281da 1445 1 (ENABLED) TransportNetwork=1,Aal5TpVccTp=b1281qa 742 1 (ENABLED) TransportNetwork=1,AtmCrossConnection=b1281ia 1389 1 (ENABLED) TransportNetwork=1,AtmCrossConnection=b1281ib 802 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc32 800 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc33 804 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc36 803 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc37 801 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc38 799 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc39 805 1 (ENABLED) TransportNetwork=1,AtmPort=IMA-UCAI1281,VplTp=vp1,VpcTp=1,VclTp=vc40===================================================================================Total: 31 MOs

Added 31 MOs to group: lk_group

You could for example check that the SAC is correctly defined. Some MOs don’t accept lk and lko has to be used instead.

6.4 Checking calls in an RNC

This command lets you see who is making a call in the RNC. This is useful for when you are test calling an RBS. You can see the module and cell the call is on as well as the RAB being used:

CAPW1R1> uer

Printing all active UeContexts.================================================================================================================MOD IMSI/TMSI CTXT CommCh RL1 RL2 RL3 DCdev CoreNetId AGE UERC + ESTAB_CAUSE================================================================================================================ 1 286015100000091 4213 1:11 1:11 0020sp4 C 2861 00:00:16 3 64kbps CS data, fixed rate (0:origConversational) 8 286015810722156 349 3:31 0021sp3 P 2861 00:02:02 4 Packet RACH/FACH (2:origInteractive) 8 286015100000181 360 3:31 0023sp2 P 2861 00:01:13 4 Packet RACH/FACH (8:termBackground) 13 286015810793415 736 5:51 0020sp3 P 2861 00:00:25 15 PS Interactive 64/HS - HS-DSCH (12:registration) 13 286015810722270 737 5:51 5:51 0021sp4 C 2861 00:00:21 3 64kbps CS data, fixed rate (5:termConversational) 13 310410056483498 739 5:51 5:51 0020sp3 P 2861 00:00:05 1 Standalone RRC on DCH (14:origHighPrioSignaling)================================================================================================================

=====================================================UeRc M1 M8 M13 userLabel===================================================== 1 0 0 1 Standalone RRC on DCH 3 1 0 1 64kbps CS data, fixed rate 4 0 2 0 Packet RACH/FACH 15 0 0 1 PS Interactive 64/HS - HS-DSCH=====================================================Tot: 1 2 3=====================================================Cause M1 M8 M13 EstablishmentCause===================================================== 0 1 0 0 origConversational 2 0 1 0 origInteractive 5 0 0 1 termConversational 8 0 1 0 termBackground 12 0 0 1 registration 14 0 0 1 origHighPrioSignaling===================================================== Tot: 1 2 3===============================================UeRc Total % userLabel=============================================== 1 1 16.7 Standalone RRC on DCH 3 2 33.3 64kbps CS data, fixed rate 4 2 33.3 Packet RACH/FACH

15 1 16.7 PS Interactive 64/HS - HS-DSCH===============================================Tot: 6 100===============================================Cause Total % EstablishmentCause=============================================== 0 1 16.7 origConversational 2 1 16.7 origInteractive 5 1 16.7 termConversational 8 1 16.7 termBackground 12 1 16.7 registration 14 1 16.7 origHighPrioSignaling=============================================== Tot: 6 100

If you know which IMSI you are using you can use the IMSI to filter:

uer <imsi number>

6.5 Restarts

Check node restarts like this:llog

UCAI2685> llog

100520-03:50:13 10.129.12.241 8.0a RBS_NODE_MODEL_L_10_9 stopfile=/tmp/29103$ llog-------------------------------------------------------------------------------- 1. [00-00-00 00:00:00] 0x00000003 (2) Error log was cleared at last restart..$

To find more detailed information about each one:

llog –l

UCAI2685> llog -l

100520-03:49:55 10.129.12.241 8.0a RBS_NODE_MODEL_L_10_9 stopfile=/tmp/29103Please enter Node Password: $ llog -l

---------------------------------------------------------------------------- 1. Time : 00-00-00, 00:00:00 Error code : 0x00000003 (Reported via CELLO:ERI IF) Queued signals : 0 Owned signals : 0 Restart type : Processor OS Run Mode : BASIC PMD identity : - Restart rank : Cold with test

Error Information: Error log was cleared at last restart. Power on restart$