search for: srcnat

Displaying 2 results from an estimated 2 matches for "srcnat".

Did you mean: arcnet
2024 Aug 14
2
[Bug 1764] New: mapping IPv4 interval to IPv4 interval works for anonymous maps, but not for named maps
...nftables git status HEAD detached at 80258b03 nothing to commit, working tree clean nft --version nftables v1.1.0 (Commodore Bullmoose) ******************************** Anonymous map example: ******************************** nft add table t nft add chain t c { type nat hook postrouting priority srcnat\; } nft add rule t c snat ip to ip saddr map { 192.0.2.0/24 : 198.51.100.0/24 } persistent nft list ruleset table ip t { chain c { type nat hook postrouting priority srcnat; policy accept; snat ip to ip saddr map { 192.0.2.0/24 : 198.51.100.0/24 } persistent...
2024 Aug 26
12
[Bug 1766] New: nfqueue randomly drops packets with same tuple
...erver D2 (10.244.2.4) One rule to send the packets to nfqueue in postrouting, but it happened in other hooks before. We can assume the set matches the packet and the nfqueue userspace always accept the packet > chain postrouting { > type filter hook postrouting priority srcnat - 5; policy accept; > icmpv6 type { nd-neighbor-solicit, nd-neighbor-advert } accept > meta skuid 0 accept > ct state established,related accept > ip saddr @podips-v4 queue flags bypass to 100 comment "process IPv4 traffic...