0

I've followed the tutorial on this site: http://forums.bit-tech.net/showthread.php?t=132029

I have a DD-WRT router with Micro-FW that does not have a built-in VPN server. I have port forwarded the port 1723 TCP to my Ubuntu box. My DD-WRT router's DHCP ranges from 192.168.1.100 - 199.

The problem is that I can connect to my VPN server and access all the network shares and computers but I cannot access the internet. I am not too sure why this is happening. Please let me know if you want to see any of the files.

I have set the /etc/pptpd.conf:

localip 192.168.1.102
remoteip 192.168.1.190-198

Do I need to manage my DHCP on my Ubuntu box as well or is that okay? I am a beginner, any help is appreciated!

david6
  • 14,528
  • 5
  • 38
  • 46

1 Answers1

2

Edit the options file with sudo nano /etc/ppp/pptpd-options

uncomment the line that reads #ms-dns 10.0.0.1 by removing the #

Replace the address with whatever DNS server you wish to use Save and exit

Restart the pptp service with sudo /etc/init.d/pptpd restart

Ravan
  • 9,567