| Skip Navigation Links | |
| Exit Print View | |
|
Oracle® ZFS Storage Appliance RESTful Application Programming Interface |
The PUT method is used to modify datalink properties. For details on setting up datalinks, see the CLI documentation.
Example Request:
PUT /api/network/v1/datalinks/ixgbe2 HTTP/1.1
{"jumbo": true}
Example Response:
HTTP/1.1 202 Accepted
X-Zfssa-Appliance-Api: 1.0
Content-Type: application/json
Content-Length: 219
{
"datalink": {
"href": "/api/network/v1/datalinks/ixgbe2",
"class": "device",
"label": "MyDataLink",
"links": ["ixgbe2"],
"mac": "0:21:28:a1:d9:6a",
"mtu": 9000,
"duplex": "auto",
"jumbo": true,
"speed": "auto"
}
}