aboutsummaryrefslogtreecommitdiffstats
path: root/Scripts/reset_tap.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Scripts/reset_tap.sh')
-rw-r--r--Scripts/reset_tap.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/Scripts/reset_tap.sh b/Scripts/reset_tap.sh
deleted file mode 100644
index d8080cd..0000000
--- a/Scripts/reset_tap.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-
-if [[ $EUID > 0 ]]; then
- echo "Run this script as root"
- exit
-fi
-
-BRIDGE="br0"
-TAP="tap0"
-
-echo "Removing bridge $BRIDGE"
-ip link delete $BRIDGE type bridge
-
-echo "Removing tap $TAP"
-ip link delete $TAP type tap
-
-echo "Setting $INTERFACE up"
-ip link set up dev $INTERFACE
-
-echo "Starting NetworkManager"
-systemctl start NetworkManager
-