2.12.7.1 MMI Managed Objects for SLS Rotation

MMI information associated with SLS Rotation functionality is accessed from a DSR NOAM or SOAM from Main Menu, and then MMI API Guide.

Once the MMI API Guide displays, use the application navigation to locate specific vSTP managed object information.

The following table lists the managed objects and operations supported for vSTP SLS Rotation feature:

Table 2-17 vSTP SLS Rotation Managed Objects and Supported Operations

Managed Object Name Supported Operations
m3rloptions Update
linksets Insert, Update, Delete

m3rloptions - Display, Update

Execute the following command on Active SOAM to display table data:

/vstp/m3rloptions

Sample Output:

{
"cnvAInat": 1,
"cnvCgda": true,
"cnvCgdi": true,
"cnvCgdn": false,
"cnvCgdn24": false,
"cnvClgItu": "Off",
"gtCnvDflt": true,
"islsbrEnabled": false,
"lsOnHoldTimer": 60,
"randsls": "Off",
"slsRotation": true,
"slscnv": "Off",
"slsocbEnabled": false,
"slsreplace": false,
"sltT1Timer": 12000,
"sltT2Timer": 30000,
"sparePCSupportEnabled": true,
"t10Timer": 30000,
"t11Timer": 30000,
"t15Timer": 3000,
"t16Timer": 1400,
"t17Timer": 2000,
"t18Timer": 10000,
"t1Timer": 800,
"t2Timer": 1400,
"t3Timer": 800,
"t4Timer": 800,
"t5Timer": 800,
"t6Timer": 800,
"t8Timer": 800
)
To update:
Create a file with following content. File name could be anything, for example option name can be used as filename:

{
        "randsls": "Off",
        "slsRotation": true,
        "slscnv": "Off",
        "slsocbEnabled": false,
        "slsreplace": false
 }

Execute the following command on Active SOAM to update the data:


        /vstp/m3rloptions –v PUT –r /<Absolute Path>/<File Name>.json

linksets - Insert, Update, Delete

Execute the following command on Active SOAM to display table data:

/vstp/linksets


Sample Output:

{
"asNotification": true,
"asls8": false,
"cgGtmod": false,
"configurationLevel": "1428",
"enableBroadcastException": false,
"gttmode": "Sysdflt",
"islsrsb": 1,
"ituTransferRestricted": false,
"l2TimerSetName": “AnsiDefault",
"l3TimerSetName": "Default",
"linkTransactionsPerSecond": 100,
"localSignalingPointName": "LSPI15",
"numberSignalingLinkAllowedThreshold": 0,
"numberSignalingLinkProhibitedThreshold": 0,
"randsls": "Off",
"remoteSignalingPointName": "RSP16",
"name": "LS7114",
"rsls8": false,
"slsci": false,
"slsrsb": 1,
"type": "M2pa“
}
Create a file with following content. File name could be anything, for example option name can be used as filename:

{
    "islsrsb": 1,
    "randsls": "Off",
    "rsls8": false,
    "slsci": false,
    "slsrsb": 1,
    "linkTransactionsPerSecond": 1200,
    "localSignalingPointName": "LSPI15",
    "name": "LS7114",
    "remoteSignalingPointName": "RSP16",
    "type": "M2pa" 	}

Execute this command on an active SOAM to insert:
/vstp/linksets –v POST –r /<absolute path>/<file name>

This MO configure the Linkset for a given Adjacent Point Code.

Execute this command on an active SOAM to update:
/vstp/linksets –v PUT –r /<absolute path>/<file name>
Execute this command on an active SOAM to delete:
/vstp/linksets/<Linkset Name> –v DELETE