First, my /etc/ppp/peers/cambervpn file:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pty "pptp vpn.camber.com --nolaunchpppd" | |
name dburger | |
remotename PPTP | |
file /etc/ppp/options.pptp | |
ipparam cambervpn |
next, my /etc/ppp/chap-secrets file:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Secrets for authentication using CHAP | |
# client server secret IP addresses | |
dburger PPTP yeahRight * |
next, my /etc/ppp/ip-up.d/cambervpn file:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
route add -net 172.16.100.0 netmask 255.255.255.0 dev ppp0 |
and finally, my /etc/ppp/ip-down.d/cambervpn file:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
route del -net 172.16.100.0 netmask 255.255.255.0 dev ppp0 |
To bring that up, you type "sudo pon cambervpn". After the upgrade, my syslog was telling me "Non-zero Async Control Character Maps are not supported!" and "LCP terminated by peer". Googling around led me believe this was a problem with MPPE. Sure enough, in looking at the file /etc/ppp/options.pptp I found that both MPPE options were commented out. Uncommenting the line "require-mppe-128" did the trick.
Hey, well if you read this far I guess you might be wondering what kind of command I issue to get fetchmail to forward mail over to my gmail account. The following command causes fetchmail to fetch the mail every 300 seconds:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fetchmail -d 300 --smtpname dburger@camberhawaii.org -p POP3 -u dburger 172.16.100.7 |
An entry in my .netrc file provides the password for the POP server.
No comments:
Post a Comment