All of lore.kernel.org
 help / color / mirror / Atom feed
* [nftables 0.9.2 | kernel 4.19.93] dropping ct state untracked stops ipv6 connectivity
@ 2020-03-18 12:05 ѽ҉ᶬḳ℠
  2020-03-18 12:07 ` Florian Westphal
  0 siblings, 1 reply; 4+ messages in thread
From: ѽ҉ᶬḳ℠ @ 2020-03-18 12:05 UTC (permalink / raw)
  To: netfilter@vger.kernel.org

This works (i.e. ipv4 and ipv6 connectivity)

table inet filter {
         chain input {
                 type filter hook input priority filter; policy drop;
                 ct state established,related accept
                 ct state invalid drop
         }

}

This cuts ipv6 connectivity entirely (ipv4 connectivity works)

table inet filter {
         chain input {
                 type filter hook input priority filter; policy drop;
                 ct state established,related accept
                 ct state invalid,untracked drop
         }

}


It reproduces on each toggle: ct state invalid,untracked drop <-> ct 
state invalid drop (ct db/cache needs to clear in between toggling).
Enabled logging but nothing been printed that would provide a hint.

Is this something to be expected, and if so why, or is it a bug in 
kernel / nft?



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-03-18 12:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-18 12:05 [nftables 0.9.2 | kernel 4.19.93] dropping ct state untracked stops ipv6 connectivity ѽ҉ᶬḳ℠
2020-03-18 12:07 ` Florian Westphal
2020-03-18 12:16   ` ѽ҉ᶬḳ℠
2020-03-18 12:28     ` Florian Westphal

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.