aboutsummaryrefslogtreecommitdiff
path: root/.scripts/vpn
diff options
context:
space:
mode:
authorMarvin Borner2022-05-31 14:34:49 +0200
committerMarvin Borner2022-05-31 14:39:35 +0200
commita56b6a121b31b82dcf7279e6eea60bbca1852fc5 (patch)
tree7627bb839310c4a4a3632b378ebe87bc031f61ff /.scripts/vpn
parentb8be82d9113dd0fec9021aa573039cc64dbd849a (diff)
Sync
Diffstat (limited to '.scripts/vpn')
-rwxr-xr-x.scripts/vpn32
1 files changed, 32 insertions, 0 deletions
diff --git a/.scripts/vpn b/.scripts/vpn
new file mode 100755
index 0000000..62aab79
--- /dev/null
+++ b/.scripts/vpn
@@ -0,0 +1,32 @@
+#!/bin/env bash
+
+set -e
+
+if [ "$EUID" -eq 0 ]; then
+ echo "Don't use sudo/root pls"
+ exit
+fi
+
+if ! wg &>/dev/null; then
+ wg-quick down wg0
+ echo "Disconnected from Wireguard!"
+ exit
+fi
+
+if sudo pppstats &>/dev/null; then
+ sudo poff uni-tuebingen
+ echo "Disconnected from Tübingen!"
+ exit
+fi
+
+read -p "[T]uebingen or [W]ireguard? " -n 1 -r
+echo
+if [[ $REPLY =~ ^[Tt]$ ]]; then
+ sudo pon uni-tuebingen
+ echo "Connected to Tübingen!"
+ exit
+elif [[ $REPLY =~ ^[Ww]$ ]]; then
+ wg-quick up wg0
+ echo "Connected to Wireguard!"
+ exit
+fi