Connectivity Guide

Table Of Contents
Display conguration
RESTCONF
endpoint
/restconf/data/sys-config
JSON content None
Example
curl -X GET -k -u admin:admin -H "accept:application/json"
"https://10.11.86.113/restconf/data/sys-config"
LLDP
Create link layer discovery protocol-media endpoint discovery (LLDP-MED) network policy for voice applications
RESTCONF
endpoint
/restconf/data/dell-lldp-med:sys-config
JSON content
{
"media-policy": [{
"policy-id": 10,
"app-type": "voice",
"vlan-id": 10,
"tagged": "true",
"priority": 2,
"dscp": 1
}]
}
Parameters
policy-id int — Enter the LLDP-MED network policy number, from 1 to 32.
app-type string — Enter the application type the policy denes: voice for a voice application or
guest-voice for a guest-voice application.
vlan-id int — Enter the VLAN ID number, from 1 to 4093.
tagged bool — Enter true for a tagged VLAN; enter false for an untagged VLAN.
priority int — Enter the L2 class-of-service (CoS) priority value for the VLAN, from 0 to 7; default 0.
dscp int — Enter the dierentiated services code point (DSCP) value for the VLAN, from 0 to 63; default
0.
Example
curl -X POST -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"
-d '{"media-policy":[{"policy-id": 10, "app-type":"voice",
"vlan-id":10, "tagged":"true", "priority":2, "dscp":1}]}'
Congure LLDP packet timer
RESTCONF
endpoint
/restconf/data/global-params
JSON content
{
"tx-interval": 60
}
Parameters
tx-interval int — Enter the rate LLDPDU packets are sent to peers, from 5 to 254 seconds; default 30.
RESTCONF API 921