2.17.2.1 MMI Managed Objects for Multiple Routes Support

MMI information associated with Multiple Routes support is accessed from a DSR NOAM or SOAM from Main Menu, and then MMI API Guide.

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

The following table lists the managed objects and operations supported for Multiple Routes support:

Table 2-22 Multiple Routes support Managed Objects and Supported Operations

Managed Object Name Supported Operations
routes Insert, Update, Delete
remotesignalingpoints Insert, Update, Delete

routes - Insert, Update, Delete

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

/vstp/routes -v POST -r /tmp/route{
 "data": true,
 "links": {},
 "messages": [],
 "status": true
}
cat route
{
 "configurationLevel": "141",
 "linksetName": "test6",
 "name": "ROUTE7",
 "remoteSignalingPointName": "RSPITUI1201",
 "routeCost": 12
 }
        

Sample Output:

{
"data": [
{
"configurationLevel": "141",
"linksetName": "test6",
"name": "ROUTE7",
"remoteSignalingPointName": "RSPITUI1201",
"routeCost": 12
},
 ],
 "links": {},
 "messages": [],
 "status": true
}

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

/vstp/routes -v PUT -r /tmp/route
{
 "data": true,
 "links": {},
 "messages": [],
 "status": true
}
cat route
{
 "configurationLevel": "141",
 "linksetName": "test6",
 "name": "ROUTE7",
 "remoteSignalingPointName": "RSPITUI1201",
 "routeCost": 22
 }

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

/vstp/routes/<routename> -v DELETE

remotesignalingpoints - Display

Execute the following command on Active SOAM to display the status:

/vstp/remotesignalingpoints/RSP3/status
        

Sample Output:

{
    "data": [
        {
            "groupCode": "aa",
            "mpServerHostname": "MRA-so1mp1",
            "name": "RSP3",
            "operationalStatus": "Unavailable",
            "pointCode": "3-005-3",
            "routes": [
            {
                    "adjacentPC": "RSP6",
                    "linksetName": "LS6",
                    "routeAdjacentStatus": "Down",
					                      "routeCost": 45,
                     "routeName": "Route2_RSP6",
                    "routeRemoteStatus": "Available",
                    "routeStatus": "Unavailable"
            }
            ],
            "ss7DomainType": "Itui",
            "statusKnown": true,
            "timeOfLastUpdate": "2020-05-14T19:00:43-04:00"
        }
    ],
    "links": {},
    "messages": [],
    "status": true
}