Skip to content

Python package for API access and management for TP-Link Router that using the "gdpr proxy"

License

Notifications You must be signed in to change notification settings

waffelheld/TP-Link-gdpr-api

 
 

Repository files navigation

[WIP] TP-Link Router GDPR API

Python package for API access and management for TP-Link Router using the "GDPR Proxy"

Based on TP-Link Router API and TP-Link TD-W9960 API client

See Supported routers

Installation

pip install tplinkroutergdpr pip install -r requirements.txt

Dependencies

Usage

Enter the host & credentials used to log in to your router management page. Username is admin by default. But you may pass username as third parameter

from tplinkroutergdpr import TplinkRouterGDPR, Wifi
from logging import Logger

router = TplinkRouterGDPR('http://192.168.0.1', 'password')

# You may also pass username if it is different and a logger to log errors as
# TplinkRouter('http://192.168.0.1','password','admin2', Logger('test'))

# Get firmware info - returns Firmware
firmware = router.get_firmware()

# Get status info - returns Status
status = router.get_status()

# Turn ON guest wifi 2.5G
router.set_wifi(Wifi.WIFI_GUEST_2G, True)


# Get Address reservations, sort by ipaddr
reservations = router.get_ipv4_reservations()
reservations.sort(key=lambda a:a.ipaddr)
for res in reservations:
    print(f"{res.macaddr} {res.ipaddr:16s} {res.hostname:36} {'Permanent':12}")

# Get DHCP leases, sort by ipaddr
leases = router.get_ipv4_dhcp_leases()
leases.sort(key=lambda a:a.ipaddr)
for lease in leases:
    print(f"{lease.macaddr} {lease.ipaddr:16s} {lease.hostname:36} {lease.lease_time:12}")

The TP-Link Web Interface only supports upto 1 user logged in at a time (for security reasons, apparently). So before action client authorize and after logout To reduce authorization requests client allows to make several actions with one authorization

from tplinkroutergdpr import TplinkRouterGDPR, Wifi

router = TplinkRouterGDPR('http://192.168.0.1')
router.connect('password',logout_others = True)
router.single_request_mode = False  # make client use single authorization


try:
    if router.connect('password',logout_others = True):  # authorizing
        status = router.get_status()
        if not status.guest_2g_enable:  # check if guest 2.4G wifi is disable
            router.set_wifi(Wifi.WIFI_GUEST_2G, True)  # turn on guest 2.4G wifi
        finally:
            router.logout()  # always logout as TP-Link Web Interface only supports upto 1 user logged

Functions

Status Function Args Description Return
implemented get_firmware Gets firmware info about the router Firmware
TODO get_status Gets status about the router info including wifi statuses and wifi clients info Status
TODO get_full_info Gets firmware and status info tuple[Firmware,Status]
TODO get_ipv4_status Gets WAN and LAN IPv4 status info, gateway, DNS, netmask IPv4Status
TODO get_ipv4_reservations Gets IPv4 reserved addresses (static) [IPv4Reservation]
implemented get_ipv4_dhcp_leases Gets IPv4 addresses assigned via DHCP [IPv4DHCPLease]
TODO set_wifi wifi: Wifi, enable: bool Allow to turn on/of 4 wifi networks
TODO reboot reboot router
implemented connect (string)password: your router password, (bool)logout_others authorize for actions
implemented logout logout after all is done
todo query query, operation='operation=read' execute cgi-bin query dictionary of result or None

Dataclass

Field Description Type
hardware_version Returns like - Archer C6U str
model Returns like - Archer C6U v1.0 str
firmware_version Returns like - 1.1.3 Build 3425243 str
Field Description Type
wan_macaddr router wan mac address str, None
wan_macaddress router wan mac address macaddress.EUI48, None
lan_macaddr router lan mac address str
lan_macaddress router lan mac address macaddress.EUI48
wan_ipv4_addr router wan ipv4 address str, None
wan_ipv4_address router wan ipv4 address ipaddress.IPv4Address, None
lan_ipv4_addr router lan ipv4 address str, None
lan_ipv4_address router lan ipv4 address ipaddress.IPv4Address, None
wan_ipv4_gateway router wan ipv4 gateway str, None
wan_ipv4_gateway_address router wan ipv4 gateway address ipaddress.IPv4Address, None
wired_total Total amount of wired clients int
wifi_clients_total Total amount of main wifi clients int
guest_clients_total Total amount of guest wifi clients int
clients_total Total amount of all connected clients int
guest_2g_enable Is guest wifi 2.4G enabled bool
guest_5g_enable Is guest wifi 5G enabled bool
iot_2g_enable Is IoT wifi 2.4G enabled bool, None
iot_5g_enable Is IoT wifi 5G enabled bool, None
wifi_2g_enable Is main wifi 2.4G enabled bool
wifi_5g_enable Is main wifi 5G enabled bool
wan_ipv4_uptime Internet Uptime int, None
mem_usage Memory usage float, None
cpu_usage CPU usage float, None
devices List of all wifi clients list[Device]
Field Description Type
type client connection type (2.4G or 5G, guest wifi or main wifi) Wifi
macaddr client mac address str
macaddress client mac address macaddress
ipaddr client ip address str
ipaddress client ip address ipaddress
hostname client hostname str
Field Description Type
macaddr client mac address str
macaddress client mac address macaddress
ipaddr client ip address str
ipaddress client ip address ipaddress
hostname client hostname str
enabled enabled bool
Field Description Type
macaddr client mac address str
macaddress client mac address macaddress
ipaddr client ip address str
ipaddress client ip address ipaddress
hostname client hostname str
lease_time ip address lease time str
Field Description Type
wan_macaddr router mac address str
wan_macaddress router mac address macaddress
wan_ipv4_ipaddr router mac address str
wan_ipv4_ipaddress router mac address ipaddress
wan_ipv4_gateway router WAN gateway IP address str
wan_ipv4_gateway_address router WAN gateway IP address ipaddress
wan_ipv4_conntype router connection type str
wan_ipv4_netmask router WAN gateway IP netmask str
wan_ipv4_netmask_address router WAN gateway IP netmask ipaddress
wan_ipv4_pridns router primary dns server str
wan_ipv4_pridns_address router primary dns server ipaddress
wan_ipv4_snddns router secondary dns server str
wan_ipv4_snddns_address router secondary dns server ipaddress
lan_macaddr router mac address str
lan_macaddress router mac address macaddress
lan_ipv4_ipaddr router LAN IP address str
lan_ipv4_ipaddress router LAN IP address ipaddress
lan_ipv4_dhcp_enable router LAN DHCP enabled bool
lan_ipv4_netmask router LAN gateway IP netmask str
lan_ipv4_netmask_address router LAN gateway IP netmask ipaddress
remote router remote bool

Enum

  • Wifi.WIFI_2G - main wifi 2.4G
  • Wifi.WIFI_5G - main wifi 5G
  • Wifi.WIFI_GUEST_2G - guest wifi 2.4G
  • Wifi.WIFI_GUEST_5G - guest wifi 5G
  • Wifi.WIFI_IOT_2G - IoT wifi 2.4G
  • Wifi.WIFI_IOT_5G - IoT wifi 5G

Fully tested Hardware Versions

  • Archer VR2100v

Please let me know if you have tested integration with one of this or other model. Open an issue with info about router's model, hardware and firmware versions.

About

Python package for API access and management for TP-Link Router that using the "gdpr proxy"

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%