summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2020-01-14 15:14:43 -0700
committerKenny Ballou <kballou@devnulllabs.io>2020-01-14 15:14:43 -0700
commit4d809ac0cff8940e9d69175946639a36d9e3f0f2 (patch)
tree9289511979bb88e34b209874819e853992582ce9
parent610e4e0c2c80a6a47f2790d8b6d2a64709885347 (diff)
downloadcfg.nix-4d809ac0cff8940e9d69175946639a36d9e3f0f2.tar.gz
cfg.nix-4d809ac0cff8940e9d69175946639a36d9e3f0f2.tar.xz
orobas: nft: update ethernet device name
again... Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
-rw-r--r--orobas/nftables-rules.nft4
1 files changed, 2 insertions, 2 deletions
diff --git a/orobas/nftables-rules.nft b/orobas/nftables-rules.nft
index a53689e..7965f87 100644
--- a/orobas/nftables-rules.nft
+++ b/orobas/nftables-rules.nft
@@ -65,7 +65,7 @@ table ip nat {
}
chain postrouting {
type nat hook postrouting priority 100;
- ip saddr 172.16.0.0/12 oifname ens8u2u3 counter masquerade
+ ip saddr 172.16.0.0/12 oifname ens8u2u1 counter masquerade
ip saddr 172.16.0.0/12 oifname wlp2s0 counter masquerade
counter
}
@@ -78,7 +78,7 @@ table ip6 nat {
}
chain postrouting {
type nat hook postrouting priority 100;
- ip6 saddr fcdd::/48 oifname ens8u2u3 counter masquerade
+ ip6 saddr fcdd::/48 oifname ens8u2u1 counter masquerade
ip6 saddr fcdd::/48 oifname wlp2s0 counter masquerade
counter
}