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.6.tar.gz (28.9 kB view details)

Uploaded Source

Built Distribution

wgtrack-0.1.6-py3-none-any.whl (30.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: wgtrack-0.1.6.tar.gz
  • Upload date:
  • Size: 28.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.0.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for wgtrack-0.1.6.tar.gz
Algorithm Hash digest
SHA256 3f9e290a7c2266380d898227c5eddae40f607215972a02e4611bbd9d1c96685e
MD5 e1ea025dcbd19656a77766427607a997
BLAKE2b-256 9409c30d353e63507f0aaf2798e7182d796770842fcc74a856cdb5a9258f2ae5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wgtrack-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 30.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.0.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for wgtrack-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 1fa0a832726877a2ad269d86aab8153c7ab926d0dd5d2994f24f8b52e6401331
MD5 3c444d0748ff51c00e420844c2acdac5
BLAKE2b-256 ad0d3baca57d440c13c19a5bdd80fc3b74a8ff9ec9c44b5f6b3bf7f52c4af3ce

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