This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

All traffic via StrongVPN/HideMyAss etc.???

Hi,

I am considering getting one of the public VPN services like HideMyAss or StrongVPN - can I use the site-to-site VPN functionality in Astaro and set this up so any internet bound traffic gets routed via the VPN service?

I believe, from initial reading, the SSL vpn wouldn't work for this because I wouldn't have the right type of config file to give my astaro, so I guess it's got to be IPSEC.

If people have done this, perhaps you could tell me which particular providers of VPN service this is tested and working with, and any setup pointers you can provide are obviously appreciated.


This thread was automatically locked due to age.
Parents
  • OK here is my first draft of the manual including sample config files and the .ovpn to .apc converter from Stefan Rubner. Since "Gitorius" is sunsetting soon, i included the script in the ZIP File.

    ZIP File includes a "howto-debian.txt" with all commands and what to do. You will need a Debian Installation (vserver for example) and Filezille/WinSCP to upload some config files.

    https://www.dropbox.com/s/2bnxf4h9pp4n5bz/Sophos-S2S-Debian.zip?dl=0

    you need iptables on the debian box to forward ports, here is an example to get access to webadmin through the OpenVPN Box:

    iptables -t nat -A PREROUTING -d 134.119.30.87 -p tcp --dport 4444 -j DNAT --to-dest 10.8.0.6:4444
    iptables -t nat -A POSTROUTING -d 10.8.0.6 -p tcp --dport 4444 -j SNAT --to-source 10.8.0.1
Reply
  • OK here is my first draft of the manual including sample config files and the .ovpn to .apc converter from Stefan Rubner. Since "Gitorius" is sunsetting soon, i included the script in the ZIP File.

    ZIP File includes a "howto-debian.txt" with all commands and what to do. You will need a Debian Installation (vserver for example) and Filezille/WinSCP to upload some config files.

    https://www.dropbox.com/s/2bnxf4h9pp4n5bz/Sophos-S2S-Debian.zip?dl=0

    you need iptables on the debian box to forward ports, here is an example to get access to webadmin through the OpenVPN Box:

    iptables -t nat -A PREROUTING -d 134.119.30.87 -p tcp --dport 4444 -j DNAT --to-dest 10.8.0.6:4444
    iptables -t nat -A POSTROUTING -d 10.8.0.6 -p tcp --dport 4444 -j SNAT --to-source 10.8.0.1
Children