我的笔记本电脑上安装了 14.04 LTS(VMWare 映像),并建立了到家里的 VPN 连接。一切正常,但当我想在笔记本电脑上使用 ssh 时,VPN 连接立即断开。
如何让 ssh 通过 VPN 连接工作?
当 Windows 7 客户机连接到同一 VPN 服务器时,我没有遇到这个问题。
我在中看到这些错误syslog
:
May 26 08:30:51 ubuntu pptp[6284]: nm-pptp-service-6262 log[logecho:pptp_ctrl.c:677]: Echo Request received.
May 26 08:30:51 ubuntu pptp[6284]: nm-pptp-service-6262 log[ctrlp_rep:pptp_ctrl.c:251]: Sent control packet type is 6 'Echo-Reply'
May 26 08:30:51 ubuntu pptp[6284]: nm-pptp-service-6262 log[logecho:pptp_ctrl.c:677]: Echo Reply received.
May 26 08:31:30 ubuntu pptp[6272]: nm-pptp-service-6262 warn[decaps_gre:pptp_gre.c:331]: short read (-1): Message too long
May 26 08:31:30 ubuntu pptp[6284]: nm-pptp-service-6262 log[callmgr_main:pptp_callmgr.c:234]: Closing connection (unhandled)
May 26 08:31:30 ubuntu pptp[6284]: nm-pptp-service-6262 log[ctrlp_rep:pptp_ctrl.c:251]: Sent control packet type is 12 'Call-Clear-Request'
May 26 08:31:30 ubuntu pptp[6284]: nm-pptp-service-6262 log[call_callback:pptp_callmgr.c:79]: Closing connection (call state)
May 26 08:31:30 ubuntu pppd[6266]: Modem hangup
May 26 08:31:30 ubuntu pppd[6266]: Connect time 1.6 minutes.
May 26 08:31:30 ubuntu pppd[6266]: Sent 6871 bytes, received 6572 bytes.
May 26 08:31:30 ubuntu pppd[6266]: MPPE disabled
答案1
尝试使用此脚本建立 vpn 连接,而不是使用 NM。
也许这样一切都会好起来。
创建具有某个名称的文件并输入
nano name_of_script
脚本
#!/bin/bash
function routeadd {
route add -host xxx.xxx.xxx.xxx dev ppp0
route add -net xxx.xxx.xxx.xxx/xx dev ppp0
}
function makepptp {
echo pty \"pptp xxx.xxx.xxx.xxx --nolaunchpppd\" >> /etc/ppp/peers/vpn;
echo remotename PPTP >> /etc/ppp/peers/vpn;
echo require-mppe-128 >> /etc/ppp/peers/vpn;
echo file /etc/ppp/options.pptp >> /etc/ppp/peers/vpn;
echo ipparam vpn >> /etc/ppp/peers/vpn;
pppd call vpn &
}
if [ -a /etc/ppp/chap-secrets ];
then
rm /etc/ppp/chap-secrets
echo $1 PPTP $2 '*' >> /etc/ppp/chap-secrets;
else
echo $1 PPTP $2 '*' >> /etc/ppp/chap-secrets;
fi
if [ -e /etc/ppp/peers/vpn ];
then
rm /etc/ppp/peers/vpn;
echo name $1 >> /etc/ppp/peers/vpn;
makepptp;
sleep 8;
routeadd;
else
echo name $1 >> /etc/ppp/peers/vpn;
makepptp;
sleep 8;
routeadd;
fi
在脚本中更改主机 IP 并添加您希望通过 VPN 连接的网络或/和主机
用法:
sudo /path_to_script/name_of_script username password
注意:设置脚本的执行权限
答案2
我遇到了同样的问题,以下方法对我有用:
必须选择“使用点对点加密(MPPE)”
注意:首先需要选择一种或多种MSCHAP认证方法。
当然这也取决于您的 VPN 服务器设置。