mirror of
https://github.com/ivanilves/xiringuito.git
synced 2025-05-19 00:30:08 -07:00
11 lines
167 B
Bash
Executable File
11 lines
167 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Teardown client after disconnection
|
|
#
|
|
if [[ ${#} != 1 ]]; then
|
|
echo "Usage: ${0} TUNNEL_ID"
|
|
exit 1
|
|
fi
|
|
|
|
sudo ip tuntap del mode tun tun${1}
|