全部
我有一个 Cisco 877 路由器和一个运行 OpenBSD 5.9 的 Linode VPS,其间运行着 GRE 隧道,效果很好,我可以从任意一侧 ping 通。我已经在 Cisco 路由器中设置了一条静态路由,将流量路由到 WhatsMyIP.org(这样我就可以查看它是否正常工作),但是,尽我所能,我无法让 OpenBSD 的 PF 将 NAT 应用于来自 GRE 隧道的流量。配置解析、流量路由,但我没有生成任何状态。
我想要实现的目标有可能吗?我的拓扑/etc.pf.conf
如下。 (注:根据 Bink 的回答进行更新)
# $OpenBSD: pf.conf,v 1.54 2014/08/23 05:49:42 deraadt Exp $
#
# See pf.conf(5) and /etc/examples/pf.conf
set skip on lo
block return # block stateless traffic
ext_if = "em0"
int_if = "gre0"
int_net = "192.168.2.0/24"
pass out on $ext_if from $int_net to any nat-to ($ext_if)
pass # establish keep-state
# By default, do not permit remote connections to X11
block return in on ! lo0 proto tcp to port 6000:6010
pass quick on gre proto gre no state
ifconfig 输出(IP 已编辑):
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 32768
priority: 0
groups: lo
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x3
inet 127.0.0.1 netmask 0xff000000
em0: flags=18843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,MPSAFE> mtu 1500
lladdr f2:3c:91:0a:5b:a9
priority: 0
groups: egress
media: Ethernet autoselect (1000baseT full-duplex)
status: active
inet E.F.G.H netmask 0xffffff00 broadcast E.F.G.255
enc0: flags=0<>
priority: 0
groups: enc
status: active
pflog0: flags=141<UP,RUNNING,PROMISC> mtu 33144
priority: 0
groups: pflog
gre0: flags=9011<UP,POINTOPOINT,LINK0,MULTICAST> mtu 1476
priority: 0
groups: gre
tunnel: inet A.B.C.D -> E.F.G.H
inet 172.16.56.1 --> 172.16.56.2 netmask 0xffffff00
答案1
我不清楚为什么你的路由器上需要静态路由,但是无论如何,你的 pf.conf 中没有与 NAT 相关的规则。在 pf.conf 中的宏之后尝试如下操作:
match out on egress from ! ( egress ) nat-to ( egress )
或者:
match out on $int_if from ! ( $int_if ) nat-to ( $int_if )
如果这些不起作用,请发布 ifconfig 的输出。
答案2
看起来:
pass out on $ext_if from $int_net to any nat-to $ext_if
...不起作用,它必须是这样的:
match out on $ext_if from $int_net to any nat-to $ext_if
pass on $ext_if from $int_net to any
此外,它有助于确保 net.inet.ip.forwarding 设置为 1。