Displaying 1 result from an estimated 1 matches for "foochain".
Did you mean:
toochain
2018 Dec 31
2
[Bug 1315] New: Does not seem to be a way to use a named quota to make decisions in a rule
...l
Priority: P5
Component: nft
Assignee: pablo at netfilter.org
Reporter: dlakelan at street-artists.org
Suppose I want to use a named quota to make decisions about what to do with
packets:
table inet foo {
quota myquota {1000 mbytes used 0 bytes}
chain foochain{
meta mark 0x123 quota named myquota comment "count packets with a certain
mark"
meta mark 0x123 quota myquota over 1000 mbytes drop
}
}
The attempt to use the named quota doesn't work. I'm not sure if this is a
parser bug or a feature that doesn't work or what, bu...