From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-11.2 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 30587C433DF for ; Thu, 27 Aug 2020 17:40:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id E99C12087E for ; Thu, 27 Aug 2020 17:40:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726243AbgH0RkV (ORCPT ); Thu, 27 Aug 2020 13:40:21 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59846 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726009AbgH0RkU (ORCPT ); Thu, 27 Aug 2020 13:40:20 -0400 Received: from Chamillionaire.breakpoint.cc (Chamillionaire.breakpoint.cc [IPv6:2a0a:51c0:0:12e:520::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B3F1AC061264 for ; Thu, 27 Aug 2020 10:40:20 -0700 (PDT) Received: from fw by Chamillionaire.breakpoint.cc with local (Exim 4.92) (envelope-from ) id 1kBLsl-00040H-3O; Thu, 27 Aug 2020 19:40:15 +0200 Date: Thu, 27 Aug 2020 19:40:15 +0200 From: Florian Westphal To: Phil Sutter , Quentin Armitage , netfilter-devel@vger.kernel.org, Florian Westphal Subject: Re: [PATCH] netfilter: nftables: fix documentation for dup statement Message-ID: <20200827174015.GC7319@breakpoint.cc> References: <20200827170203.GM23632@orbyte.nwl.cc> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200827170203.GM23632@orbyte.nwl.cc> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: netfilter-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org Phil Sutter wrote: > Hi, > > On Thu, Aug 27, 2020 at 04:42:00PM +0100, Quentin Armitage wrote: > > The dup statement requires an address, and the device is optional, > > not the other way round. > > > > Signed-off-by: Quentin Armitage > > --- > > doc/statements.txt | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/doc/statements.txt b/doc/statements.txt > > index 9155f286..835db087 100644 > > --- a/doc/statements.txt > > +++ b/doc/statements.txt > > @@ -648,7 +648,7 @@ The dup statement is used to duplicate a packet and send the > > copy to a different > > destination. > > > > [verse] > > -*dup to* 'device' > > +*dup to* 'address' > > *dup to* 'address' *device* 'device' > > > > .Dup statement values > > The examples are wrong, too. I wonder if this is really just a mistake > and all three examples given (including the "advanced" usage using a > map) are just wrong or if 'dup' actually was meant to support > duplicating to a device in mirror port fashion. Right, 'dup to eth0' can be used in the netdev ingress hook. For dup from ipv4/ipv6 families the address is needed.