mirror of
https://github.com/ilteoood/docker-surfshark.git
synced 2025-12-25 22:43:32 +01:00
18 lines
819 B
Bash
18 lines
819 B
Bash
#!/bin/sh
|
|
rm -rf ovpn_configs*
|
|
wget -O ovpn_configs.zip https://api.surfshark.com/v1/server/configurations
|
|
unzip ovpn_configs.zip -d ovpn_configs
|
|
cd ovpn_configs
|
|
VPN_FILE=$(ls "${SURFSHARK_COUNTRY}"* | grep "${SURFSHARK_CITY}" | grep "${CONNECTION_TYPE}" | shuf | head -n 1)
|
|
echo Chose: ${VPN_FILE}
|
|
printf "${SURFSHARK_USER}\n${SURFSHARK_PASSWORD}" > vpn-auth.txt
|
|
|
|
if [ -n ${LAN_NETWORK} ]
|
|
then
|
|
DEFAULT_GATEWAY=$(ip -4 route list 0/0 | cut -d ' ' -f 3)
|
|
ip route add "${LAN_NETWORK}" via "${DEFAULT_GATEWAY}" dev eth0
|
|
echo Adding ip route add "${LAN_NETWORK}" via "${DEFAULT_GATEWAY}" dev eth0 for attached container web ui access
|
|
echo Do not forget to expose the ports for attached container we ui access
|
|
fi
|
|
openvpn --config $VPN_FILE --auth-user-pass vpn-auth.txt --mute-replay-warnings $OPENVPN_OPTS
|