共计 963 个字符,预计需要花费 3 分钟才能阅读完成。
安装 pptpd 后,启动服务时无法启动
service pptpd start
若已经配置 chkconfig pptpd on 则开机时停止在 Starting pptpd: 运行不下去。
tail -f /var/log/message
可以看到
pptpd[6974]: Long config file line ignored.
一开始我以为是配置文件太大了,其实不是,只要以空行结尾就可以了,具体原因可以看 configfile.c 源码
- /* ignore long lines */
- if (buffer[(len = strlen(buffer)) – 1] != ‘\n’) {
- syslog(LOG_ERR, “Long config file line ignored.”);
- do
- fgets(buffer, MAX_CONFIG_STRING_SIZE – 1, in);
- while (buffer[strlen(buffer) – 1] != ‘\n’);
- continue;
- }
结论:/etc/pptpd.conf 要以空行结尾。
资源:http://poptop.sourceforge.net/dox/
CentOS 6.2 单网卡安装 PPTPd 经验 http://www.linuxidc.com/Linux/2013-05/84834.htm
配置 Linux PPTP VPN 公网 VPN http://www.linuxidc.com/Linux/2012-09/70808.htm
基于 CentOS5 的 Linux 下 PPTP 和 OpenVPN 的搭建及配置 http://www.linuxidc.com/Linux/2012-06/61944.htm
CentOS 下单网卡使用 PPTP 搭建 VPN http://www.linuxidc.com/Linux/2012-06/61923.htm
RHEL5.4 VPN 服务的配置之 PPTPD http://www.linuxidc.com/Linux/2012-01/51849.htm
Ubuntu VPS 上的 PPTPd 设置 NAT 转发的问题 http://www.linuxidc.com/Linux/2011-01/31746.htm
Linux VPN(PPTPD)+Windows AD 统一认证 http://www.linuxidc.com/Linux/2014-03/97779.htm