A simple Python wrapper for the TP-Link Omada Software Controller API.
Here are some links which may be helpful when using or extending this library:
- Omada SDN Controller V5.9.9 API Document
- Omada SDN Controller V5.4.6 API Document
- Omada SDN Controller V5.0.15 API Document
- Omada SDN Controller V4.1.5 API Document
- Requirements of Establishing an External Portal Server (> 5.0.15)
- Requirements of Establishing an External Portal Server (> 4.1.5)
- Requirements of Establishing an External Portal Server (> 2.6.0)
- Requirements of Establishing an External Portal Server (< 2.5.4)
Currently this is just the bare-minimum required to log in, get site settings, push site settings, and log out.
from omada import Omada
# load our local config file
omada = Omada('omada.cfg')
# or specify the baseurl and site name directly
#omada = Omada(baseurl='https://...', site='Office')
# log into the controller (username and password are in omada.cfg)
omada.login()
# or specify the username and password directly
# omada.login(username='apiuser', password='secretpassword')
# get the site settings
settings = omada.getSiteSettings()
# turn the LEDs off
settings['led']['enable'] = False
# push the settings back
omada.setSiteSettings(settings)
# log out of the controller
omada.logout()
I use this in a cron schedule to turn my site LED setting off at night and back on in the morning.
Turn the LED on:
$ python led.py on
led: on
Turn the LED off:
$ python led.py off
led: off
These are simple apps to display similar output to the "Clients" and "Devices" page on the web interface.
$ python clients.py
USERNAME IP ADDRESS STATUS
00-11-22-33-44-55 192.168.1.123 CONNECTED
...
Make sure you have your Settings file configured correctly for these to work.
You can store your controller settings in a configuration file to avoid hard-coding them in your scripts.
Currently supported settings:
baseurl
- the base url to the controllersite
- the name of the site in the controller (usuallyDefault
)verify
- set this toFalse
to ignore self-signed certificate errorswarnings
- set this toFalse
to hide urllib3 warnings whenverify=False
verbose
- set this toTrue
to force low-level reqeusts to output debugging infousername
- the username to log in aspassword
- the password for the user
[omada]
baseurl = https://omadacontroller.local:8043
site = Default
verify = False
username = apiuser
password = secretpassword
For my wife, who asked that I turn off the device LEDs at night. ❤️