Connectivity Guide

Table Of Contents
Example
curl -X DELETE -k -u admin:admin -H "accept: application/json"
-H "Content-Type: application/json"
https://10.11.86.113/restconf/data/dell-lldp-med:sys-config/media-policy/10
Remove congured LLDP packet timer — Reset to default
RESTCONF
endpoint
/restconf/data/global-params/tx-interval
JSON content None
Example
curl -X DELETE -k -u admin:admin -H "accept:application/json"
-H "Content-Type:application/json"
"https://10.11.86.113/restconf/data/global-params/tx-interval"
Remove congured LLDPDU hold time — Reset to default
RESTCONF
endpoint
/restconf/data/global-params/txhold-multiplier
JSON content None
Example
curl -X DELETE -k -u admin:admin -H "accept:application/json"
-H "Content-Type:application/json"
"https://10.11.86.113/restconf/data/global-params/txhold-multiplier"
Port-channel
Create port channel
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-channelid-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"}]}'
Enable port channel
RESTCONF
endpoint
/restconf/data/interfaces/interface/port-channel10
JSON content
{
"interface": [{
RESTCONF API 925