From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oi0-f50.google.com (mail-oi0-f50.google.com [209.85.218.50]) by dpdk.org (Postfix) with ESMTP id 2F7F22BFA for ; Sun, 10 Apr 2016 20:42:06 +0200 (CEST) Received: by mail-oi0-f50.google.com with SMTP id w85so185757397oiw.0 for ; Sun, 10 Apr 2016 11:42:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to; bh=G/Rpj8qbGvcJIZcqtkK9D6LQuERSYKY43+W7Xpccp6A=; b=JNwu6VPE6gItjB4ywM3XrfpCLcOhwuVsvGNpxCZrXvdlgV2fxyHQ5bzxbedPmb4tgZ orw04fWwvDlP/Apbvs9T87p7ItYLWo0ZWysNK3mTiUaGNHnKlu+dW2LJtC+tuhUWN06c 9HLvuJ+4b81wirCe1iC7WtQAPctTEBW2daKwmWy5H1Y1tiqYN8xbXCa/axkD+1vVB7gy c8LU3kRPIPNx6pZd+7qM9XNUz7zFC5t6bU3g2RdIkTNPq1k6CdGLxI7zO6aQglWOgfYm WkqcRINH7itqfv5OwK2b5TNAx4LV6spBW6b9xNn3TaIevY8/3+cu8BAXIGyv3SljArBu VMeg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:date:message-id:subject:from:to; bh=G/Rpj8qbGvcJIZcqtkK9D6LQuERSYKY43+W7Xpccp6A=; b=NgQ+dMNVPt7LAutBJuk5aNvGRBG+y4W9gIEUz6ZWrhBA0auK+lW6oBxVm68/wuH2wR Th5bnJy3ivflhBXQGtwZKlEa2jMjnOn1f2TW+aBQJUaVe91qYxEXnmc3C9sxVVp8q/48 k7VFBNzGhV1UFRoZ/Fk/rxPn/XcreqW9gApxTQRJNSxRhtTvNrqls3d9IzS64kKGUlfU l7Xd2QJFg2hf4eLo8v2vIn9Ij7ihgBQGO1lPIYnr6tpkMvLdQkRonf0HOhX0cJEJWH+p KFrXPKOCgq96QO4oX3JOYHmTHRjfd+uj4tTOkp0suf1rYGPesHK7yY68pcECHdlSIDeP wM5g== X-Gm-Message-State: AD7BkJI4iX/hyNi+O/q1NDEMnTq0DJcRy3ApmWRW5KEeH8pR4pw4TXGdJINbwScEcgn5EXbEWH9LDXm127Ba5Q== MIME-Version: 1.0 X-Received: by 10.157.11.21 with SMTP id a21mr9247171ota.5.1460313725362; Sun, 10 Apr 2016 11:42:05 -0700 (PDT) Received: by 10.202.184.5 with HTTP; Sun, 10 Apr 2016 11:42:05 -0700 (PDT) Date: Sun, 10 Apr 2016 14:42:05 -0400 Message-ID: From: sml To: users@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-users] RTE_ACL - Question about ANY PROTO X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Apr 2016 18:42:06 -0000 So I have the ACL library working great. One issue I am running into though is how to wildcard the PROTO field (this is for IPv4). I have set the value to 0x0, range mask to 0x0, 0x0 and 0xff, 0xff and 0xff, nothing seems to work. I want to be able to establish a rule such as: PROTO: ANY - thats the rule, it could be expanded of course to: PROTO: ANY SOURCEIP: xxx, and range But I think first step is in establishing how I set the PROTO field to accept any PROTO value? Any guidance would be greatly appreciated...