Displaying 20 results from an estimated 10000 matches similar to: "[Bug 1040] Include statement search for files in /etc"
2018 Feb 02
0
[ANNOUNCE] nftables 0.8.2 release
Hi!
The Netfilter project proudly presents:
        nftables 0.8.2
This release fixes ./configure --with-xtables that enables interaction
between iptables-compat [1] and nft, and it also includes a bunch of
documentation updates.
This release introduces a new explicit option for interval sets, that
enables auto-merge of adjacent/overlapping elements when adding them to
the set, eg.
     table
2015 Sep 17
0
[ANNOUNCE] nftables 0.5 release
Hi!
The Netfilter project proudly presents:
	nftables 0.5
This release contains bug fixes and new features contained up to the
4.2 kernel release.
New features
============
* Concatenations: You can combine two or more selectors to build a
  tuple, then use it to look up for a matching in sets, eg.
  % nft add rule ip filter input ip saddr . tcp dport { \
                1.1.1.1 . 22 , \
   
2023 Jul 21
0
[Bug 1650] fail to add missing element to nft sets after running some time - file exists
https://bugzilla.netfilter.org/show_bug.cgi?id=1650
--- Comment #5 from Wang Jian <larkwang at gmail.com> ---
>
> This internal:0:0-0 is incorrect error reporting.
>
> Could you run nftables with git HEAD? It contains this fix:
>
> commit 5e39a34b196d68b803911aa13066fef2f83dc98c
> Author: Pablo Neira Ayuso <pablo at netfilter.org>
> Date:   Mon Mar 27 16:36:31
2014 Dec 16
0
[ANNOUNCE] nftables 0.4 release
Hi!
The Netfilter project proudly presents:
        nftables 0.4
This release contains a lot of bug fixes and new features contained up
to the recent 3.18 kernel release (and some features coming up in the
yet unreleased 3.19-rc).
New features
============
* Add support for global ruleset operations (available since 3.18).
  Get rid of all tables, chains, and rules in one go:
        # nft
2018 Jan 16
0
[ANNOUNCE] nftables 0.8.1 release
Hi!
The Netfilter project proudly presents:
        nftables 0.8.1
This release contains mostly incremental fixes and documentation
updates, such as fixing up ./configure --with-mini-gmp for embedded
setups that don't have libgmp.
Deprecated syntax
=================
This release deprecates the "flow table" syntax in favor of "meter" to
address Netfilter's bugzilla
2017 Oct 06
6
[Bug 1188] New: nft fails to parse own output; unable to save-restore active state
https://bugzilla.netfilter.org/show_bug.cgi?id=1188
            Bug ID: 1188
           Summary: nft fails to parse own output; unable to save-restore
                    active state
           Product: nftables
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Severity: critical
          Priority: P5
         Component: nft
      
2020 Jun 15
0
[ANNOUNCE] nftables 0.9.6 release
Hi!
The Netfilter project proudly presents:
        nftables 0.9.6
This release fixes vmap support which broke in 0.9.5.
You can download this new release from:
https://www.netfilter.org/projects/nftables/downloads.html#nftables-0.9.6
https://www.netfilter.org/pub/nftables/
To build the code, libnftnl 1.1.7 and libmnl >= 1.0.4 are required:
*
[Bug 1300] New: nft(8) - man page - SETS - missing descriptions and explanations - flags, auto-merge
2018 Nov 17
5
[Bug 1300] New: nft(8) - man page - SETS - missing descriptions and explanations - flags, auto-merge
https://bugzilla.netfilter.org/show_bug.cgi?id=1300
            Bug ID: 1300
           Summary: nft(8) - man page - SETS - missing descriptions and
                    explanations - flags, auto-merge
           Product: nftables
           Version: unspecified
          Hardware: x86_64
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5
      
2020 Jun 06
0
[ANNOUNCE] nftables 0.9.5 release
Hi!
The Netfilter project proudly presents:
        nftables 0.9.5
This release contains fixes and new features available up to the Linux
kernel 5.7 release.
* Support for set counters:
  table ip x {
            set y {
                    typeof ip saddr
                    counter
                    elements = { 192.168.10.35, 192.168.10.101, 192.168.10.135 }
            }
           
2019 Nov 20
3
[Bug 1383] New: When using include, nft shows the wrong file name in errors
https://bugzilla.netfilter.org/show_bug.cgi?id=1383
            Bug ID: 1383
           Summary: When using include, nft shows the wrong file name in
                    errors
           Product: nftables
           Version: unspecified
          Hardware: x86_64
                OS: Debian GNU/Linux
            Status: NEW
          Severity: normal
          Priority: P5
         Component: nft
2014 Jan 25
7
[Bug 888] New: Assertion errors attempting a statement which (I believe) is grammatically correct.
https://bugzilla.netfilter.org/show_bug.cgi?id=888
           Summary: Assertion errors attempting a statement which (I
                    believe) is grammatically correct.
           Product: nftables
           Version: unspecified
          Platform: x86_64
        OS/Version: Fedora
            Status: NEW
          Severity: normal
          Priority: P5
         Component: nft
       
2020 Oct 27
0
[ANNOUNCE] nftables 0.9.7 release
Hi!
The Netfilter project proudly presents:
        nftables 0.9.7
This release contains fixes and new features available up to the Linux
kernel 5.10-rc1 release.
* Support for implicit chain, e.g.
  table inet x {
        chain y {
             type filter hook input priority 0;
             tcp dport 22 jump {
                    ip saddr { 127.0.0.0/8, 172.23.0.0/16, 192.168.13.0/24 }
2015 Jan 28
2
[Bug 996] New: Add "replace" rule statement
https://bugzilla.netfilter.org/show_bug.cgi?id=996
            Bug ID: 996
           Summary: Add "replace" rule statement
           Product: nftables
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5
         Component: nft
          Assignee: pablo at netfilter.org
         
2023 Apr 08
0
[Bug 1664] Poor error handling and diagnostics when given paths that are not regular files
https://bugzilla.netfilter.org/show_bug.cgi?id=1664
Pablo Neira Ayuso <pablo at netfilter.org> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
--- Comment #4 from Pablo Neira Ayuso <pablo at netfilter.org> ---
(In reply to Pablo Neira
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 Jun 03
15
[Bug 1154] New: Allow include statement to operate on directories and/or wildcards
https://bugzilla.netfilter.org/show_bug.cgi?id=1154
            Bug ID: 1154
           Summary: Allow include statement to operate on directories
                    and/or wildcards
           Product: nftables
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5
         Component: nft
   
2017 Aug 21
3
[Bug 1171] New: define statement does not accept negative numbers
https://bugzilla.netfilter.org/show_bug.cgi?id=1171
            Bug ID: 1171
           Summary: define statement does not accept negative numbers
           Product: nftables
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: P5
         Component: nft
          Assignee: pablo at netfilter.org
  
2014 Apr 14
0
[ANNOUNCE]: Release of nftables 0.2
The netfilter project presents:
	nftables 0.2
This release contains a rather large number of bug fixes, syntax cleanups,
new features, support for all new features contained in the recent 3.14
kernel release as well as *drumroll* documentation.
Syntax changes
==============
* More consistency in data type names
  Data type names are used in set declarations. All address related types
  now
2019 Mar 30
4
[Bug 1330] New: Parse error for importing set with netmask
https://bugzilla.netfilter.org/show_bug.cgi?id=1330
            Bug ID: 1330
           Summary: Parse error for importing set with netmask
           Product: nftables
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Severity: major
          Priority: P5
         Component: nft
          Assignee: pablo at netfilter.org
         
2016 Jun 07
0
[Bug 1014] "nft list chain xx yy" list also sets from the table xx
https://bugzilla.netfilter.org/show_bug.cgi?id=1014
Pablo Neira Ayuso <pablo at netfilter.org> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED
--- Comment #1 from Pablo Neira Ayuso