├── .gitignore ├── README.md ├── Ref ├── VeloCloud ├── README.MD └── vc.py ├── ansible-cisco-1 ├── config.yaml ├── hosts ├── readme.md └── secrets.yaml ├── cfg-engine1 ├── randomvar.py ├── readme.md ├── start.py └── tasks.py ├── eve-nodes ├── eve-nodes.py ├── iterm2.j2 └── readme.md ├── ios-l2vpn-vpls1 ├── lab-yaml.py ├── readme.md ├── vpls1.j2 └── vpls1.yml ├── mikrotik-l3vpn-lab1 ├── README.md ├── mikrotik.j2 ├── mikrotik.py └── mikrotik.yml └── misc ├── available_switchports.py ├── backup-configs.ps1 ├── cmdinput1.py ├── host-device1 ├── ping-routers1.py └── subnet_conversion_drills.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | VeloCloud/vc1.py 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/README.md -------------------------------------------------------------------------------- /Ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VeloCloud/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/VeloCloud/README.MD -------------------------------------------------------------------------------- /VeloCloud/vc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/VeloCloud/vc.py -------------------------------------------------------------------------------- /ansible-cisco-1/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/ansible-cisco-1/config.yaml -------------------------------------------------------------------------------- /ansible-cisco-1/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/ansible-cisco-1/hosts -------------------------------------------------------------------------------- /ansible-cisco-1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/ansible-cisco-1/readme.md -------------------------------------------------------------------------------- /ansible-cisco-1/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/ansible-cisco-1/secrets.yaml -------------------------------------------------------------------------------- /cfg-engine1/randomvar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/cfg-engine1/randomvar.py -------------------------------------------------------------------------------- /cfg-engine1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/cfg-engine1/readme.md -------------------------------------------------------------------------------- /cfg-engine1/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/cfg-engine1/start.py -------------------------------------------------------------------------------- /cfg-engine1/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/cfg-engine1/tasks.py -------------------------------------------------------------------------------- /eve-nodes/eve-nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/eve-nodes/eve-nodes.py -------------------------------------------------------------------------------- /eve-nodes/iterm2.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/eve-nodes/iterm2.j2 -------------------------------------------------------------------------------- /eve-nodes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/eve-nodes/readme.md -------------------------------------------------------------------------------- /ios-l2vpn-vpls1/lab-yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/ios-l2vpn-vpls1/lab-yaml.py -------------------------------------------------------------------------------- /ios-l2vpn-vpls1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/ios-l2vpn-vpls1/readme.md -------------------------------------------------------------------------------- /ios-l2vpn-vpls1/vpls1.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/ios-l2vpn-vpls1/vpls1.j2 -------------------------------------------------------------------------------- /ios-l2vpn-vpls1/vpls1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/ios-l2vpn-vpls1/vpls1.yml -------------------------------------------------------------------------------- /mikrotik-l3vpn-lab1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/mikrotik-l3vpn-lab1/README.md -------------------------------------------------------------------------------- /mikrotik-l3vpn-lab1/mikrotik.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/mikrotik-l3vpn-lab1/mikrotik.j2 -------------------------------------------------------------------------------- /mikrotik-l3vpn-lab1/mikrotik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/mikrotik-l3vpn-lab1/mikrotik.py -------------------------------------------------------------------------------- /mikrotik-l3vpn-lab1/mikrotik.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/mikrotik-l3vpn-lab1/mikrotik.yml -------------------------------------------------------------------------------- /misc/available_switchports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/misc/available_switchports.py -------------------------------------------------------------------------------- /misc/backup-configs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/misc/backup-configs.ps1 -------------------------------------------------------------------------------- /misc/cmdinput1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/misc/cmdinput1.py -------------------------------------------------------------------------------- /misc/host-device1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/misc/host-device1 -------------------------------------------------------------------------------- /misc/ping-routers1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/misc/ping-routers1.py -------------------------------------------------------------------------------- /misc/subnet_conversion_drills.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wax-Trax/beginner-scraps/HEAD/misc/subnet_conversion_drills.py --------------------------------------------------------------------------------