The get/set commands can be used to allow or disallow the over commitment of resources.

Note: Allowing over commitment of resources can have an impact on performance.

Example Command

Get (Retrieve):

curl -k "https://<Username>:<Password>@<MTIPAddress>/mtaccess/get?param=overcomres"

Set (Configure)

curl -k "https://<Username>:<Password>@<MTIPAddress>/mtaccess/set?param=overcomres&value=<0/1>"

Available Parameters

Parameter

Parameter Type

Parameter Description

Mandatory

param

String

The name of the parameter to be retrieved/configured. In this case, it should be set to overcomres.

Yes

value

String

The value to set the parameter to. In this case, specify whether or not to allow over commitment of resources.

0/no - Disallow

1/yes - Allow

Yes - if setting.

No - if getting.

Example Output

Get (Retrieve):

<Response stat="200" code="ok">
<Success>
<Data>
<overcomres>no</overcomres>
</Data>
</Success>
</Response>

Set (Configure):

<Response stat="200" code="ok">
<Success>Command completed ok</Success>
</Response>