**Netconf xml**:\\
Fun facts:
* XML is a superset of HTML
* Netconf is inspired in XML but is not 100% xml
http://www.cisco.com/c/en/us/td/docs/switches/datacenter/sw/nx-os/xml/user/guide/nxos_xml_interface/using.html
\\
interface Loopback113
]]>]]>
----
**BASIC NETCONF TEST:**
\\
To test netconf from a linux client:
(client)#
python -m pip install netconf-console
netconf-console --host= --port=830 --user= --password=
Configure netconf in IOS-XE:
ip https secure-server
username privilege 15 password
netconf-yang
Configure netconf in IOS-XR:
crypto key generate rsa
ssh server v2
ssh server netconf
netconf agent tty
netconf-yang agent shh
Other IOS-XR commands:
show commit changes diff
rollback configuration last # from the root level
----
YANG visualization
* DevNet yangexplorer (legacy)
* Advanced NETCONF Explorer (anx) (new)
NETCONF on IOS-XE using ncclient
----
__RESTCONF__
\\
* Restconf is json and uses https as transport.
* So to test restconf I just use postman
* The resource part normally has ''/restconf/''