Reference Guide

Table Of Contents
discovery-interface string Enter ethernetnode/slot/port for the VLTi discovery
interface on each peer.
topology-type value Enter VLT for a VLT domain.
Example
curl -X PATCH -k -u admin:admin "https://10.11.86.113/restconf/data/node-
topology/1"
-H "accept: application/json"
-H "Content-Type: application/json"
-d '{"node-topology":[{"topology-id":1, "discovery-interface":
["ethernet1/1/1"], "topology-type":"VLT", "dell-vlt:vlt-domain":{}}]}'
Configure VLT port channel between peers
RESTCONF
endpoint
/restconf/data/interfaces
JSON content
{
"interface": [{
"type": "iana-if-type:ieee8023adLag",
"name": "port-channel10"
}]
}
Parameters
type string Enter iana-if-type:ieee8023adLag for a port-channel interface.
name string Enter port-channel id-number, where id-number is from 1 to 128.
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 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 API
765