AM Productions
Setting up a VPN should be easy right?
NOTE: AM Productions is not responsible for damages of any kind that result from the use/misuse of the following instructions.
Setup a FreeBSD client to connect to a Windows PPTP VPN
FreeBSD 9.0-CURRENT 5.5 (From net/mpd5) mpd.conf)
After spending numerous hours trying to get my FreeBSD system to connect to a client's PPTP VPN server I managed to get it to work. It took an odd combination of various options but it's now working.
There were a few keys.
- Make the connection persistent
set iface disable on-demand - Do not advertise PAP
set link no pap - Do not advertise EAP
set link no eap - Disable chap
set link disable chap - Disable vjcomp (Which is enabled by default)
set ipcp no vjcomp - Enable no-orig-auth
set link enable no-orig-auth
Fire it up using mpd5 -f win-pptp-mpd.conf (Assuming you downloaded my config file).
