From: Florian Westphal <fw@strlen.de>
To: Cyrus <cyrusrereza@gmail.com>
Cc: netfilter@vger.kernel.org
Subject: Re: Is there a way to extend the timeout of elements in an nftables set?
Date: Sat, 11 Oct 2025 16:11:26 +0200 [thread overview]
Message-ID: <aOpljpaGwHZMH-2J@strlen.de> (raw)
In-Reply-To: <CAEcyiz83o-NK263Efj5xfGPuVMUqur7TT-RofZ-WkJirMzB9oA@mail.gmail.com>
Cyrus <cyrusrereza@gmail.com> 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 }
}
}
next prev parent reply other threads:[~2025-10-11 14:11 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-11 10:09 Is there a way to extend the timeout of elements in an nftables set? Cyrus
2025-10-11 14:11 ` Florian Westphal [this message]
[not found] ` <CAEcyiz9P17KroeRMVFXrwggAF2Yzy7_uadJoQ6yZBa=07LwiXQ@mail.gmail.com>
2025-10-11 17:26 ` Cyrus
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=aOpljpaGwHZMH-2J@strlen.de \
--to=fw@strlen.de \
--cc=cyrusrereza@gmail.com \
--cc=netfilter@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.