From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id B6C37A0524; Thu, 26 Nov 2020 08:41:02 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 71607C93E; Thu, 26 Nov 2020 08:41:01 +0100 (CET) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 77AA7C93C for ; Thu, 26 Nov 2020 08:40:58 +0100 (CET) IronPort-SDR: hTHAlBR3BUqgtTufuc9VrGgpbOOuayrpN7YT/9XghEOh6XT5NqoYlT7siJh0ncx6jpiBqYD6gb gllfMwkmQ3fQ== X-IronPort-AV: E=McAfee;i="6000,8403,9816"; a="151507207" X-IronPort-AV: E=Sophos;i="5.78,371,1599548400"; d="scan'208";a="151507207" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Nov 2020 23:40:56 -0800 IronPort-SDR: 5B8/t1wGpHO28nEaLVppciw9twOUUvNhjHVliXMI/8IIHYP7RJ8S7BL/kzVkSoupH0YsioMve5 dmDQkGnSRF3Q== X-IronPort-AV: E=Sophos;i="5.78,371,1599548400"; d="scan'208";a="537211052" Received: from unknown (HELO dpdk-huangzm-d.sh.intel.com) ([10.240.183.72]) by fmsmga005-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Nov 2020 23:40:54 -0800 From: Zhimin Huang To: lijuan.tu@intel.com, dts@dpdk.org Cc: Zhimin Huang Date: Thu, 26 Nov 2020 15:33:26 +0800 Message-Id: <1606376006-74996-1-git-send-email-zhiminx.huang@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH V1] doc/dts_gsg/sys_reqs:add known issue after update scapy 2.4.4 X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" *.compare scapy 2.4.4 with 2.4.3 and support new packet layer. Signed-off-by: Zhimin Huang --- doc/dts_gsg/sys_reqs.rst | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/doc/dts_gsg/sys_reqs.rst b/doc/dts_gsg/sys_reqs.rst index 332304a..c549646 100644 --- a/doc/dts_gsg/sys_reqs.rst +++ b/doc/dts_gsg/sys_reqs.rst @@ -81,6 +81,31 @@ DTS uses python module scapy to forge or decode packets of a wide number of prot scapy 2.4.4: support packet layer PFCP and GTPPDUSessionContainer +.. code-block:: console + + pip3 install scapy==2.4.4 + +.. note:: + There are some differences between scapy 2.4.4 and scapy 2.4.3 about the packet layer, the details refer to the + table as follows. + +.. table:: + + +------------------------+---------------------------------+-----------------------------------------------+------------------------------------------------------+ + | Compare scapy 2.4.3 with scapy 2.4.4 | + +------------------------+---------------------------------+-----------------------------------------------+------------------------------------------------------+ + | Layer | packet in scapy 2.4.3 | packet in scapy 2.4.4 | Comments | + +========================+=================================+===============================================+======================================================+ + | PPP | PPP(proto=0xc021) | PPP(b\'\\xc0\\x21\') | PPP protocol filed length is 1 byte in scapy2.4.4 | + +------------------------+---------------------------------+-----------------------------------------------+------------------------------------------------------+ + | L2TP | L2TP(\'\\x00\\x00\\x00\\x11\') | L2TP(b\'\\x00\\x00\\x00\\x11\') | L2TP is byte type in scapy2.4.4 | + +------------------------+---------------------------------+-----------------------------------------------+------------------------------------------------------+ + | PFCP | N/A | PFCP(S=1, seid=1) | PFCP is not supported in scapy2.4.3 | + +------------------------+---------------------------------+-----------------------------------------------+------------------------------------------------------+ + | GTPPDUSessionContainer | N/A | GTPPDUSessionContainer(type=0, P=1, QFI=0x34) | GTPPDUSessionContainer is not supported in scapy2.4.3| + +------------------------+---------------------------------+-----------------------------------------------+------------------------------------------------------+ + + Install DPDK Test Suite on tester ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -- 1.8.3.1