我正在尝试在运行的 Linux 路由器openswan
(shorewall
主机A,服务子网 10.10.0.0/16)和运行的 MikroTek RouterBoard RouterOS 6.3
(主机B,服务 192.168.88.0/24)之间创建站点到站点 VPN。
IPSEC 隧道本身似乎已启动,主机A说:
# service ipsec status
IPsec running - pluto pid: 4292
pluto pid 4292
1 tunnels up
some eroutes exist
和:
#ipsec auto --status
<SNIP>
000 #2: "office-connect":500 STATE_QUICK_I2 (sent QI2, IPsec SA established); EVENT_SA_REPLACE in 27422s; newest IPSEC; eroute owner; isakmp#1; idle; import:admin initiate
000 #2: "office-connect" esp.65bcd1d@<REDACTED> esp.c8d18ebd@<REDACTED> tun.0@<REDACTED> tun.0@<REDACTED> ref=0 refhim=4294901761
000 #1: "office-connect":500 STATE_MAIN_I4 (ISAKMP SA established); EVENT_SA_REPLACE in 2348s; newest ISAKMP; lastdpd=72s(seq in:0 out:0); idle; import:admin initiate
在主机B上:
/ip ipsec remote-peers print
0 local-address=<REDACTED> remote-address=<REDACTED> state=established side=responder established=11m26s
和:
/ip ipsec policy print
Flags: T - template, X - disabled, D - dynamic, I - inactive
0 src-address=192.168.88.0/24 src-port=any dst-address=10.10.0.0/16 dst-port=any protocol=all action=encrypt level=require ipsec-protocols=esp tunnel=yes
sa-src-address=<REDACTED> sa-dst-address=<REDACTED> proposal=Office-Connect priority=0
我按照http://www.shorewall.net/IPSEC-2.6.html上的说明进行配置shorewall
,并按照http://wiki.mikrotik.com/wiki/Manual:IP/IPsec设置 NAT 绕过规则。
但是,我实际上无法在A上通过隧道获取任何数据包:
# ping -c4 192.168.88.1
PING 192.168.88.1 (192.168.88.1) 56(84) bytes of data.
--- 192.168.88.1 ping statistics ---
4 packets transmitted, 0 received, 100% packet loss, time 3016ms
在B上:
/ping count=4 10.10.0.1
HOST SIZE TTL TIME STATUS
10.10.0.1 timeout
10.10.0.1 timeout
10.10.0.1 timeout
10.10.0.1 timeout
sent=4 received=0 packet-loss=100%
我有点茫然如何进行,我在网络方面的经验不是太好。所以我会对任何提示有所帮助,甚至只是如何调试这个问题。如果需要,我很乐意提供额外的配置示例或日志输出。非常感谢!
如果其他人有同样的问题,这就是解决方案......问题是我在
shorewall
盒子上有另一个 VPN 设置,这是一个 L2TP 公路战士设置,称为vpn
(站点到站点 VPN 被命名ovpn
)所以我的/etc/shorewall/zones
文件看起来像这个:我
/etc/shorewall/hosts
喜欢这样:事实证明,zone 文件中的 zone 声明顺序很重要(但不在 hosts 文件中)——因为每个连接都会
shorewall
选择第一个匹配的 zone。由于vpn
zone 有一个 hosts 条目匹配每个远程主机,因此所有ovpn
连接都将由vpn
zone 匹配,然后路由到xl2tpd
,这当然不起作用。所以我颠倒了 and 的区域条目
vpn
,ovpn
一切正常。