Skip to content

skarpe-github/napalm-aruba505

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Napalm-aruba505


Driver implementation for ArubaOS Access Points


Currently supported Napalm methods:
    get_config()
    get_facts()
    get_lldp_neighbors
    get_interfaces
    get_interfaces_ip
    get_environment
    get_vlans
    get_running_config()
    is_alive
How to install
    pip install napalm-aruba505
How to use it
  • import napalm
  • from napalm import get_network_driver
  • driver = napalm.get_network_driver("napalm_aruba505")
  • device = driver("my-ap-1", "my_username", "my_password")
  • config = device.get_config()
  • print(config)