Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a0f37efa authored by David Ahern's avatar David Ahern Committed by David S. Miller
Browse files

net: vrf: Fix NAT within a VRF



Connection tracking with VRF is broken because the pass through the VRF
device drops the connection tracking info. Removing the call to nf_reset
allows DNAT and MASQUERADE to work across interfaces within a VRF.

Fixes: 73e20b76 ("net: vrf: Add support for PREROUTING rules on vrf device")
Signed-off-by: default avatarDavid Ahern <dsa@cumulusnetworks.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8a9f5fdf
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -849,8 +849,6 @@ static struct sk_buff *vrf_rcv_nfhook(u8 pf, unsigned int hook,
{
	struct net *net = dev_net(dev);

	nf_reset(skb);

	if (NF_HOOK(pf, hook, net, NULL, skb, dev, NULL, vrf_rcv_finish) < 0)
		skb = NULL;    /* kfree_skb(skb) handled by nf code */