Utoljára aktív 1705433148

NetworkManager dispatcher script to restart Wireguard interface on connection change

10-wg-reload.sh Eredeti
1#!/bin/bash
2
3##
4## Reloads Wireguard tunnel when a physical interface change happens
5## Intended for use with always active full tunnels
6##
7## Also when using a second VPN, disables the WG tunnel when
8## enabling the alternate and vice versa
9##
10
11# interface names as shown by 'ip a'
12WG_INTERFACE=''
13ETH_INTERFACE=''
14WIFI_INTERFACE=''
15ALT_VPN=''
16
17if [[ "$1" == "$ETH_INTERFACE" ]] || [[ "$1" == "$WIFI_INTERFACE" ]] && [[ "$2" == "up" ]]; then
18 echo "running $0: $1 $2" | systemd-cat -t nm-dispatcher
19 sleep 2
20 nmcli conn up $WG_INTERFACE
21 resolvectl flush-caches
22elif [[ "$1" == "$ALT_VPN" ]] && [[ "$2" == "up" ]]; then
23 echo "running $0: $1 $2" | systemd-cat -t nm-dispatcher
24 nmcli conn down $WG_INTERFACE
25elif [[ "$1" == "$ALT_VPN" ]] && [[ "$2" == "down" ]]; then
26 echo "running $0: $1 $2" | systemd-cat -t nm-dispatcher
27 nmcli conn up $WG_INTERFACE
28fi
29
30exit 0