Connectivity Guide

Table Of Contents
Example
curl -X POST -k -u admin:admin -H "accept: application/json"
-H "Content-Type: application/json" “https://10.11.86.113/restconf/data/
interfaces”
-d '{"interface": [{"type":"iana-if-type:ieee8023adLag","name":"port-
channel10"}]}'
Assign VLT port-channel ID to VLT port channel
RESTCONF
endpoint
/restconf/data/interfaces/interface/port-channel10
JSON content
{
"interface": [{
"type": "iana-if-type:ieee8023adLag",
"name": "port-channel10",
"enabled": "true",
"dell-vlt:vlt": {
"vlt-id": "1"
}
}]
}
Parameters
port-channelid-number — Enter port-channelid-number, where id-number is from 1 to 128.
type string — Enter iana-if-type:ieee8023adLag for a port-channel interface.
name string — Enter port-channelid-number.
enabled bool — Enter true (no shutdown) to enable the port channel; enter false (shutdown) to
disable the port channel.
vlt-id int — Enter the VLT port-channel ID, from 1 to 1024.
Example
curl -X PATCH -k -u admin:admin -H "accept: application/json"
-H "Content-Type: application/json"
"https://10.11.86.113/restconf/data/interfaces/interface/port-channel10"
-d '{"interface":[{"type":"iana-if-type:ieee8023adLag", "name":"port-
channel10",
"enabled":"true", "dell-vlt:vlt":{"vlt-id":"1"}}]}'
Delete VLT domain
RESTCONF
endpoint
/restconf/data/node-topology/1
JSON content None
Parameters
topology-id int — Specify the same VLT domain ID on each peer, from 1 to 255.
Example
curl -X DELETE -k -u admin:admin -H "accept: application/json"
-H "Content-Type: application/json"
"https://10.11.86.113/restconf/data/node-topology/1"
934 RESTCONF API