I've got pptpd running on an openwrt router that's in client mode, connected to another AP. The wired interface has a static IP address (192.168.1.242) and is connected to my main network, which is a typical network with cable modem internet access. When I ssh into the wireless router, I can ping using its wireless connection.
I can use a dynamic SSH tunnel/SOCKS proxy connected to the router to use its internet connection. I'd like to configure pptpd to behave the same way. It's not necessary to access any internal network resources anywhere, just the internet connection.
I can connect to the pptp server from a Windows XP machine, but there's no internet access.
/etc/ppp/options.pptpd:
auth
name "pptp-server"
lcp-echo-failure 3
lcp-echo-interval 60
default-asyncmap
mtu 1482
mru 1482
nobsdcomp
nodeflate
chapms-strip-domain
ms-dns 8.8.8.8
/etc/ppp/options:
#debug
logfile /dev/null
noaccomp
nopcomp
nocrtscts
lock
maxfail 0
lcp-echo-failure 5
lcp-echo-interval 1
I hope the question isn't too vague. Thanks.