http://dev.firnow.com/course/6_system/linux/Linuxjs/20100524/204369.html
734错误
把加密配置注释掉就可以连接了
#require-mschap-v2 // 如果使用这两个选项,还需要安装对应的模块
#require-mppe-128
这2行注释掉就行了。
require-mschap-v2 在端点进行连接时需要使用微软的 mschap-v2 进行自身验证
require-mppe-128 MPPE 模块使用 128 位加密
(不太会用这两条,不过去掉后的确是好了!!)
iptables -A forwarding_rule -s 10.10.52.1/24 -d 10.10.52.1/24 -j ACCEPT
iptables -A output_rule -o ppp+ -s 172.17.0.1 -d 172.17.0.0/24 -j ACCEPT
iptables -A input_rule -i ppp+ -s 172.17.0.0/24 -d 172.17.0.1 -j ACCEPT
iptables -A forwarding_rule -i ppp+ -o eth1.1 -s 172.17.0.0/24
可以通过外网连上路由器的PPTPD服务器,然而不能通过它上网,不知道是什么原因。
pptpd 限速
http://www.phpfans.net/ask/fansa1/3783988741.html
http://bbs.chinaunix.net/thread-1505078-1-1.html
http://www.chinaunix.net/jh/50/1505078.html
http://blog.sina.com.cn/s/blog_573059f101009frg.html
http://forum.ubuntu.org.cn/viewtopic.php?t=277884
http://openwrt.org.cn/bbs/viewthread.php?tid=1480&highlight=pptp // ok
http://openwrt.org.cn/bbs/viewthread.php?tid=2165&highlight=pptp
http://openwrt.org.cn/bbs/viewthread.php?tid=3406&highlight=pptp
参考资料
http://oldwiki.openwrt.org/PPTPDHowto.html
https://forum.openwrt.org/viewtopic.php?id=23100
http://passtest.net/2010/11/amazon-aws-ec2--vps-2/ 在amazon上搭建pptp服务器
http://answers.microsoft.com/en-us/windows/forum/windows_7-networking/windows-7-pro-pptp--error-807-and-will-not/6cb8e5a3-a107-4164-bc2b-131a5fc12ba6 windows官方论坛, pptp 807错误
http://www.securityforce.cn/?p=469 这个博客挺有水准的:)