Displaying 2 results from an estimated 2 matches for "port_allow".
2017 Apr 15
9
[Bug 1145] New: nft 0.7: expression.c:966: range_expr_value_low: Assertion '0' failed.
https://bugzilla.netfilter.org/show_bug.cgi?id=1145
            Bug ID: 1145
           Summary: nft 0.7: expression.c:966: range_expr_value_low:
                    Assertion '0' failed.
           Product: nftables
           Version: unspecified
          Hardware: x86_64
                OS: Gentoo
            Status: NEW
          Severity: normal
          Priority: P5
        
2017 Oct 12
0
[ANNOUNCE] nftables 0.8 release
...t-https
* Allow to embed set definition into an existing set, eg.
     # nft -f ruleset.nft
     define myset = {
           1.1.1.0,
           2.2.2.0,
     }
     add rule ip saddr { $myset, 3.3.3.0 }
  And scripting like now works too:
     define dnat_ports      = { 1234-1567 }
     define port_allow      = {
            53,             # dns
            $dnat_ports,    # dnat
     }
* Slightly better error reporting when ruleset loaded via nft -f, eg.
     # nft -f /home/test/x
     /home/test/x:4:17-70: Error: Could not process rule: No such file or directory
                    ip saddr {...