2.13.3.1 MMI Managed Objects for Segmented XUDT Support

MMI information associated with Segmented XUDT feature 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 Segmented XUDT feature:

Table 2-18 Segmented XUDT Managed Objects and Supported Operations

Managed Object Name Supported Operations
sccpoptions IUpdate, Delete

sccpoptions - Display, Update

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

/vstp/sccpoptions

Sample Output:

{
    	"data": {
        "alwMsgDuringRsmblyErr": true,
        "class1seq": "Disabled",
        "dfltfallback": false,
        "dfltgttmode": "Cd",
        "isSegXUDTfeatureEnable": true,
        "mtprgtt": "Off",
        "mtprgttfallback": "Mtproute",
        "reassemblyTimerDurationAnsi": 5000,
        "reassemblyTimerDurationItu": 10000,
		"segmentedMSULength": 200,       
        "tgtt0": "None",
        "tgtt1": "None",
        "tgttudtkey": "Mtp",
        "tgttxudtkey": "Mtp",
        "travelVelocity": 700
    },
    "links": {
        "update": {
            "action": "PUT",
            "description": "Update this item.",
            "href": "/mmi/dsr/v3.1/vstp/sccpoptions/",
            "type": "status"
        }
    },
    "messages": [],
    "status": true
}
To update:
Create a file with following content. File name could be anything, for example option name can be used as filename:
{
        "alwMsgDuringRsmblyErr": false,
        "isSegXUDTfeatureEnable": false,
        "segmentedMSULength": 250
}

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

/vstp/sccpoptions -v PUT –r /<Absolute path>/<File Name>
        

Sample Output:

{
    "data": true,
    "links": {},
    "messages": [],
    "status": true
}