0

I have setup pptp on my vps using this tutorial https://help.ubuntu.com/community/PPTPServer

No issues there. I can connect via mobile device successfully with the username and password I configured but there's no internet on the phone. Skype/Websites/Whatsapp nothing

I tried the suggestions here too pptpd VPN: No internet access after connecting

I checked many answers but I'm seriously stuck. Any ideas? No idea how to troubleshoot either

Onimusha
  • 111

1 Answers1

1

Solved using Create VPN server using the Ubuntu VPS

This is the only line I needed in rc.local

iptables -t nat -A POSTROUTING -s 192.168.0.0/24 ! -d 192.168.0.0/24 -j SNAT --to-source XXX.XXX.XXX.XXX where XXX.XXX.XXX.XXX = the public IP of the VPS

Onimusha
  • 111