<html>
    <head>
      <base href="https://bugzilla.netfilter.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - nft --json list ruleset crashes"
   href="https://bugzilla.netfilter.org/show_bug.cgi?id=1463#c3">Comment # 3</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - nft --json list ruleset crashes"
   href="https://bugzilla.netfilter.org/show_bug.cgi?id=1463">bug 1463</a>
              from <span class="vcard"><a class="email" href="mailto:abrian@netapp.com" title="abrian@netapp.com">abrian@netapp.com</a>
</span></b>
        <pre>Here is the resulting ip filter tables that crashes:

# nft list table ip filter
table ip filter {
        chain INPUT {
                type filter hook input priority 0; policy accept;
                meta l4proto tcp tcp flags & (fin|syn|rst|ack) == syn tcp dport
{ 8082,8083,8084,8085} # #conn src/0 > 20000 counter packets 0 bytes 0 reject
with tcp reset
                meta l4proto tcp tcp flags & (fin|syn|rst|ack) == syn tcp dport
{ 18082,18083,18084,18085} # #conn src/0 > 10000 counter packets 0 bytes 0
reject with tcp reset
        }

        chain FORWARD {
                type filter hook forward priority 0; policy accept;
        }

        chain OUTPUT {
                type filter hook output priority 0; policy accept;
        }
}

# nft --json list table ip filter
warning: stmt ops xt have no json callback
nft: json.c:169: stmt_print_json: Assertion `__out' failed.
Aborted (core dumped)</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are watching all bug changes.</li>
      </ul>
    </body>
</html>