mirror of
https://github.com/ivanilves/xiringuito.git
synced 2025-05-15 23:00:18 -07:00
13 lines
190 B
Bash
Executable File
13 lines
190 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Add client route [after setting up client]
|
|
#
|
|
set -e
|
|
|
|
if [[ ${#} -ne 2 ]]; then
|
|
echo "Usage: ${0} TUNNEL_ID NETWORK"
|
|
exit 1
|
|
fi
|
|
|
|
sudo ip route add ${2} dev tun${1}
|