Skip to content
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
/ aeromiko Public archive

Aeromiko is a middle-man script to simplify extracting data from Aerohive APs using Netmiko

License

Notifications You must be signed in to change notification settings

andytruett/aeromiko

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Aeromiko

Aeromiko is a middle-man script to simplify extracting data from Aerohive APs using Netmiko

Installation

To install Aeromiko, simply use pip:

$ pip install Aeromiko

Aeromiko has the following requirements (which pip will install for you)

  • netmiko >= 2.4.0

Documentation

https://andytruett.github.io/aeromiko/

Usage

import aeromiko

ip = 127.0.0.1
username = "admin"
password = "password"

access_point = aeromiko.AP(ip, username, password)

access_point.connect()

hostname = access_point.get_hostname()
print(hostname)

-or-

see example script

https://raw.githubusercontent.com/andytruett/Aeromiko/master/example/example.png