mirror of
https://github.com/ivanilves/xiringuito.git
synced 2025-05-17 15:50:10 -07:00
13 lines
222 B
Bash
Executable File
13 lines
222 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Add client route [after setting up client] (MacOSX version)
|
|
#
|
|
set -e
|
|
|
|
if [[ ${#} -ne 2 ]]; then
|
|
echo "Usage: ${0} LOCAL_TUNNEL_ID NETWORK"
|
|
exit 1
|
|
fi
|
|
|
|
sudo route add -net ${2} -interface tun${1}
|