我已通过预共享密钥为L2TP虚拟专用网连接配置了Windows Server 2016。服务器的LAN端地址为192.10.0.100。我可以从LAN端访问VPN。 在本地网络之外,我收到一条错误消息,提示“远程服务器没有响应”,并提到可能存在NAT或防火墙问题。 以下是我为VPN制定的规则: NAT add action=dst-nat chain=dstnat comment="NAT Rule for L2TP General Port 500" \
dst-address="Mikrotik public IP Address"
我的ISP使用L2TP将用户连接到互联网。我在Windows上有一个工作连接,现在我试图将它克隆到一个Ubuntu上。当然,我得到间歇性的“服务启动失败”和“服务意外停止”错误,就像其他人一样。
第一个跳过的似乎是L2TP主机名解析。在Windows上,我用域名形式写了它;我想它是通过DHCP解决的。在Ubuntu名称解析上失败:
Started the VPN service, PID 7461
Saw the service appear; activating connection
VPN connection: (ConnectInteractive) reply received
V
我有一台雪豹服务器,配置用于通过ipsec访问l2tp,它已经正常工作了好几个月,现在它已经停止工作了,我似乎找不到问题所在。
我在客户端得到这个错误。
the ppp server could not be authenticated
服务器上的日志如下所示
<password hash>, name = "alex"]
Tue Aug 17 15:38:17 2010 : sent [CHAP Success id=0x56 "S=hash M=Access granted"]
Tue Aug 17 15:38:17 2010 : rcvd [C
我让这个Windows运行在AWS上,运行一个带有RRAS和NPS的VPN。初始设置只包括SSTP,用户可以轻松地从家中的Windows计算机连接并使用服务器上的共享文件夹。
后来,我们决定使用L2TP将office连接到服务器,使用TP-Link it 6020路由器,这非常容易实现:在路由器上,我扩展了"L2TP",单击了"L2TP“,然后在”L2TP client“选项卡上添加了连接(对于”工作模式“,我选择了”路由“),然后注意到IPsec设置已经自动设置。office上的计算机现在可以访问服务器上的共享文件夹,我甚至将办公计算机添加到运行在远程服务器上的域中。
xl2tpd -D回波:
xl2tpd[7681]: Enabling IPsec SAref processing for L2TP transport mode SAs
xl2tpd[7681]: IPsec SAref does not work with L2TP kernel mode yet, enabling forceuserspace=yes
xl2tpd[7681]: init_network: Unable to bind socket: Address already in use. Terminating.
我接下来该怎么办?我想在我的vps上建立一个vpn服务器。
我试图在2台服务器( CentOS 7和Ubuntu 16 )之间设置CentOS隧道
On CentOS 7 end I有以下内容:
ip l2tp add tunnel tunnel_id 6000 peer_tunnel_id 5000 encap udp local LOCAL_IP remote REMOTE_IP udp_sport 5002 udp_dport 6002
ip l2tp add session tunnel_id 6000 session_id 1000 peer_session_id 2000
ip link set l2tpeth0 up mtu 1488
i