Tags: automation
Network Configuration Protocol (NETCONF) is a standard protocol developed for managing network devices. It uses SSH as its transport mechanism over TCP port 830 by default. NETCONF is defined in RFC 6241.
NETCONF uses XML (Extensible Markup Language) based data encoding for both configuration data and protocol messages.
Network devices running a NETCONF agent can be managed using five main RPC operations:
There are also four additional operations that aren't used to directly manage the device:
Representational State Transfer Configuration (RESTCONF) is a standards protocol based on HTTP and HTTPS that provides a programmatic interface to access data stored in YANG within a device's datastore. It is a subset of the NETCONF protocol but provides access in a 'RESTful' manner via HTTP/HTTPS. RESTCONF is defined in RFC 8040.
The RFC shows how RESTCONF can coexist with NETCONF:
RESTCONF can be implemented on a device that supports the NETCONF protocol. The following figure shows the system components if a RESTCONF server is co-located with a NETCONF server:
+-----------+ +-----------------+
| Web app | <-------> | |
+-----------+ RESTCONF | network device |
| |
+-----------+ | +-----------+ |
| NETCONF | <-------> | | datastore | |
| Client | NETCONF | | | |
+-----------+ | +-----------+ |
+-----------------+
The following figure shows the system components if a RESTCONF server is implemented in a device that does not have a NETCONF server:
+-----------+ +-----------------+
| Web app | <-------> | |
+-----------+ RESTCONF | network device |
| |
+-----------------+
RESTCONF agents operate through five HTTP methods, which are used for CRUD functions: