2.18.2.1 MMI Managed Objects for Multiple Linksets Support
MMI information associated with Multiple Linksets support 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 Multiple Linksets support:
Table 2-23 Multiple Linksets support Managed Objects and Supported Operations
Managed Object Name | Supported Operations |
---|---|
linksets | Insert, Update, Delete |
localsignalingpoints | Insert, Update, Delete |
remotesignalingpoints | Insert, Update, Delete |
linksets - Insert, Update, Delete
- Ensure that LSP is provisioned in VstpLocalSP and RSP is provisioned in VstpRemoteSP Table.
- Ensure that the linkset maintains the unique key pair of LSP and RSP.
- Maximum 6 Linksets are allowed to be provisioned with same RSP.
Execute the following command to display the content:
mmiclient.py /vstp/linksets
Sample Output:
/vstp/linksets
{
"data": [
{
"asls8": false,
"cgGtmod": false,
"configurationLevel": "4162",
"enableBroadcastException": false,
"gttmode": "Fcd",
"islsrsb": 1,
"ituTransferRestricted": false,
"l2TimerSetName": "Default",
"l3TimerSetName": "Default",
"linkTransactionsPerSecond": 100,
"localSignalingPointName": "Itui_SPC6",
"name": "MP1_Eagle_LS6",
"randsls": "Off",
"remoteSignalingPointName": "Eagle",
"rsls8": false,
"slsci": false,
"slsrsb": 1,
"type": "M2pa"
}
],
"links": {},
"messages": [],
"status": true
}
To insert data, create a file with following content:
$ cat linkset.txt
{
"configurationLevel": "0",
"enableBroadcastException": false,
"gttmode": "Fcd",
"ituTransferRestricted": false,
"linkTransactionsPerSecond": 100,
"localSignalingPointName": "Itui_SPC2",
"name": "SO2_SO3_LS",
"remoteSignalingPointName": "RspItui_TPC",
"type": "M2pa"
}
Execute the following command on Active SOAM to insert the data:
/vstp/linksets -v POST -r /<Absolute path>/linkset.txt
Sample Output:
{
"data": true,
"links": {},
"messages": [],
"status": true
}
Execute the following command on Active SOAM to delete the data:
/vstp/linksets/<linksetname> -v DELETE