From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pablo Neira Ayuso Subject: Re: nftables and connection tracking Date: Mon, 22 Jun 2020 14:06:36 +0200 Message-ID: <20200622120636.GA17558@salvia> References: Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Return-path: Content-Disposition: inline In-Reply-To: Sender: netfilter-owner@vger.kernel.org List-ID: Content-Type: text/plain; charset="iso-8859-1" To: Marek =?utf-8?Q?Gre=C5=A1ko?= Cc: netfilter@vger.kernel.org On Sun, Jun 21, 2020 at 07:54:14AM +0200, Marek Gre=C5=A1ko wrote: > Hello, >=20 > I have problem to get connection tracking work when using nftables. I > have this setup on my fedora 32: >=20 > table ip raw { > chain PREROUTING { > type filter hook prerouting priority raw; policy accept; Could you try from the filter (0) priority instead ? type filter hook prerouting priority filter; policy accep= t; Thanks.