├── .gitignore ├── LICENSE ├── README.md ├── backup-multiple-routers.py ├── backup-router.py ├── device-types.py ├── devices.txt ├── netmiko-save-config.py ├── ping-trace.py ├── ping.py ├── ssh-to-multiple-routers.py └── ssh-to-router.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerperkin/python-scripts-for-network-engineers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerperkin/python-scripts-for-network-engineers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerperkin/python-scripts-for-network-engineers/HEAD/README.md -------------------------------------------------------------------------------- /backup-multiple-routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerperkin/python-scripts-for-network-engineers/HEAD/backup-multiple-routers.py -------------------------------------------------------------------------------- /backup-router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerperkin/python-scripts-for-network-engineers/HEAD/backup-router.py -------------------------------------------------------------------------------- /device-types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerperkin/python-scripts-for-network-engineers/HEAD/device-types.py -------------------------------------------------------------------------------- /devices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerperkin/python-scripts-for-network-engineers/HEAD/devices.txt -------------------------------------------------------------------------------- /netmiko-save-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerperkin/python-scripts-for-network-engineers/HEAD/netmiko-save-config.py -------------------------------------------------------------------------------- /ping-trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerperkin/python-scripts-for-network-engineers/HEAD/ping-trace.py -------------------------------------------------------------------------------- /ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerperkin/python-scripts-for-network-engineers/HEAD/ping.py -------------------------------------------------------------------------------- /ssh-to-multiple-routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerperkin/python-scripts-for-network-engineers/HEAD/ssh-to-multiple-routers.py -------------------------------------------------------------------------------- /ssh-to-router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerperkin/python-scripts-for-network-engineers/HEAD/ssh-to-router.py --------------------------------------------------------------------------------