From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jiri Pirko Subject: Re: [iproute2-next PATCH v3 1/2] tc: flower: Classify packets based port ranges Date: Sun, 18 Nov 2018 20:30:07 +0100 Message-ID: <20181118193007.GA2286@nanopsycho.orion> References: <154232971379.10668.16416943966699679792.stgit@anamhost.jf.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: stephen@networkplumber.org, netdev@vger.kernel.org, dsahern@gmail.com, jakub.kicinski@netronome.com, sridhar.samudrala@intel.com, jhs@mojatatu.com, xiyou.wangcong@gmail.com To: Amritha Nambiar Return-path: Received: from mail-wm1-f65.google.com ([209.85.128.65]:52517 "EHLO mail-wm1-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725812AbeKSF54 (ORCPT ); Mon, 19 Nov 2018 00:57:56 -0500 Received: by mail-wm1-f65.google.com with SMTP id r11-v6so3263822wmb.2 for ; Sun, 18 Nov 2018 11:36:47 -0800 (PST) Content-Disposition: inline In-Reply-To: <154232971379.10668.16416943966699679792.stgit@anamhost.jf.intel.com> Sender: netdev-owner@vger.kernel.org List-ID: Fri, Nov 16, 2018 at 01:55:13AM CET, amritha.nambiar@intel.com wrote: >Added support for filtering based on port ranges. >UAPI changes have been accepted into net-next. > >Example: >1. Match on a port range: >------------------------- >$ tc filter add dev enp4s0 protocol ip parent ffff:\ > prio 1 flower ip_proto tcp dst_port range 20-30 skip_hw\ > action drop > >$ tc -s filter show dev enp4s0 parent ffff: >filter protocol ip pref 1 flower chain 0 >filter protocol ip pref 1 flower chain 0 handle 0x1 > eth_type ipv4 > ip_proto tcp > dst_port range 20-30 > skip_hw > not_in_hw > action order 1: gact action drop > random type none pass val 0 > index 1 ref 1 bind 1 installed 85 sec used 3 sec > Action statistics: > Sent 460 bytes 10 pkt (dropped 10, overlimits 0 requeues 0) > backlog 0b 0p requeues 0 > >2. Match on IP address and port range: >-------------------------------------- >$ tc filter add dev enp4s0 protocol ip parent ffff:\ > prio 1 flower dst_ip 192.168.1.1 ip_proto tcp dst_port range 100-200\ > skip_hw action drop > >$ tc -s filter show dev enp4s0 parent ffff: >filter protocol ip pref 1 flower chain 0 handle 0x2 > eth_type ipv4 > ip_proto tcp > dst_ip 192.168.1.1 > dst_port range 100-200 > skip_hw > not_in_hw > action order 1: gact action drop > random type none pass val 0 > index 2 ref 1 bind 1 installed 58 sec used 2 sec > Action statistics: > Sent 920 bytes 20 pkt (dropped 20, overlimits 0 requeues 0) > backlog 0b 0p requeues 0 > >v3: >Modified flower_port_range_attr_type calls. > >v2: >Addressed Jiri's comment to sync output format with input > >Signed-off-by: Amritha Nambiar Looks ok. But why do you have man changes in a separate patch ? I think it should be in this one. Anyway Acked-by: Jiri Pirko