###Matt Oswalt ###@Mierdin ###keepingitclassless.net
Nothing in this presentation should be viewed to reflect any opinion or infrastructure detail of any employer, past or present, or any other organization. What I present is mine and mine alone.
Details provided should not be perceived to reflect the actual design or configuration of any specific real-world technology or infrastructure deployment, unless otherwise explicitly stated.
- Brief Intro to Network Automation concepts
- Basic Data Modeling with YAML
- Creating templates with Jinja2
- Provisioning Network Services with Ansible
- Network Automation with Python Tools
- ALL material online (including detailed walkthrough)
- Take light notes if you have to, but stay engaged
- Stop me for questions or clarifications at any time
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Title of document</title>
</head>
<body>
some content
</body>
</html>
vlan 40
name Server1
vlan 50
name Server2
interface Vlan40
description "Server_1"
no shutdown
no ip redirects
ip address 192.168.0.2/24
interface Vlan50
description "Server_2"
no shutdown
no ip redirects
ip address 192.168.1.2/24
interface GigabitEthernet1/0/1
switchport access vlan 60
switchport mode access
channel-group 60 mode on
- Networking should just work.
- Current, complicated stack will take effort
- Better methodology = better uptime, agility, security
- Culture (Need buy-in, remember benefits)
- Transactions (Device-level and System-level)
- Simple, well-understood abstractions at the right level
- Source Control (Git)
- Ansible Modules for Ansible, Cumulus
- Also F5, A10, Netscaler, OVS, SNMP
- Python library for simplifying SSH management for network devices
- LOTS of Cisco support, Arista, HP, Juniper, Brocade, Huawei, etc.
- https://github.com/ktbyers/netmiko
- Use these tools in a CI Pipeline (Git + Jenkins)
- Start SIMPLE, work up from there
- Communication and buy-in is KEY!
- EVERYTHING is here: https://github.com/Mierdin/nwkauto
- Much more YAML, Jinja2, Ansible, Python to explore