similar to: [Bug 1462] New: `nft -j list set` does not show counters

Displaying 20 results from an estimated 300 matches similar to: "[Bug 1462] New: `nft -j list set` does not show counters"

2017 Aug 22
2
[Bug 1174] New: 'define' functionality not sufficient for maintaining sets and the like
https://bugzilla.netfilter.org/show_bug.cgi?id=1174 Bug ID: 1174 Summary: 'define' functionality not sufficient for maintaining sets and the like Product: nftables Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5
2017 Mar 20
1
[Bug 1134] New: snat and dnat should accept mapping concatenated values for address and port
https://bugzilla.netfilter.org/show_bug.cgi?id=1134 Bug ID: 1134 Summary: snat and dnat should accept mapping concatenated values for address and port Product: nftables Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5
2019 May 06
2
[Bug 1336] New: "nft reset counters" does not respect -j option for JSON output
https://bugzilla.netfilter.org/show_bug.cgi?id=1336 Bug ID: 1336 Summary: "nft reset counters" does not respect -j option for JSON output Product: nftables Version: unspecified Hardware: x86_64 OS: All Status: NEW Severity: enhancement Priority: P5
2018 Oct 16
7
[Bug 1282] New: SIGSEGV on loading tables
https://bugzilla.netfilter.org/show_bug.cgi?id=1282 Bug ID: 1282 Summary: SIGSEGV on loading tables Product: nftables Version: unspecified Hardware: x86_64 OS: Ubuntu Status: NEW Severity: normal Priority: P5 Component: nft Assignee: pablo at netfilter.org Reporter:
2018 Apr 29
2
[Bug 1252] New: comment doesn't work with ranges in sets
https://bugzilla.netfilter.org/show_bug.cgi?id=1252 Bug ID: 1252 Summary: comment doesn't work with ranges in sets Product: nftables Version: unspecified Hardware: x86_64 OS: Gentoo Status: NEW Severity: normal Priority: P5 Component: nft Assignee: pablo at netfilter.org
2020 Apr 28
2
[Bug 1425] New: th not accepted in snat with multiple ip protocols
https://bugzilla.netfilter.org/show_bug.cgi?id=1425 Bug ID: 1425 Summary: th not accepted in snat with multiple ip protocols Product: nftables Version: unspecified Hardware: x86_64 OS: All Status: NEW Severity: normal Priority: P5 Component: nft Assignee: pablo at
2018 Jun 27
3
[Bug 1265] New: Creating named sets concatenating ifname and anything else does not work
https://bugzilla.netfilter.org/show_bug.cgi?id=1265 Bug ID: 1265 Summary: Creating named sets concatenating ifname and anything else does not work Product: nftables Version: unspecified Hardware: All OS: All Status: NEW Severity: normal Priority: P5 Component: nft
2014 Feb 05
3
[Bug 896] New: You can not add the follow kinds of sets: mark, integer, string, lladdr
https://bugzilla.netfilter.org/show_bug.cgi?id=896 Summary: You can not add the follow kinds of sets: mark, integer, string, lladdr Product: nftables Version: unspecified Platform: x86_64 OS/Version: Debian GNU/Linux Status: NEW Severity: enhancement Priority: P5 Component: nft
2020 Apr 01
0
[ANNOUNCE] nftables 0.9.4 release
Hi! The Netfilter project proudly presents: nftables 0.9.4 This release contains fixes and new features available up to the Linux kernel 5.6 release. * Support for ranges in concatenations (requires Linux kernel >= 5.6), e.g. table ip foo { set whitelist { type ipv4_addr . ipv4_addr . inet_service flags interval
2009 Dec 10
0
Is there a variant of findInterval() such that v[i[j]] < x[j] <= v[i[j] + 1]?
In findInterval's help page, it says 'v[i[j]] <= x[j] < v[i[j] + 1]'. I'm wondering if there is a variant of it such that 'v[i[j]] < x[j] <= v[i[j] + 1]'.
2017 Mar 17
0
[Bug 1132] New: Maps and Dictionaries need catch-all ('default:' 'else') case for when no entry matches.
https://bugzilla.netfilter.org/show_bug.cgi?id=1132 Bug ID: 1132 Summary: Maps and Dictionaries need catch-all ('default:' 'else') case for when no entry matches. Product: nftables Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement
2017 Mar 23
0
[Bug 1137] New: Element "flow tables" should not be syntactically unique...
https://bugzilla.netfilter.org/show_bug.cgi?id=1137 Bug ID: 1137 Summary: Element "flow tables" should not be syntactically unique... Product: nftables Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 Component:
2017 Nov 06
2
[Bug 1200] New: anonymous sets containing port numbers
https://bugzilla.netfilter.org/show_bug.cgi?id=1200 Bug ID: 1200 Summary: anonymous sets containing port numbers Product: nftables Version: unspecified Hardware: x86_64 OS: Gentoo Status: NEW Severity: normal Priority: P5 Component: nft Assignee: pablo at netfilter.org
2020 Aug 27
0
[Bug 1455] New: Queue verdict cannot be used in vmap
https://bugzilla.netfilter.org/show_bug.cgi?id=1455 Bug ID: 1455 Summary: Queue verdict cannot be used in vmap Product: nftables Version: unspecified Hardware: arm OS: Ubuntu Status: NEW Severity: normal Priority: P5 Component: nft Assignee: pablo at netfilter.org
2016 Dec 20
0
[ANNOUNCE] nftables 0.7 release
Hi! The Netfilter project proudly presents: nftables 0.7 This release contains many accumulated bug fixes and new features available up to the (upcoming) Linux 4.10-rc1 kernel release. * Facilitate migration from iptables to nftables: At compilation time, you have to pass this option. # ./configure --with-xtables And libxtables needs to be installed in your system. This allows
2017 Oct 17
3
[Bug 1190] New: adding element to map with stateful object and flag interval raise SIGSEGV
https://bugzilla.netfilter.org/show_bug.cgi?id=1190 Bug ID: 1190 Summary: adding element to map with stateful object and flag interval raise SIGSEGV Product: nftables Version: unspecified Hardware: x86_64 OS: All Status: NEW Severity: normal Priority: P5 Component:
2009 Jul 30
2
z[i,j] = x[i,j] * y(i+j) ?
For the life of me I couldn't work out what to searc I have an m*n numeric matrix x and a numeric vector y (of length m+n-1) How do I do a calculation like this? z[i,j] = x[i,j] * y[i+j] ? Well, one can write a pair of loops, or write a single loop within which we calculate a vector at a time, but ... is there a "neat" way to do it? tiny example:
2018 Dec 23
4
[Bug 1312] New: Interval should accept same start and end values as single value instead of throwing error
https://bugzilla.netfilter.org/show_bug.cgi?id=1312 Bug ID: 1312 Summary: Interval should accept same start and end values as single value instead of throwing error Product: nftables Version: unspecified Hardware: x86_64 OS: All Status: NEW Severity: enhancement Priority: P5
2019 Oct 07
4
[Bug 1368] New: The "meta's"
https://bugzilla.netfilter.org/show_bug.cgi?id=1368 Bug ID: 1368 Summary: The "meta's" Product: nftables Version: unspecified Hardware: x86_64 OS: All Status: NEW Severity: enhancement Priority: P5 Component: nft Assignee: pablo at netfilter.org
2003 Oct 04
0
chattr +j ==> Oops
[sent this to ext2-devel but haven't seen any other traffic there, so cc-ing it here] [Last week] while configuring a new box I came across a site suggesting: chattr -R -S +j +A /var/spool/postifx to improve postfix's speed on ext3, in lieu of mounting a separate fs there w/ data=journal. So I tried it. Both on the new box (2.4.21-7um) and on my laptop (about three csets shy of the