Driver implementation for Aruba OS Switch. Tested in AOS > WC.16.09.0004, some modules may not work properly in older versions.
* cli() ✅
* close() ✅
* commit_config() ✅
* compare_config() ✅
* compliance_report() ✅
* confirm_commit() ✅
* discard_config() ✅
* get_arp_table() ✅
* get_bgp_config() ❌*
* get_bgp_neighbors() ❌*
* get_bgp_neighbors_detail() ❌*
* get_config() ✅
* get_environment() ❌ - Planned
* get_facts() ✅
* get_firewall_policies() ❌*
* get_interfaces_counters() ❌***
* get_interfaces() ✅
* get_interfaces_ip() ✅
* get_ipv6_neighbors_table() ❌*
* get_lldp_neighbors() ✅
* get_lldp_neighbors_detail() ✅
* get_network_instances() ❌*
* get_mac_address_table() ✅
* get_ntp_peers() ✅
* get_ntp_servers() ✅
* get_ntp_stats() ✅
* get_optics() ❌ - Planned
* get_probes_*() ❌*
* get_route_to() ✅
* get_snmp_information() ❌ - Planned
* get_users() ❌ - Planned
* has_pending_commit() ✅
* is_alive() ✅
* load_merge_candidate() ✅**
* load_replace_candidate() ✅
* load_template() ✅
* open() ✅
* ping() ✅
* rollback() ✅
* traceroute() ✅
* N/A - not supported on the tested ArubaOS devices
** Incomplete support for load merge, configuration is directly pushed to the running config. Not recommended, use with precaution !!!
*** No easy way to get this. API does not support it and there's no single command to display it for all ports
The following software is required:
- Python3
- Pip
- Python modules specified in
requirements.txt
To install simply run:
pip3 install napalm-arubaos-switch
This driver relies exclusively on the REST API of Aruba Switches, and it needs to be enabled beforehand. To enable the REST API in the switch, just run:
web-management ssl
rest-interface
rest-interface session-idle-timeout 120 #optional
optional_args can be set during initialization like this:
from napalm import get_network_driver
d = get_network_driver("arubaoss")
with d('1.2.3.4', 'username', 'password', optional_args={'ssl_verify': False, "debugging": True}) as aruba:
print(aruba.get_config())
The following values can be set in optional_args:
- ssl_verify: bool/str = defaults to True - will be passed to the requests object (description can be found here)
- keepalive: bool = defaults to False - sets the underlying TCP connection to either keep the connection or not and is a workaround for an issue with ArubaOS devices (discussed here)
- keep_alive: bool = same as keepalive, just shadows it to be able to use the same keyword as in older Python requests versions
- debugging: bool = defaults to False - sets the level of the logging handler to logging.DEBUG
- disable_ssl_warnings: bool = defaults to False - disables ssl warnings from urllib3
- api: string = defaults to v6 - defines the API version
- ssl: bool = defaults to True, sets http or https
To use the driver with Saltstack, you would typically need a proxy minion.
Example pillar's config:
proxy:
proxytype: napalm
driver: arubaoss
host: 192.0.2.1
username: manager
password: manager
master: lab-salt-master
mine_enabled: true # not required, but nice to have
- grains.items
- net.arp
- net.mac
- net.ipaddrs
- net.lldp
- net.facts
- net.ping
- net.traceroute
- route.show
- net.cli
- net.config
- net.load_config
- net.compare_config
- net.load_template ( Issue #18)
- net.discard_config
- ntp.servers
- napalm.compliance_report
More details in Saltstack examples
How to get it running with ansible and some examples are in the Ansible docs
TBD: Explain how to run the automated tests for this system
Please read CONTRIBUTING for details on our process for submitting pull requests to us, and please ensure you follow the CODE_OF_CONDUCT.
TBD
- Guillermo Cotone - @gcotone
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details