Reference Guide
Example
curl -X POST -k -u admin:admin -H "accept:application/json" 
-H "Content-Type:application/json" 
"https://10.11.86.113/restconf/data/global-params" -d '{"tx-interval":60}'
Congure LLDPDU hold time
RESTCONF 
endpoint
/restconf/data/global-params
JSON content
{
 "txhold-multiplier": 2
}
Parameters
• txhold-multiplier int — Enter the time that an LLDP peer device holds LLDP packets before 
discarding them, from 2 to 10 seconds; default 4.
Example
curl -X POST -k -u admin:admin -H "accept: application/json" -H "Content-
Type: application/json" 
"https://10.11.86.113/restconf/data/global-params" 
-d '{"txhold-multiplier":2}'
Congure basic TLV advertisement
RESTCONF 
endpoint
/restconf/data/interfaces/interface/ethernet1/1/1
JSON content
{
 "interface": [{
 "name": "ethernet1/1/1",
 "lldp": [{
 "basic-tlvs": [{
 "sys-name-enable": "true"
 }]
 }]
 }]
}
Parameters
• ethernet-interface — Enter the physical Ethernet interface in the format ethernetnode/slot/
port.
• name string — Enter ethernetnode/slot/port to congure the interface that sends LLDPDUs with 
the specied TLVs.
• sys-name-enable bool — Enter true to enable system TLV advertisement on the interface; enter 
false to disable system TLV advertisement.
Example
curl -X PATCH -u admin:admin 
-k "https://10.11.86.113/restconf/data/interfaces/interface/ethernet1%2F1%2F1" 
-H "accept:application/json" -H "Content-Type:application/json" 
-d '{"interface":[{"name":"ethernet1/1/1", "lldp":[{"basic-tlvs":
[{"sys-name-enable":"true"}]}]}]}'
Congure dot3 TLV advertisement
RESTCONF 
endpoint
/restconf/data/interfaces/interface/ethernet1/1/1
JSON content
{
 "interface": [{
792 RESTCONF API










