Re: Is there a way to extend the timeout of elements in an nftables set?
Florian Westphal <[email protected]> Sat, 11 Oct 2025 16:11:26 +0200
| Newsgroups | gmane.comp.security.firewalls.netfilter.general |
|---|---|
| Message-ID | <[email protected]> |
Cyrus <[email protected]> wrote: > With ipsets, the timeout of an element in a set gets extended each > time you `ipset add` it. However, that doesn't happen with nftables > (v1.1.1) sets - when you `nft add` an element, the timeout is set > initially but never subsequently updated. Is there another way to do > this that I'm missing? You can re-add with a new *expires* value: $ nft add element t s { 1.2.3.4 timeout 2m } $ nft "get element t s { 1.2.3.4 }" table ip t { set s { type ipv4_addr timeout 1m elements = { 1.2.3.4 timeout 2m expires 1m53s544ms } } } nft "add element t s { 1.2.3.4 timeout 2m expires 2m }" $ nft "get element t s { 1.2.3.4 }" table ip t { set s { type ipv4_addr timeout 1m elements = { 1.2.3.4 timeout 2m expires 1m58s301ms } } }