Re: [ovs-dev] [PATCH v2] ipf: fix only nat the first fragment in the reass process

2021-09-15 Thread Ilya Maximets
On 8/24/21 19:43, Aaron Conole wrote: > Aaron Conole writes: > >> Ilya Maximets writes: >> >>> On 8/12/21 6:17 PM, Aaron Conole wrote: we...@ucloud.cn writes: > From: wenxu > > The ipf collect original fragment packets and reass a new pkt > to do the conntrack logic.

Re: [ovs-dev] [PATCH v2] ipf: fix only nat the first fragment in the reass process

2021-08-24 Thread Aaron Conole
Aaron Conole writes: > Ilya Maximets writes: > >> On 8/12/21 6:17 PM, Aaron Conole wrote: >>> we...@ucloud.cn writes: >>> From: wenxu The ipf collect original fragment packets and reass a new pkt to do the conntrack logic. After finsh the conntrack things copy the ct

Re: [ovs-dev] [PATCH v2] ipf: fix only nat the first fragment in the reass process

2021-08-23 Thread Aaron Conole
Ilya Maximets writes: > On 8/12/21 6:17 PM, Aaron Conole wrote: >> we...@ucloud.cn writes: >> >>> From: wenxu >>> >>> The ipf collect original fragment packets and reass a new pkt >>> to do the conntrack logic. After finsh the conntrack things >>> copy the ct meta info to each orignal packet

Re: [ovs-dev] [PATCH v2] ipf: fix only nat the first fragment in the reass process

2021-08-16 Thread Ilya Maximets
On 8/12/21 6:17 PM, Aaron Conole wrote: > we...@ucloud.cn writes: > >> From: wenxu >> >> The ipf collect original fragment packets and reass a new pkt >> to do the conntrack logic. After finsh the conntrack things >> copy the ct meta info to each orignal packet and modify the >> l4 header in the

Re: [ovs-dev] [PATCH v2] ipf: fix only nat the first fragment in the reass process

2021-08-12 Thread Paolo Valerio
Hi, thanks for working on this we...@ucloud.cn writes: > From: wenxu > > The ipf collect original fragment packets and reass a new pkt > to do the conntrack logic. After finsh the conntrack things > copy the ct meta info to each orignal packet and modify the > l4 header in the first fragment.

Re: [ovs-dev] [PATCH v2] ipf: fix only nat the first fragment in the reass process

2021-08-12 Thread Aaron Conole
we...@ucloud.cn writes: > From: wenxu > > The ipf collect original fragment packets and reass a new pkt > to do the conntrack logic. After finsh the conntrack things > copy the ct meta info to each orignal packet and modify the > l4 header in the first fragment. It should modify the ip src/ >

Re: [ovs-dev] [PATCH v2] ipf: fix only nat the first fragment in the reass process

2021-08-06 Thread ze wang
ot; > ovs-ofctl add-flow manbr "table=0,arp,actions=normal" > > > > With the frag-packet in udp-frag.pcap. And the wrong nated packet. > nat-packet.pcap > > > send the packet: > iperf -u -c 1.1.1.3 -t 120 -i 2 -b 1 -l 1800 > > > > > From: Aaron

Re: [ovs-dev] [PATCH v2] ipf: fix only nat the first fragment in the reass process

2021-07-08 Thread wenxu
.@ovn.org,d...@openvswitch.org Subject: Re: [ovs-dev] [PATCH v2] ipf: fix only nat the first fragment in the reass process>we...@ucloud.cn writes: > >> From: wenxu >> >> The ipf collect original fragment packets and reass a new pkt >> to do the conntrack logic. A

Re: [ovs-dev] [PATCH v2] ipf: fix only nat the first fragment in the reass process

2021-07-08 Thread wenxu
le=0,arp,actions=normal" With the frag-packet in udp-frag.pcap. And the wrong nated packet. nat-packet.pcap send the packet: iperf -u -c 1.1.1.3 -t 120 -i 2 -b 1 -l 1800 From: Aaron Conole Date: 2021-07-09 04:11:12 To: we...@ucloud.cn Cc: i.maxim...@ovn.org,d...@openvswitch.org S

Re: [ovs-dev] [PATCH v2] ipf: fix only nat the first fragment in the reass process

2021-07-08 Thread Aaron Conole
we...@ucloud.cn writes: > From: wenxu > > The ipf collect original fragment packets and reass a new pkt > to do the conntrack logic. After finsh the conntrack things > copy the ct meta info to each orignal packet and modify the > l4 header in the first fragment. It should modify the ip src/ >

Re: [ovs-dev] [PATCH v2] ipf: fix only nat the first fragment in the reass process

2021-07-06 Thread wenxu
Hi Ilya, How about this patch. Without this the fragment packet in the nat conntrack will not work for the only first fragment do address nat. BR wenxu From: we...@ucloud.cn Date: 2021-06-18 14:45:50 To: i.maxim...@ovn.org Cc: d...@openvswitch.org Subject: [ovs-dev] [PATCH v2] ipf: fix only

[ovs-dev] [PATCH v2] ipf: fix only nat the first fragment in the reass process

2021-06-18 Thread wenxu
From: wenxu The ipf collect original fragment packets and reass a new pkt to do the conntrack logic. After finsh the conntrack things copy the ct meta info to each orignal packet and modify the l4 header in the first fragment. It should modify the ip src/ dst info for all the fragments.