All of lore.kernel.org
 help / color / mirror / Atom feed
* nft error Could not process rule: No buffer space available
@ 2025-08-24  8:18 lilydjwg
  2025-08-25 10:16 ` Pablo Neira Ayuso
  0 siblings, 1 reply; 7+ messages in thread
From: lilydjwg @ 2025-08-24  8:18 UTC (permalink / raw)
  To: netfilter

I'm switching from iptables+ipset to nftables, and as part of it, I need to
import a set containing ~2400 IPv6 networks. The file looks like this:

define elems = {
  2001:123::/31,
  ...
}

table ip6 mytable {
  set myset {
    type ipv6_addr
    flags dynamic,interval
    elements = $elems
  }
  chain output {
    type route hook output priority -150;
    ... ip6 daddr @myset reject
  }
}

And then "nft -f myfile.nft" fails with

netlink: Error: Could not process rule: No buffer space available

-- 
Best regards,
lilydjwg

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

end of thread, other threads:[~2025-08-25 11:39 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-24  8:18 nft error Could not process rule: No buffer space available lilydjwg
2025-08-25 10:16 ` Pablo Neira Ayuso
2025-08-25 10:46   ` lilydjwg
2025-08-25 10:47     ` Pablo Neira Ayuso
2025-08-25 10:57       ` lilydjwg
2025-08-25 11:11         ` Pablo Neira Ayuso
2025-08-25 11:39           ` lilydjwg

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.