Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save steele-ntwrk/8d6a0b76d33428fd98337fd7ebfa4f87 to your computer and use it in GitHub Desktop.

Select an option

Save steele-ntwrk/8d6a0b76d33428fd98337fd7ebfa4f87 to your computer and use it in GitHub Desktop.

DEVNET - Network Progammability and Automation Fundamentals

This section will cover basic information about network progammability and automation.

Network Progambility vs Automation

Network Programmability is using scripts to perform some tasks. There are 3 main compotents:

  1. Application: python
  2. API: REST (JSON/XML)
  3. Infrastructure: Router/Switch

Network Automation is the coordination of tasks in a controlled orchestrated manner. A example of this is using ansible to run one script to see the status of the interfaces and if TRUE change a element of it.

ANSIBLE

Ansible is a very common network automation tool thats written in python and enables you scale network automation.

Key Benifits are:

  1. It's a Automation and Orchestration tool
  2. It's written in python, its easy to use and read
  3. Its FREE!
  4. It's agentless meaning there is no apps installed on infrastructure
  5. Lots of Modules! Modules are used to interact with network devices.

Software Defined Networking (SDN)

Software defined networking is intent based networking abstracting the data plane from the controll plane. By abstracting the controller away from the data plane you enable the ability to program devices from a central location.

There are a couple of Cisco SDN solution depending on the type of network:

  1. Cisco ACI APIC-EM for datacentre
  2. DNA Centre that can sit on top of ACI and also do Enterprise automation.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment