![]() |
|
help setting up a vpn server on a vps - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Computers (https://sinister.ly/Forum-Computers) +--- Forum: Networking (https://sinister.ly/Forum-Networking) +--- Thread: help setting up a vpn server on a vps (/Thread-help-setting-up-a-vpn-server-on-a-vps) |
help setting up a vpn server on a vps - OldWolf - 01-25-2014 Is anyone able to do this? I have followed many online tuitorials but cant get any setups working. Have installed pptpd and setup the /etc/ppp.config as well as the /etc/ppp/chap-options and /etc/ppp/chap-secrets but mainly they fail upon checking the username and password. Once i managed to login and connect but had no internet access :S Thnx OW
RE: help setting up a vpn server on a vps - OldWolf - 01-07-2015 In case anyone was interested, i found this script useful for setting up a quick vpn server. https://github.com/viljoviitanen/setup-simple-pptp-vpn i added Code: echo vpninfo vpn:$PASS>vpninfo.txtRE: help setting up a vpn server on a vps - blackhatcat - 01-07-2015 Just like the GitHub README says, PPTP has been known as a broken protocol for years and if you care at all about your security you should take the time to set up an OpenVPN server. RE: help setting up a vpn server on a vps - Infinity - 01-13-2015 Interesting, I normally just use a SSH tunnel, but this is helpful if you want to use openVPN, or similar. RE: help setting up a vpn server on a vps - Eclipse - 01-13-2015 (01-07-2015, 08:54 PM)blackhatcat Wrote: Just like the GitHub README says, PPTP has been known as a broken protocol for years and if you care at all about your security you should take the time to set up an OpenVPN server. This. (01-13-2015, 08:49 AM)Infinity Wrote: Interesting, I normally just use a SSH tunnel, but this is helpful if you want to use openVPN, or similar. They both have their advantages. However, an SSH tunnel relies on your applications supporting SOCKS 5. A VPN has no such limitation. RE: help setting up a vpn server on a vps - phyrrus9 - 01-13-2015 (01-07-2015, 08:54 PM)blackhatcat Wrote: Just like the GitHub README says, PPTP has been known as a broken protocol for years and if you care at all about your security you should take the time to set up an OpenVPN server. openvpn is by far the WORST vpn server I have ever seen. Just because a protocol is referred to as broken does not make it insecure. Anything when used properly can be secure. RE: help setting up a vpn server on a vps - blackhatcat - 01-13-2015 (01-13-2015, 07:22 PM)phyrrus9 Wrote: openvpn is by far the WORST vpn server I have ever seen. Just because a protocol is referred to as broken does not make it insecure. Anything when used properly can be secure. PPTP is thoroughly broken. MS-CHAPv1 was owned 15 years ago, its replacement MS-CHAPv2 was known to be just as weak and was eventually owned, not too long ago actually. At this point nobody who cares in the least about the communications they intend to protect should be using it. And it's not a matter of choosing someone's implementation over another; its most serious flaws are in the protocol design and cannot be fixed. |