Статья о решении https://tjournal.ru/69092-nastroyka-sobstvennogo-vpn-servera-v-dva-klika
Last active
April 18, 2021 05:17
-
-
Save phpdude/ee8217d42d22fd83cc4243f618c93acf to your computer and use it in GitHub Desktop.
Настройка собственного VPN сервера в два клика
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
docker container inspect ikev2-vpn-server > /dev/null 2>&1 || docker run -d --name ikev2-vpn-server --restart=always --privileged -p 500:500/udp -p 4500:4500/udp gaomd/ikev2-vpn-server | |
URL=$(docker run -i -t --rm --volumes-from ikev2-vpn-server -e "HOST=`wget -qO- http://ipecho.net/plain`" gaomd/ikev2-vpn-server generate-mobileconfig | curl -s -X PUT --upload-file "-" https://transfer.sh/ikev2-vpn.mobileconfig) | |
echo | |
echo | |
echo "Everything is done! Please download IKEv2 VPN settings file" | |
echo | |
echo $URL | |
echo | |
echo |
Также, все работает ок на iphone/ipad, только как установить файл на win10 ? (гуглил не нашел, есть только разный старый софт)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Все круто. А как же быть Android юзерам? Где взять настройки? На mac и iPhone работает просто отлично!