YANG (Yet Another Next Generation) (standard rfc-6020) YANG is a data modeling language used to model configuration and state data manipulated by the Network Configuration Protocol (NETCONF), NETCONF remote procedure calls, and NETCONF notifications.
Posts
- Get link
- X
- Other Apps

NETCONF (Network Configuration Protocol) (references taken from rfc 6241 ) As per RFC 6241 — “ NETCONF Provides mechanism to install, manipulate and delete configuration of network devices. It uses XML based data encoding for configuration data as well as protocol messages. The NETCONF protocol operations are realized as remote procedure calls (RPCs).” NETCONF protocol layers NETCONF is connection oriented. A client sends series of one or more RPC requests, which causes the server to respond with rpc reply. There are 2 ways of establishing NETCONF sessions: Normal : client initiates the connection towards server Call Home : NETCONF server initiates connection towards NETCONF client Datastores Running : mandatory Startup Candidate Operational : running datastore (if backend updates any value, then that value will be shown and not running datastore) + ro Data Model access Xpath based Subtree filtering NETCONF Operations Following is the list of som...