Reference Guide

Table Of Contents
RESTCONF
endpoint
/restconf/data
JSON content
{
"node-topology": [{
"topology-id": 1,
"topology-type": "VLT",
"dell-vlt:vlt-domain": {}
}]
}
Parameters
topology-id int Configure the same VLT domain ID on each peer, from 1 to 255.
topology-type value Enter VLT for a VLT domain.
Example
curl -X POST -k -u admin:admin -H "accept: application/json"
-H "Content-Type: application/json" "https://10.11.86.113/restconf/data"
-d '{"node-topology": [{"topology-id":1, "topology-type":"VLT", "dell-
vlt:vlt-domain":{}}]}'
Configure and enable VLTi ports in L2 Access mode
RESTCONF
endpoint
/restconf/data/interfaces/interface=ethernet1/1/1
JSON content
{
"interface": [{
"name": "ethernet1/1/1",
"enabled": "true",
"dell-interface:mode": "MODE_L2DISABLED"
}]
}
Parameters
ethernet-interface Enter the physical Ethernet interface in the format ethernetnode/
slot/port.
name string Enter ethernetnode/slot/port to identify the VLTi port on each peer.
enabled bool Enter true (no shutdown) to enable the VLTi port; enter false (shutdown)
to disable the VLTi port.
dell-interface:mode string Enter MODE_L2DISABLED to disable L2 switching
(switchport mode) on the VLTi port.
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=ethernet1%2F1%2F1"
-d '{"interface": [{"name":"ethernet1/1/1",
"enabled": "true", "dell-interface:mode":"MODE_L2DISABLED"}]}'
Configure VLTi interfaces on each peer
RESTCONF
endpoint
/restconf/data/node-topology/1
JSON content
{
"node-topology": [{
"topology-id": 1,
"discovery-interface": ["ethernet1/1/1"],
"topology-type": "VLT",
"dell-vlt:vlt-domain": {}
}]
}
Parameters
topology-id int Enter the same VLT domain ID on each peer, from 1 to 255.
764 RESTCONF API