Introduction to Network APIs and Protocols Flashcards
what is the issue with CLI when it comes to programmability
it was built for humans
why APIs are implemented
to allow machine to machine communication
what is SNMP is issue
frequent polling causes problems
what is SNMP agent
a network device
what are SNMPs main weaknesses
- lack of SNMP libraries for programming languages
- major players like Google are kicking it out
what are the two main encoding types
xml and json
what are the main APIs
REST, RESTCONF, NETCONF, gRPC
what are the main transport protocols
SSH, TLS, HTTPS, HTTP/2
what is a data model
defines syntax and semantics when working with API
what encoding provides
a structured data formatting to exchange data between systems
JSON sends data using
key(or name)-value pairs
JSON natively maps to
Python dictionaries
.dumps() and .loads() are used
with JSON strings
to translate JSON string to dictionary
.loads()
APIs often return
JSON strings
to translate dictionary to JSON string
.dumps()
what is the difference between HTML and XML
HTML tags are standard, XML are user-defined
explain XML namespace
handles element name conflicts and using default namespace instead of defining attribute for each tag
python library used working with XML
lxml, XML is not a native Python object
what is a data model
- constrained set of data in form of schemas
- well-defined and standardized parameters so that outcome is the same amongts different platforms
- relies protocols such as RESTCONF and NETCONF
- supports configuration validation before commit
what data models are used for
input validation, collecting statistics, defining operational data, defining configuration data,
how data models are used
data model sets the boundaries for NETCONF/RESTCONF to send XML and JSON encoded data as an example
YANG can be used by
NETCONF, gRPC and RESTCONF
what are the three types of YANG models
industry standard, Cisco common and Cisco platform specific
who are developing industry standard models
IETF and OpenConfig promote platform independent models
what is Cisco common model
models for configuration and state data shared by most Cisco platforms
which platforms have their own data models
ACI, Nexus 3k/9k NX-API
instead of using YANG, how does ACI implement constraints
Management Information Model
what is model drive programmability
decouples transport, protocol and encoding from the model used
what is CRUD
create, retrieve, update, delete
what is GET
retrieves a resource
what is POST
creates a new resource
what is PUT
update or replace a resource
what is PATCH
update or modify a resource
what is DELETE
removes a resource
to make a REST call what do you need
a HTTP verb, URL, body (if changing), headers, authentication
what are two common headers
accept and content-type which declare what you want back and what kind of data is sent to the server
success response codes are
- 200: request succeeded
- 201: request fulfilled, new resource created
- 202
- 204: server completed the request but doesn’t return a body
server error codes are
- 500: internal error
- 501: not implemented
client error codes are
- 400: bad request, malformed syntax
- 401: unauthorized
- 403: request understood, but server won’t fulfill
- 404: resource not found
tools to send REST calls
curl, Postman, requests (Python)
who designed NETCONF
IETF
NETCONF makes a distinction between
state and configuration data
which configuration databases NETCONF utilizes
candidate, running, startup
on which side NETCONF validates configuration
client side
which transport NETCONF uses
SSH
what NETCONF does if one configuration object fails
it cancels the entire transaction
which protocols are stateful and which are stateless
- NETCONF: stateful
- REST and RESTCONF: stateless
which encoding NETCONF uses
XML
what is NETCONF content
it is XML objects that represent YANG models or XML Schema Definitions (XSD)
Retrieve running configuration and device state information
Retrieve all or part of a configuration datastore
Loads all or part of a configuration to the specified datastore
Delete a configuration datastore
Replace and entire configuration datastore with another
/
Lock or unlock the entire configuration datastore system
Graceful termination of NETCONF session
Forced termination of NETCONF session
name NETCONF datastores
candidate, running, startup
what NETCONF server replies first time
hello message explaining the capabilities of the server
which port NETCONF uses on IOX-XE
SSH subsystem port 830
how do you mark the ending of NETCONF message
]]>]]>
explain four layers of NETCONF
- content (everything inside an operation)
- operations (config-copy, get etc.)
- messages (RPCs)
- transport protocols
Python’s NETCONF client / library is
ncclient
what is RESTCONF
YANG models via REST API
what transport RESTCONF uses
HTTPS
what encoding RESTCONF uses
XML or JSON
what tools can be used with RESTCONF
Python’s requests, Firefox RESTclient, Postman
what is gRPC
Googles’ open source remote procedure call framework
what are the main subsets of NETCONF
gRPC and RESTCONF
what devices support gRPC
IOS-XR based devices
what are the key differencies of gRPC
- utilizes HTTP/2 transport
- improved security
- bi-directional streaming of data