All of lore.kernel.org
 help / color / mirror / Atom feed
* Document anonymous chain creation
@ 2025-06-04 10:29 Folsk Pratima
  2025-06-04 13:52 ` Phil Sutter
  0 siblings, 1 reply; 6+ messages in thread
From: Folsk Pratima @ 2025-06-04 10:29 UTC (permalink / raw)
  To: netfilter-devel

Access to the wiki is restricted, so I write here. On this page
https://wiki.nftables.org/wiki-nftables/index.php/Jumping_to_chain
and also in the nft(8), document the possibility of creating anonymous
chains when using `jump` and `goto` statements. The most basic example
is this

table inet doc {
    chain inbound {
        type filter hook input priority filter; policy accept
        counter jump {
            counter accept
        }
        counter goto {
            counter accept
        }
    }
}

The commit which implements the functionality is

c330152b7f7779f15dba3e0862bf5616e7cb3eab

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

end of thread, other threads:[~2025-06-04 17:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-04 10:29 Document anonymous chain creation Folsk Pratima
2025-06-04 13:52 ` Phil Sutter
2025-06-04 15:46   ` Folsk Pratima
2025-06-04 16:51     ` Phil Sutter
2025-06-04 17:32       ` Folsk Pratima
2025-06-04 17:57         ` Phil Sutter

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.