Re: [dpdk-dev] [dpdk-users] Unable to Forward the Packet after UDP Payload Modification

2019-07-02 Thread satyavalli rama
> > I tried to create a completely new packet with my received mbuf, but still >> I'm unable to forward packets with the appended payload, (Im able to >> replace the RX payload but I'm unable to add or append additional payload >> to the RX pkts).. >> >> If I'm changing IP Header Total Length or Ch

Re: [dpdk-dev] [dpdk-users] Unable to Forward the Packet after UDP Payload Modification

2019-06-28 Thread Stephen Hemminger
On Thu, 27 Jun 2019 23:00:35 +0530 satyavalli rama wrote: > Hi > > > With Scapy we are sending UDP Packets to ‘P0’ of DPDK - VM -1 as below > > >>>sendp(Ether(src="52:00:00:00:00:4a",dst="50:00:00:00:00:8F")/IP(dst="20.20.20.20",proto=17)/UDP(sport=4009,dport=4019)/Raw(load=('Helllo > >>> Bash