agarret 0 Posted ... Hi, I've been using AirVPN for almost a year now and I am very pleased, thanks AirVPN. I need the SSL tunnel to be able to connect, which always meant manually starting stunnel and openvpn from console. (I know about Eddie, but no thanks, thats not my style .But today I figured out how to automaticly connect using a systemd service for stunnel and a slight route adjustment. Disclaimer: i am no network expert and might be doing something horribly wrong, but this works for me and seems legit. If you want to follow this guide, you should be familiar with these excellent guides: https://airvpn.org/ssl/ and https://airvpn.org/topic/11432-using-airvpn-with-ubuntu-network-manager/ 1. stunnel service2. Add route to your network device3. Import VPN 1.) Go to https://airvpn.org/generator/, select SSL, you know, the usual stuffPlace the .ssl file and the certificate (.crt) somewhere (lets say /airvpn/airvpn.ssl and /airvpn/airvpn.crt) Create a file /etc/systemd/system/airvpn_stunnel.service [unit] Description=Stunnel[service]ExecStart=/bin/stunnel /airvpn/airvpn.ssl[install]WantedBy=default.target Enable the service systemctl enable airvpn_stunnel 2. Add a route to your connection (e.g. your ethernet connection)When you add a vpn connection all* connections go through the vpn tunnel, but your ssl tunnel should not!This is why you should add a route, that explicitly states to connect to your vpn server normally.Get your server ip ( <IP> )Edit your connnection -> IPv4 -> Routes add a route with Address: <VPN Ip> Netmask: 255.255.255.255 Gateway: your 'normal' gateway, usually your router, something like 192.168.1.1 3. Import the .ovpn file (*chm chm* https://airvpn.org/topic/11432-using-airvpn-with-ubuntu-network-manager/) You should now be able to connect to your favorite VPN server through a ssl tunnel using networkmanager. Good luck - someonefromyourintranet Quote Share this post Link to post
LZ1 672 Posted ... Hello! Thank you for sharing your knowledge with us and making a contribution to the community! . Very nice of you.Be right back, I need to give Eddie a pat on the back and tell him you still love him and will remain friends Quote Hide LZ1's signature Hide all signatures Hi there, are you new to AirVPN? Many of your questions are already answered in this guide. You may also read the Eddie Android FAQ. Moderators do not speak on behalf of AirVPN. Only the Official Staff account does. Please also do not run Tor Exit Servers behind AirVPN, thank you. Did you make a guide or how-to for something? Then contact me to get it listed in my new user guide's Guides Section, so that the community can find it more easily. Share this post Link to post
zhang888 1066 Posted ... Just a small security notice:Stunnel is able to run custom executables using the "exec = EXECUTABLE_PATH"command, which can be placed in the .ssl config file. So when you create a random .ssl file, such as in your example in /airvpn/airvpn.ssl,make sure to set proper permissions on it for your current user, or the user you intendto run stunnel with.Otherwise, if the permissions are too open, a malicious program will be able to modifythe content of the .ssl file and launch itself under the context of the stunnel uid/gid. 2 LZ1 and RidersoftheStorm reacted to this Quote Hide zhang888's signature Hide all signatures Occasional moderator, sometimes BOFH. Opinions are my own, except when my wife disagrees. Share this post Link to post