From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id CC6085683 for ; Fri, 4 Dec 2015 01:51:28 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP; 03 Dec 2015 16:51:28 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,378,1444719600"; d="scan'208";a="864304505" Received: from stv-crb-56.sh.intel.com (HELO [10.239.128.116]) ([10.239.128.116]) by orsmga002.jf.intel.com with ESMTP; 03 Dec 2015 16:51:26 -0800 Message-ID: <5660E392.9010102@intel.com> Date: Fri, 04 Dec 2015 08:51:30 +0800 From: "Liu, Yong" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Shijie Dong , dts@dpdk.org References: <1449138852-8940-1-git-send-email-shijiex.dong@intel.com> In-Reply-To: <1449138852-8940-1-git-send-email-shijiex.dong@intel.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dts] [PATCH V1] add payload for send eth packet 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: , X-List-Received-Date: Fri, 04 Dec 2015 00:51:29 -0000 Hi shide, can you supply the information that which version scapy not support raw packet? We can add it into dts document. On 12/03/2015 06:34 PM, Shijie Dong wrote: > scapy can't support send packet only inlcude eth herd in ubutu 15.10 > > Signed-off-by: Shijie Dong > --- > tests/TestSuite_dynamic_config.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/TestSuite_dynamic_config.py b/tests/TestSuite_dynamic_config.py > index d1ad49c..ba740b1 100644 > --- a/tests/TestSuite_dynamic_config.py > +++ b/tests/TestSuite_dynamic_config.py > @@ -111,7 +111,7 @@ class TestDynamicConfig(TestCase): > > self.tester.scapy_foreground() > self.tester.scapy_append( > - 'sendp([Ether(dst="%s", src="52:00:00:00:00:00")], iface="%s")' % (destMac, itf)) > + 'sendp([Ether(dst="%s", src="52:00:00:00:00:00")/Raw(load="X"*26)], iface="%s")' % (destMac, itf)) > > self.tester.scapy_execute() >