Skip to main content

wgtrack tracks WireGuard links, exports the status, and updates endpoints as needed

Project description

wgtrack

"wgtrack" tracks WireGuard links, exports the links' status, and updates endpoints as needed.

WireGuard is a great VPN solution. wgtrack provides the tooling around it to track the status of the links and export the data for monitoring solutions. It also re-resolves endpoint hostnames to thus support connections between dial-in peers with changing IP addresses.

Note: This is code in "works for me" quality; it is not tested properly. This tool started as an exercise in using Python's asyncio library.


Installation

wgtrack can be installed easily on Linux:

  • Make sure that you use Python version 3.5 or newer
  • Install wgtrack from PyPi
$ pip install wgtrack
  • Configure wgtrack using /etc/wgtrack.conf
  • Configure wgtrack to run as a service as needed

Clone (for developers only)

Clone this repo to your local machine using https://github.com/towalink/wgtrack.git


Features

  • Checks the status of WireGuard links based on heartbeat success
  • Optionally ping the remote peers regularly to check the tunnels
  • Export the status of WireGuard links (eg. attributes like tx/rx counters) for use by monitoring applications (currently: Telegraf)
  • Re-resolve the endpoint in case of tunnel failure to thus support endpoints with changing IP addresses (can be used for "UDP Hole Punching" in NAT scenarios, tested with FritzBox routers)
  • Fine-granular control of timers to avoid unnecessary traffic and DNS requests.

Usage

  • Basic usage

Start wgtrack using the config file /etc/wgtrack.conf:

$ python -m wgtrack
  • You may specify some command line parameters as needed

Alternative config file:

$ python -m wgtrack --config /etc/my_special_wgtrack.conf
  • Configure the level of detail of logging information
$ python -m wgtrack --loglevel debug
  • Show help page for details on command line arguments
$ python -m wgtrack --help

Documentation

After initialization (1), this tool periodically queries the status (2) of the WireGuard links, acts on their peers' status (3), and outputs the status (4) as requested.

(1) Initialization

The wgtrack configuration file and also the WireGuard configuration files in "/etc/wireguard" are read. Based on this, the tool knows about all configured WireGuard interfaces and their peers (including configured endpoint hostnames). In case of a change of the configuration, wgtrack may be notified by a SIGHUP signal to redo this initialization step.

The wgtrack configuration file uses the ini format. General parameters are specified in the "[general]" section. Parameters that shall be applied to all sections are specified in the "[DEFAULT]" section. Parameters for individual interfaces are specified in sections named "[interface:<ifname>]" with "<ifname>" being the name of the interface. Parameters for individual outputs are specified in sections named "[output:<outputname>]" with "<outputname>" being the name of the output.

(2) Periodic queries

wgtrack periodically queries the status of the WireGuard interfaces and their peers. This is done using the "wg show all dump" command. How often this is done can be configured using the "cycle_time" parameter (default: 30s).

In case the heartbeat of a link to a peer shows usual times that indicate a working link, the link can be checked using echo requests. By default, this is done each "cycle_time" (default "ping_interval" is 1 for this). It can be disabled by setting "ping_interval" to 0. After the configured number of failed echo requests ("ping_failafternum", default 2), the link is considered down despite the heartbeat appearing ok. The first "allowed-ip" configured for the respective peer is used as the destination for the respective echo request.

(3) Act on peer status

If a link is considered down, its peer endpoint can be re-resolved. Before this is done, the tool waits for the configured number of periods ("cycles_wait", default 2) to wait for an Internet connection with a dynamic IP address to be reestablished after disconnection. After that, the endpoint is re-resolved "cycles_checking" times each multitude "cycles_checkperiod" of the "cycle_time". After that, an exponential back-off takes place. However, "cycles_slowcheckingperiod" (default 20) defines the longest interval (as a multitude of the "cycle_time" until a regular recheck is done.

(4) Output the interface and peer status

Outputs for the status information can be configured. Currently, the wire protocol of InfluxDB is supported as output format. This format is used by "Telegraf".

Add the following in your wgtrack.ini to enable output in the Influx wire format:

[output:influx]

In the Telegraf config, something like the following needs to be added:

[[inputs.file]]
   files = ["/var/cache/wg-track_influx.out"]

License

License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wgtrack-0.1.8.tar.gz (28.8 kB view details)

Uploaded Source

Built Distribution

wgtrack-0.1.8-py3-none-any.whl (29.9 kB view details)

Uploaded Python 3

File details

Details for the file wgtrack-0.1.8.tar.gz.

File metadata

  • Download URL: wgtrack-0.1.8.tar.gz
  • Upload date:
  • Size: 28.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.5

File hashes

Hashes for wgtrack-0.1.8.tar.gz
Algorithm Hash digest
SHA256 4c75d5d0fb440811ee266a385a630af825a157ff88a388011e3135649d6b7301
MD5 8eaa64726c99b4aec34123c22af175af
BLAKE2b-256 9a8bd448a46035c9883704862be129198b7c6bc9b335435d85ce5f48504ef720

See more details on using hashes here.

File details

Details for the file wgtrack-0.1.8-py3-none-any.whl.

File metadata

  • Download URL: wgtrack-0.1.8-py3-none-any.whl
  • Upload date:
  • Size: 29.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.5

File hashes

Hashes for wgtrack-0.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 24bd0ab8929434df6540c9b903ff83eefb8f8703735247b16d9de0b0c139ab49
MD5 f28796eca12c4a009b73eaa77aa7ecc7
BLAKE2b-256 1bde82f5fafe2339cabaf73f5f20c0285d13edd13864b695634cd7007ba2ddc6

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page