├── .idea └── vcs.xml ├── LICENSE ├── README.md ├── easy_wins ├── ansible.cfg ├── hosts └── ios_facts.yml ├── topology ├── README.md ├── hosts.txt └── lab-topo.png ├── transciever_report ├── README.md ├── ansible.cfg ├── hosts ├── output │ ├── parsed │ │ ├── switch-a-mgmt │ │ └── switch-b-mgmt │ ├── raw │ │ ├── switch-a-mgmt │ │ └── switch-b-mgmt │ └── transciever-alarms.report ├── parse.py └── transcievers.yml └── wan-deploy ├── README.md ├── ansible.cfg ├── asen.jpg ├── configs ├── ce1.conf ├── ce1 │ ├── 10-ce2pe-links-p2p.conf │ ├── 20-ce-loopback-ints.conf │ └── 30-ce-bgp.conf ├── ce2.conf ├── ce2 │ ├── 10-ce2pe-links-p2p.conf │ ├── 20-ce-loopback-ints.conf │ └── 30-ce-bgp.conf ├── ce3.conf ├── ce3 │ ├── 10-ce2pe-links-p2p.conf │ ├── 20-ce-loopback-ints.conf │ └── 30-ce-bgp.conf ├── ce4.conf ├── ce4 │ ├── 10-ce2pe-links-p2p.conf │ ├── 20-ce-loopback-ints.conf │ └── 30-ce-bgp.conf ├── p20.conf ├── p20 │ ├── 10-vrf.conf │ ├── 20-pe-loopback-ints.conf │ ├── 30-ce2pe-links-p2p.conf │ ├── 40-ospf-int1.conf │ ├── 50-pe-ospf.conf │ └── 60-pe-bgp.conf ├── p30.conf ├── p30 │ ├── 10-vrf.conf │ ├── 20-pe-loopback-ints.conf │ ├── 30-ce2pe-links-p2p.conf │ ├── 40-ospf-int1.conf │ ├── 50-pe-ospf.conf │ └── 60-pe-bgp.conf ├── p50.conf ├── p50 │ ├── 10-vrf.conf │ ├── 20-pe-loopback-ints.conf │ ├── 30-ce2pe-links-p2p.conf │ ├── 40-ospf-int1.conf │ ├── 50-pe-ospf.conf │ └── 60-pe-bgp.conf ├── rr10.conf ├── rr10 │ ├── 10-vrf.conf │ ├── 20-pe-loopback-ints.conf │ ├── 30-ce2pe-links-p2p.conf │ ├── 40-ospf-int1.conf │ ├── 50-pe-ospf.conf │ └── 60-pe-bgp.conf ├── rr40.conf └── rr40 │ ├── 10-vrf.conf │ ├── 20-pe-loopback-ints.conf │ ├── 30-ce2pe-links-p2p.conf │ ├── 40-ospf-int1.conf │ ├── 50-pe-ospf.conf │ └── 60-pe-bgp.conf ├── generate_templates.yml ├── group_vars ├── ce.yml └── pe.yml ├── host_vars ├── ce1.yml ├── ce2.yml ├── ce3.yml ├── ce4.yml ├── p20.yml ├── p30.yml ├── p50.yml ├── rr10.yml └── rr40.yml ├── hosts ├── includes └── ce2pe_links.yml ├── parse_ios_bgp_summary.yml ├── parse_ios_ospf_neighbors.yml ├── push_config.yml ├── templates ├── ce-bgp.j2 ├── ce-loopback-ints.j2 ├── ce2pe-links-p2p.j2 ├── pe-bgp.j2 ├── pe-loopback-ints.j2 ├── pe-ospf-int1.j2 ├── pe-ospf.j2 └── pe-vrfs.j2 └── validate_pe_routing.yml /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Network Automation Classwork 2 | -------------------------------------------------------------------------------- /easy_wins/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/easy_wins/ansible.cfg -------------------------------------------------------------------------------- /easy_wins/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/easy_wins/hosts -------------------------------------------------------------------------------- /easy_wins/ios_facts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/easy_wins/ios_facts.yml -------------------------------------------------------------------------------- /topology/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/topology/README.md -------------------------------------------------------------------------------- /topology/hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/topology/hosts.txt -------------------------------------------------------------------------------- /topology/lab-topo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/topology/lab-topo.png -------------------------------------------------------------------------------- /transciever_report/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/transciever_report/README.md -------------------------------------------------------------------------------- /transciever_report/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/transciever_report/ansible.cfg -------------------------------------------------------------------------------- /transciever_report/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/transciever_report/hosts -------------------------------------------------------------------------------- /transciever_report/output/parsed/switch-a-mgmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/transciever_report/output/parsed/switch-a-mgmt -------------------------------------------------------------------------------- /transciever_report/output/parsed/switch-b-mgmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/transciever_report/output/parsed/switch-b-mgmt -------------------------------------------------------------------------------- /transciever_report/output/raw/switch-a-mgmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/transciever_report/output/raw/switch-a-mgmt -------------------------------------------------------------------------------- /transciever_report/output/raw/switch-b-mgmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/transciever_report/output/raw/switch-b-mgmt -------------------------------------------------------------------------------- /transciever_report/output/transciever-alarms.report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/transciever_report/output/transciever-alarms.report -------------------------------------------------------------------------------- /transciever_report/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/transciever_report/parse.py -------------------------------------------------------------------------------- /transciever_report/transcievers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/transciever_report/transcievers.yml -------------------------------------------------------------------------------- /wan-deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/README.md -------------------------------------------------------------------------------- /wan-deploy/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/ansible.cfg -------------------------------------------------------------------------------- /wan-deploy/asen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/asen.jpg -------------------------------------------------------------------------------- /wan-deploy/configs/ce1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/ce1.conf -------------------------------------------------------------------------------- /wan-deploy/configs/ce1/10-ce2pe-links-p2p.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/ce1/10-ce2pe-links-p2p.conf -------------------------------------------------------------------------------- /wan-deploy/configs/ce1/20-ce-loopback-ints.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/ce1/20-ce-loopback-ints.conf -------------------------------------------------------------------------------- /wan-deploy/configs/ce1/30-ce-bgp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/ce1/30-ce-bgp.conf -------------------------------------------------------------------------------- /wan-deploy/configs/ce2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/ce2.conf -------------------------------------------------------------------------------- /wan-deploy/configs/ce2/10-ce2pe-links-p2p.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/ce2/10-ce2pe-links-p2p.conf -------------------------------------------------------------------------------- /wan-deploy/configs/ce2/20-ce-loopback-ints.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/ce2/20-ce-loopback-ints.conf -------------------------------------------------------------------------------- /wan-deploy/configs/ce2/30-ce-bgp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/ce2/30-ce-bgp.conf -------------------------------------------------------------------------------- /wan-deploy/configs/ce3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/ce3.conf -------------------------------------------------------------------------------- /wan-deploy/configs/ce3/10-ce2pe-links-p2p.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/ce3/10-ce2pe-links-p2p.conf -------------------------------------------------------------------------------- /wan-deploy/configs/ce3/20-ce-loopback-ints.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/ce3/20-ce-loopback-ints.conf -------------------------------------------------------------------------------- /wan-deploy/configs/ce3/30-ce-bgp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/ce3/30-ce-bgp.conf -------------------------------------------------------------------------------- /wan-deploy/configs/ce4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/ce4.conf -------------------------------------------------------------------------------- /wan-deploy/configs/ce4/10-ce2pe-links-p2p.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/ce4/10-ce2pe-links-p2p.conf -------------------------------------------------------------------------------- /wan-deploy/configs/ce4/20-ce-loopback-ints.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/ce4/20-ce-loopback-ints.conf -------------------------------------------------------------------------------- /wan-deploy/configs/ce4/30-ce-bgp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/ce4/30-ce-bgp.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p20.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p20.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p20/10-vrf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p20/10-vrf.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p20/20-pe-loopback-ints.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p20/20-pe-loopback-ints.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p20/30-ce2pe-links-p2p.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p20/30-ce2pe-links-p2p.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p20/40-ospf-int1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p20/40-ospf-int1.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p20/50-pe-ospf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p20/50-pe-ospf.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p20/60-pe-bgp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p20/60-pe-bgp.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p30.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p30.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p30/10-vrf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p30/10-vrf.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p30/20-pe-loopback-ints.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p30/20-pe-loopback-ints.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p30/30-ce2pe-links-p2p.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p30/30-ce2pe-links-p2p.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p30/40-ospf-int1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p30/40-ospf-int1.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p30/50-pe-ospf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p30/50-pe-ospf.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p30/60-pe-bgp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p30/60-pe-bgp.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p50.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p50.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p50/10-vrf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p50/10-vrf.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p50/20-pe-loopback-ints.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p50/20-pe-loopback-ints.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p50/30-ce2pe-links-p2p.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p50/30-ce2pe-links-p2p.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p50/40-ospf-int1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p50/40-ospf-int1.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p50/50-pe-ospf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p50/50-pe-ospf.conf -------------------------------------------------------------------------------- /wan-deploy/configs/p50/60-pe-bgp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/p50/60-pe-bgp.conf -------------------------------------------------------------------------------- /wan-deploy/configs/rr10.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/rr10.conf -------------------------------------------------------------------------------- /wan-deploy/configs/rr10/10-vrf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/rr10/10-vrf.conf -------------------------------------------------------------------------------- /wan-deploy/configs/rr10/20-pe-loopback-ints.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/rr10/20-pe-loopback-ints.conf -------------------------------------------------------------------------------- /wan-deploy/configs/rr10/30-ce2pe-links-p2p.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/rr10/30-ce2pe-links-p2p.conf -------------------------------------------------------------------------------- /wan-deploy/configs/rr10/40-ospf-int1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/rr10/40-ospf-int1.conf -------------------------------------------------------------------------------- /wan-deploy/configs/rr10/50-pe-ospf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/rr10/50-pe-ospf.conf -------------------------------------------------------------------------------- /wan-deploy/configs/rr10/60-pe-bgp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/rr10/60-pe-bgp.conf -------------------------------------------------------------------------------- /wan-deploy/configs/rr40.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/rr40.conf -------------------------------------------------------------------------------- /wan-deploy/configs/rr40/10-vrf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/rr40/10-vrf.conf -------------------------------------------------------------------------------- /wan-deploy/configs/rr40/20-pe-loopback-ints.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/rr40/20-pe-loopback-ints.conf -------------------------------------------------------------------------------- /wan-deploy/configs/rr40/30-ce2pe-links-p2p.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/rr40/30-ce2pe-links-p2p.conf -------------------------------------------------------------------------------- /wan-deploy/configs/rr40/40-ospf-int1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/rr40/40-ospf-int1.conf -------------------------------------------------------------------------------- /wan-deploy/configs/rr40/50-pe-ospf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/rr40/50-pe-ospf.conf -------------------------------------------------------------------------------- /wan-deploy/configs/rr40/60-pe-bgp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/configs/rr40/60-pe-bgp.conf -------------------------------------------------------------------------------- /wan-deploy/generate_templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/generate_templates.yml -------------------------------------------------------------------------------- /wan-deploy/group_vars/ce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/group_vars/ce.yml -------------------------------------------------------------------------------- /wan-deploy/group_vars/pe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/group_vars/pe.yml -------------------------------------------------------------------------------- /wan-deploy/host_vars/ce1.yml: -------------------------------------------------------------------------------- 1 | --- 2 | bgp_asn: 65511 3 | ce_index: 1 -------------------------------------------------------------------------------- /wan-deploy/host_vars/ce2.yml: -------------------------------------------------------------------------------- 1 | --- 2 | bgp_asn: 65512 3 | ce_index: 2 -------------------------------------------------------------------------------- /wan-deploy/host_vars/ce3.yml: -------------------------------------------------------------------------------- 1 | --- 2 | bgp_asn: 65513 3 | ce_index: 3 -------------------------------------------------------------------------------- /wan-deploy/host_vars/ce4.yml: -------------------------------------------------------------------------------- 1 | --- 2 | bgp_asn: 65514 3 | ce_index: 4 -------------------------------------------------------------------------------- /wan-deploy/host_vars/p20.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/host_vars/p20.yml -------------------------------------------------------------------------------- /wan-deploy/host_vars/p30.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/host_vars/p30.yml -------------------------------------------------------------------------------- /wan-deploy/host_vars/p50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/host_vars/p50.yml -------------------------------------------------------------------------------- /wan-deploy/host_vars/rr10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/host_vars/rr10.yml -------------------------------------------------------------------------------- /wan-deploy/host_vars/rr40.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/host_vars/rr40.yml -------------------------------------------------------------------------------- /wan-deploy/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/hosts -------------------------------------------------------------------------------- /wan-deploy/includes/ce2pe_links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/includes/ce2pe_links.yml -------------------------------------------------------------------------------- /wan-deploy/parse_ios_bgp_summary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/parse_ios_bgp_summary.yml -------------------------------------------------------------------------------- /wan-deploy/parse_ios_ospf_neighbors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/parse_ios_ospf_neighbors.yml -------------------------------------------------------------------------------- /wan-deploy/push_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/push_config.yml -------------------------------------------------------------------------------- /wan-deploy/templates/ce-bgp.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/templates/ce-bgp.j2 -------------------------------------------------------------------------------- /wan-deploy/templates/ce-loopback-ints.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/templates/ce-loopback-ints.j2 -------------------------------------------------------------------------------- /wan-deploy/templates/ce2pe-links-p2p.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/templates/ce2pe-links-p2p.j2 -------------------------------------------------------------------------------- /wan-deploy/templates/pe-bgp.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/templates/pe-bgp.j2 -------------------------------------------------------------------------------- /wan-deploy/templates/pe-loopback-ints.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/templates/pe-loopback-ints.j2 -------------------------------------------------------------------------------- /wan-deploy/templates/pe-ospf-int1.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/templates/pe-ospf-int1.j2 -------------------------------------------------------------------------------- /wan-deploy/templates/pe-ospf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/templates/pe-ospf.j2 -------------------------------------------------------------------------------- /wan-deploy/templates/pe-vrfs.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/templates/pe-vrfs.j2 -------------------------------------------------------------------------------- /wan-deploy/validate_pe_routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-krause/netauto-class/HEAD/wan-deploy/validate_pe_routing.yml --------------------------------------------------------------------------------