2.14.2.1 MMI Managed Objects for Duplicate Point Code
MMI information associated with Duplicate Point Code feature is accessed from a DSR NOAM or SOAM from
.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 Duplicate Point Code feature:
Table 2-19 Duplicate Point Code Managed Objects and Supported Operations
Managed Object Name | Supported Operations |
---|---|
localsignalingpoints | Insert |
remotesignalingpoints | Inser, Update, Delete |
networkappearances | Insert |
localsignalingpoints - Display, Update
$ Cat lsp.json
{ "ss7DomainType": "Itun",
"configurationLevel": "0",
"pcType": "Spc",
"mtpPointCode": "2057",
"name": "lsp1111","groupCode":"bb“
}
$ Cat lsp1.json
{ "ss7DomainType": "Itui",
"configurationLevel": "0",
"pcType": "Spc",
"mtpPointCode": "1-001-1",
"name": "lsp111s1",
"groupCode":"ab“
}
Execute the following command on Active SOAM to update the data:
/vstp/localsignalingpoints -v POST -r /<Absolute Path>/<File Name>
Sample Output:
{
"data": [
{
"configurationLevel": "384",
"groupCode": “bb",
"mtpPointCode": "2057",
"name": "lsp111",
"pcType": "Tpc",
"ss7DomainType": "Itun"
},
],
"links": {},
"messages": [],
"status": true
}
{
"data": [
{
"configurationLevel": "382",
"groupCode": “ab",
"mtpPointCode": "1-001-1",
"name": "lsp111s1",
"pcType": "Spc",
"ss7DomainType": "Itui"
},
],
"links": {},
"messages": [],
"status": true
}
Note:
In case no value is provided for the group id parameter, then default value aa is assigned.remotesignalingpoints - Insert, Update, Delete
Execute the following command on Active SOAM to display table data:
$ Cat rsp.json
{"configurationLevel": "0",
"name": "psps111",
"ss7DomainType": "Itun",
"mtpPointCode": "4114",
"enableBroadcastException": true,
"groupCode": "pp"
}
$ Cat rsp1.json
{"configurationLevel": "0",
"name": "rsp111",
"ss7DomainType": "Itui",
"mtpPointCode": "5-001-1",
"enableBroadcastException": true,
"groupCode": "ab"
}
Execute the following command on Active SOAM to insert the data:
/vstp/remotesignalingpoints -v POST -r /<Absolute Path>/<File Name>
Sample Output:
{
"data": [
{
"configurationLevel": "385",
"enableBroadcastException": true,
"groupCode": “pp",
"mtpPointCode": "4114",
"name": "psps111",
"nprst": "Off",
"rcause": "None",
"splitiam": "None",
"ss7DomainType": "Itun"
}
],
"links": {},
"messages": [],
"status": true
}
{
"data": [
{
"configurationLevel": "382",
"enableBroadcastException": true,
"groupCode": “ab",
"mtpPointCode": "5-001-1",
"name": "rsp111",
"nprst": "Off",
"rcause": "None",
"splitiam": "None",
"ss7DomainType": "Itui"
}
],
"links": {},
"messages": [],
"status": true
}
Note:
In case no value is provided for the group id parameter, then default value aa is assigned.networkappearances - Insert
Execute the following command on Active SOAM to display table data:
$ Cat na.json
{
"name": "Na2",
"na": 10,
"naType": "Itun",
"groupCode": "ab"
}
$ Cat na.json
{
"name": "Na5",
"na": 11,
"naType": "Itui",
"groupCode": "ad"
}
Execute the following command on Active SOAM to insert the data:
/vstp/ networkappearances -v POST -r /<Absolute Path>/<File Name>
Sample Output:
/vstp/networkappearances
{
"data": [
{
"groupCode": "aa",
"na": 10,
"naType": "Itun",
"name": "Na2"
}
],
"links": {},
"messages": [],
"status": true
}
{
"data": [
{
"groupCode": "ad",
"na": 11,
"naType": "Itui",
"name": "Na5"
}
],
"links": {},
"messages": [],
"status": true
}