2.33.1.2 MMI Managed Objects for Nested Cluster Routing
MMI information associated with Nested Cluster Routing feature is accessed from a DSR NOAM or SOAM from Main Menu, and then MMI API Guide.
Once the MMI API Guide is opened, use the application navigation to locate specific vSTP managed object information.
The following table lists the managed objects and operations supported for Nested Cluster Routing feature:
Table 2-54 Managed Objects Remote Signaling Point
Managed Object, Name | Supported Actions | URI |
---|---|---|
Remote SP | GET | /vstp/remotesignalingpoints/ |
Remote SP | POST | /vstp/remotesignalingpoints/ -v POST -r rsp.json |
Remote SP | PUT | /vstp/remotesignalingpoints/ -v PUT -r rsp.json |
Remote SP | DELETE | /vstp/remotesignalingpoints/ <RSPID> -v DELETE |
Remote SP - POST
Create a json file with following content.
{
"elei": "No",
"enableBroadcastException": false,
"mtpPointCode": "009-013-*",
"name": "DUMMY",
"ncai": "No",
"nprst": "Off",
"prx": "No",
"rcause": "None",
"splitiam": "None",
"ss7DomainType": "Ansi",
"udtxudtcnv": "NOCONV"
}
Run the following command on active SOAM to insert the Remote SP:
mmiclient.py /vstp/remotesignalingpoints –v POST –r /<Absolute path>/<File Name>
Remote SP - Get
Create a json file with the following content:
{
"data": {
"configurationLevel": "179",
"elei": "No",
"enableBroadcastException": false,
"mtpPointCode": "009-013-*",
"name": "DUMMY",
"ncai": "No",
"nprst": "Off",
"prx": "No",
"rcause": "None",
"splitiam": "None",
"ss7DomainType": "Ansi",
"udtxudtcnv": "NOCONV"
},
"links": {},
"messages": [],
"status": true
}
Remote SP -PUT
{
"elei": "Yes",
"enableBroadcastException": false,
"mtpPointCode": "009-013-*",
"name": "DUMMY",
"ncai": "No",
"nprst": "Off",
"prx": "No",
"rcause": "None",
"splitiam": "None",
"ss7DomainType": "Ansi",
"udtxudtcnv": "NOCONV"
}
Run the following command on active SOAM to update Remote SP:
mmiclient.py /vstp/remotesignalingpoints/ -v PUT -r /<Absolute Path>/<File Name>
Remote SP - Delete
Run the following command on active SOAM to delete Remote SP:
mmiclient.py /vstp/remotesignalingpoints/{name} -v DELETE