https://github.com/bigevilbeard/basic_netmiko
Getting started with Netmiko using devnet always on Sandbox
https://github.com/bigevilbeard/basic_netmiko
Last synced: about 1 year ago
JSON representation
Getting started with Netmiko using devnet always on Sandbox
- Host: GitHub
- URL: https://github.com/bigevilbeard/basic_netmiko
- Owner: bigevilbeard
- License: mit
- Created: 2019-07-17T11:36:54.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-09T09:21:39.000Z (almost 7 years ago)
- Last Synced: 2025-03-25T11:52:24.697Z (about 1 year ago)
- Language: Python
- Size: 255 KB
- Stars: 3
- Watchers: 0
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://developer.cisco.com/codeexchange/github/repo/bigevilbeard/Basic_NetMiko)
# Basic NetMiko
Getting started with Netmiko using DevNet always on Sandbox.
## Netmiko
Multi-vendor library to simplify Paramiko SSH connections to network devices. In this example we use the DevNet always on sandbox for IOS XR and IOS XE. For more info on Netmiko, see the
[Netmiko GitHub page](https://github.com/ktbyers/netmiko).
- [IOS XR Programmability Sandbox](https://devnetsandbox.cisco.com/RM/Diagram/Index/e83cfd31-ade3-4e15-91d6-3118b867a0dd?diagramType=Topology) - no reservation required for this sandbox.
- [IOS XE on CSR Sandbox](https://devnetsandbox.cisco.com/RM/Diagram/Index/38ded1f0-16ce-43f2-8df5-43a40ebf752e?diagramType=Topology) - no reservation required for this sandbox.
## Installation | Python Environment Setup
It is recommended that this code be used with Python 3.6. It is highly recommended to leverage Python Virtual Environments (venv).
Follow these steps to create and activate a venv.
```
# OS X or Linux
virtualenv venv --python=python3.6
source venv/bin/activate
```
To install Netmiko, simply use pip and install the requirements file
```
pip install -r requirements.txt
```
Netmiko has the following requirements (which pip will install for you)
- Paramiko >= 2.4.3
- scp >= 0.13.2
- pyyaml
- pyserial
- textfsm

## About me
Network Automation Developer Advocate for Cisco DevNet.
I'm like Hugh Hefner... minus the mansion, the exotic cars, the girls, the magazine and the money. So basically, I have a robe.
Find me here: [LinkedIn](https://www.linkedin.com/in/stuarteclark/) / [Twitter](https://twitter.com/bigevilbeard)