Users Guide

Table Of Contents
</config>
</edit-config>
</rpc>
Reply:
<?xml version="1.0" encoding="UTF-8"?>
<rpc-reply xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="10">
<ok/>
</rpc-reply>
OS10(config)# do no debug cli netconf
RESTCONF API
RESTCONF API 使 curl HTTPS
RESTCONF
/restconf/data/dell-system:system/hostname
JSON
{
"hostname":"MyHost"
}
hostname string OS10
curl -X PATCH -k -u admin:admin -H "Content-Type: application/json"
https://10.11.86.113/restconf/data/dell-system:system/hostname
-d '{"hostname":"MyHost"}'
RESTCONF
/restconf/data/interfaces
JSON
{
"interface": [{
"type": "iana-if-type:softwareLoopback",
"enabled": true,
"description":"loopback interface",
"name":"loopback1"}]
}
type string iana-if-type:softwareLoopback
enabled bool true false
description string 80
name string loopback loopback-id loopback-id 0 16383
curl -X POST -k -u admin:admin "https://10.11.86.113/restconf/data/
interfaces"
-H "accept: application/json" -H "Content-Type: application/json"
-d '{"interface": [{"type": "iana-if-type:softwareLoopback", "enabled":
RESTCONF API 1245