How do I check to make sure that I have GRE configured in the kernel?
Well, I was able to get a hold of Jacco de Leeuw personally in the Netherlands about the L2TP/IPsec problems. After explaining everything that I was trying to accomplish, he told me that IPsec was probably overkill for what I was doing. He gave me a ton of good information, so I'm trying to impliment it today.
I'm back to doing PPTP/PPP. I finally got ipsec to shut down, still trying to figure out how to deactivate OpenVPN and now I get this message in my /var/log/messages:
pppd[25873]: pppd 2.4.3 started by hackman, uid 0
pptp[25874]: anon log[main

ptp.c:243]: The synchronous pptp option is NOT activated
pppd[25873]: Using interface ppp0
pppd[25873]: Connect: ppp0 <--> /dev/pts/65
pppd[25873]: LCP: timeout sending Config-Requests
pppd[25873]: Connection terminated.
And then after a few minutes this pops up also in the /var/log/messages ::
pptp[25876]: anon warn[open_inetsock

ptp_callmgr.c:311]: connect: Connection timed out
pptp[25876]: anon fatal[callmgr_main

ptp_callmgr.c:123]: Could not open control connection to 67.64.{ }.{}
pptp[25874]: anon fatal[open_callmgr

ptp.c:402]: Call manager exited with error 256
pppd[25873]: Exit.
After taking Jacco's suggestion and using the basic configuration found here:
ftp://ftp.samba.org/pub/unpacked/lor...nal-report.pdf
I was able to create the following /etc/ppp/pptpd.conf ::
option /etc/ppp/options.pptpd
localip 192.168.1.150
remoteip 192.168.1.200-254
And the new /etc/ppp/options.pptpd ::
## CHANGE TO SUIT YOUR SYSTEM
lock
## turn pppd syslog debugging on
debug
# The server will prove itself to us, but not the *normal* way
# so turn that off.
noauth
## change *pptpd* to whatever you specify as your server name in chap-secrets
name {name used in chap-secrets}
# Dont need this
nobsdcomp
# Bring VPN clients onto the local LAN
proxyarp
# These options are for use with the BSD-licensed patch (ppp => 2.4.2)
# This is the default implementation
refuse-pap
refuse-chap
refuse-MSCHAP
require-MSCHAP-v2
require-mppe
# These options will tell ppp to pass on these to your clients
# To use ms-dns or ms-dns in options.pptpd it must exist in /etc/resolv.conf
# ms-wins <ip-of-your-winsserver>
# ms-dns <ip-of-your-dnsserver>
# This tells the clients to use us as their default route
defaultroute
# Tell pppd to use Winbind for authentication
# (modify to suit your installation):
plugin winbind.so
ntlm_auth-helper /usr/bin/ntlm_auth --helper-protocol=ntlm-server-1
I cannot figure out what versions of pppd, pptpd, samba, winbind or etc I have.
{{ My mind is going... I can feel it. }}
What's the rpm command to check my versions?
I just want to be sure I didn't overlook something...
Also, what do I do to fire up the MPPE alias in modprobe that this PDF suggests??
Hopefully something will kick today... Besides my backside!