如何用ipsec解密DNAT数据包。加密包是: sourceIP: 192.168.4.6 destIP 10.10.0.100:
如果我只是:
iptables -t nat -A PREROUTING d 10.10.0.100 -j DNAT --to-destination 10.0.0.5它不起作用-似乎预录制是在加密的流量上做nat -如何强迫它在解密后工作?
发布于 2014-10-20 11:12:31
只告诉您的规则匹配已通过ipsec解密和验证步骤的通信量:
iptables -t nat -A PREROUTING -d 10.10.0.100 -m policy --pol ipsec --dir in -j DNAT --to-destination 10.0.0.5https://serverfault.com/questions/638272
复制相似问题