├── .gitignore ├── 01_vpn.yaml ├── 10_ios.yaml ├── 20_ios_template.yaml ├── 30_api_enable.yaml ├── 40_netconf.yaml ├── 50_nxos.yaml ├── README.md ├── ansible.cfg ├── cl_pods.csv ├── group_vars ├── all.yml ├── iosrouters.yml └── nxosswitches.yml ├── inventory ├── roles ├── netconf_router │ └── tasks │ │ └── main.yaml └── nxapi_switch │ └── tasks │ └── main.yaml └── template.j2 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhlskev/devnet1002/HEAD/.gitignore -------------------------------------------------------------------------------- /01_vpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhlskev/devnet1002/HEAD/01_vpn.yaml -------------------------------------------------------------------------------- /10_ios.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhlskev/devnet1002/HEAD/10_ios.yaml -------------------------------------------------------------------------------- /20_ios_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhlskev/devnet1002/HEAD/20_ios_template.yaml -------------------------------------------------------------------------------- /30_api_enable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhlskev/devnet1002/HEAD/30_api_enable.yaml -------------------------------------------------------------------------------- /40_netconf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhlskev/devnet1002/HEAD/40_netconf.yaml -------------------------------------------------------------------------------- /50_nxos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhlskev/devnet1002/HEAD/50_nxos.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhlskev/devnet1002/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhlskev/devnet1002/HEAD/ansible.cfg -------------------------------------------------------------------------------- /cl_pods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhlskev/devnet1002/HEAD/cl_pods.csv -------------------------------------------------------------------------------- /group_vars/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhlskev/devnet1002/HEAD/group_vars/all.yml -------------------------------------------------------------------------------- /group_vars/iosrouters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhlskev/devnet1002/HEAD/group_vars/iosrouters.yml -------------------------------------------------------------------------------- /group_vars/nxosswitches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhlskev/devnet1002/HEAD/group_vars/nxosswitches.yml -------------------------------------------------------------------------------- /inventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhlskev/devnet1002/HEAD/inventory -------------------------------------------------------------------------------- /roles/netconf_router/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhlskev/devnet1002/HEAD/roles/netconf_router/tasks/main.yaml -------------------------------------------------------------------------------- /roles/nxapi_switch/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhlskev/devnet1002/HEAD/roles/nxapi_switch/tasks/main.yaml -------------------------------------------------------------------------------- /template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhlskev/devnet1002/HEAD/template.j2 --------------------------------------------------------------------------------