The following are instructions for setting up a system starting from stock system images.
These instructions were tested on a 64-bit systems from https://github.com/opscode/bento, and using the Junos PyEZ library version 2.1.0.
- Ubuntu 16.10
- Ubuntu 16.04
- Ubuntu 15.10
- Ubuntu 15.04
- Debian 8.7
- Debian 8.6
sudo apt-get update
sudo apt-get install python-dev
wget https://bootstrap.pypa.io/get-pip.py -O - | sudo python
sudo apt-get install python3-dev
wget https://bootstrap.pypa.io/get-pip.py -O - | sudo python3
pre-requisite Python packages
sudo apt-get install libxslt1-dev libssl-dev libffi-dev
sudo pip install junos-eznc
Once you've completed the above step, you should be able to create a Device
instance, connect to a Junos system, and display the "facts", as illustrated in the README.md file.
Enjoy!
Development code can be installed directly from GitHub based on any branch, commit, or tag.
Steps 1 -3 are still required.
sudo apt-get install git
sudo pip install git+https://github.com/Juniper/py-junos-eznc.git
or
sudo pip install git+https://github.com/Juniper/py-junos-eznc.git@<branch,tag,commit>