Created
February 13, 2014 06:36
-
-
Save fredhsu/8970833 to your computer and use it in GitHub Desktop.
Quick example of JSON-RPC for Arista eAPI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
from jsonrpclib import Server | |
switches = ["172.22.28.156", "172.22.28.157", "172.22.28.158"] | |
username = "admin" | |
password = "admin" | |
# Going through all the switch IP addresses listed above | |
for switch in switches: | |
urlString = "https://{}:{}@{}/command-api".format(username, password, switch) | |
switchReq = Server( urlString ) | |
# Display the current vlan list | |
response = switchReq.runCmds( 1, ["show vlan"] ) | |
print "Switch : " + switch + " VLANs: " | |
print response[0]["vlans"].keys() | |
# Add vlan 100 to the switch | |
print "Adding vlan 100" | |
response = switchReq.runCmds( 1, ["enable", "configure", "vlan 100"] ) | |
# List the vlans again to show vlan 100 configured | |
response = switchReq.runCmds( 1, ["show vlan"] ) | |
print "Switch : " + switch + " VLANs: " | |
print response[0]["vlans"].keys() | |
print "\n*** Done adding vlan to switches ***\n" | |
# Go through them again to remove the vlan | |
for switch in switches: | |
urlString = "https://{}:{}@{}/command-api".format(username, password, switch) | |
switchReq = Server( urlString ) | |
# Remove vlan 100 | |
print switch + " : removing vlan 100" | |
response = switchReq.runCmds( 1, ["enable", "configure", "no vlan 100", "end"] ) | |
print response | |
print "\n*** Script done ***" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment