Connectivity Guide

Table Of Contents
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}'
Congure 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}'
Congure 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 congure the interface that sends LLDPDUs with
specied TLVs.
sys-name-enable bool — Enter true to enable system TLV advertisement; 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"}]}]}]}'
Congure dot3 TLV advertisement
RESTCONF
endpoint
/restconf/data/interfaces/interface/ethernet1/1/1
JSON content
{
"interface": [{
922 RESTCONF API