aboutsummaryrefslogtreecommitdiffstats
path: root/Scripts/reset_tap.sh
blob: d8080cd354df32ff2173b2295a84da917e183912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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