Python API to interact with Ruckus Unleashed and ZoneDirector devices.
Project description
aioruckus
A Python API which interacts with Ruckus Unleashed and ZoneDirector devices via their AJAX Web Service interface.
Configuration information can also be queried from Ruckus Unleashed and ZoneDirector backup files.
Compatible with all Ruckus Unleashed versions, and Ruckus ZoneDirector versions 9.10 onwards.
How to install
pip install aioruckus
Usage
Functions are defined within an async context manager, so you will have to use asyncio rather than calling the functions directly in a shell.
from aioruckus import AjaxSession, BackupSession, SystemStat
import asyncio
async def test_aioruckus():
with BackupSession.create("<ruckus backup filename>") as session:
ruckus = session.api
aps = await ruckus.get_aps()
ap_groups = await ruckus.get_ap_groups()
wlans = await ruckus.get_wlans()
wlan_groups = await ruckus.get_wlan_groups()
blocked = await ruckus.get_blocked_client_macs()
mesh = await ruckus.get_mesh_info()
all_system_info = await ruckus.get_system_info(SystemStat.ALL)
async with AjaxSession.async_create("<ruckus ip>", "<ruckus user>", "<ruckus password>") as session:
ruckus = session.api
aps = await ruckus.get_aps()
ap_groups = await ruckus.get_ap_groups()
wlans = await ruckus.get_wlans()
wlan_groups = await ruckus.get_wlan_groups() # WLAN Groups are CLI-only on Unleashed
blocked = await ruckus.get_blocked_client_macs()
mesh = await ruckus.get_mesh_info()
default_system_info = await ruckus.get_system_info()
all_system_info = await ruckus.get_system_info(SystemStat.ALL)
ap_group_stats = await ruckus.get_ap_group_stats()
wlan_group_stats = await ruckus.get_wlan_group_stats()
active_clients = await ruckus.get_active_clients()
inactive_clients = await ruckus.get_inactive_clients() # always empty on Unleashed
syslog = await ruckus.get_syslog()
await ruckus.do_block_client("60:ab:de:ad:be:ef")
await ruckus.do_unblock_client("60:ab:de:ad:be:ef")
await ruckus.do_disable_wlan("my ssid")
await ruckus.do_enable_wlan("my ssid")
await ruckus.do_set_wlan_password("my ssid", "blah>blah<")
await ruckus.do_add_wlan_group("new empty wlangroup", "empty group added by aioruckus")
await ruckus.do_add_wlan_group("new full wlangroup", "group added by aioruckus", wlans)
wlan_group_template = next((wlang for wlang in wlan_groups if wlang["name"] == "Default"), None)
await ruckus.do_clone_wlan_group(wlan_group_template, "Copy of Default")
await ruckus.do_delete_wlan_group("Copy of Default")
await ruckus.do_add_wlan("my new sid", passphrase="mypassphrase" )
await ruckus.do_edit_wlan("my new sid", {"ofdm-rate-only": True})
template_wlan = next((wlan for wlan in wlans if wlan["name"] == "my ssid"), None)
await ruckus.do_clone_wlan(template_wlan, "my newer sid")
await ruckus.do_delete_wlan("my newer sid")
await ruckus.do_hide_ap_leds("24:79:de:ad:be:ef")
await ruckus.do_show_ap_leds("24:79:de:ad:be:ef")
await ruckus.do_restart_ap("24:79:de:ad:be:ef")
asyncio.run(test_aioruckus())
Other Python APIs for Ruckus Unleashed
This project was originally a fork of pyuckus, which provides similar query functionality by controlling an SSH CLI session.
There is also scrapli support for the Ruckus Unleashed SSH CLI via scrapli community.
Authentication and privilege levels are implemented, but no templates are implemented as of April 2023.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.