; Sent: jueves, 07 de julio de 2016 15:08
> To: Cristina Palomo Regidor <mailto:cristina.palomo.regi...@ericsson.com>>
> Cc: discuss@openvswitch.org <mailto:discuss@openvswitch.org>
> Subject: Re: [ovs-discuss] help on nat example
>
> The problem is not related to
trk,ct_zone=1,tcp,tp_src=80,action=2"
Do you know what shall I do for the mac address being translated?
Thanks and BR/
From: D3c3 Balus [mailto:d3c3ba...@gmail.com]
Sent: jueves, 07 de julio de 2016 15:08
To: Cristina Palomo Regidor
Cc: discuss@openvswitch.org
Subject: Re: [ovs-discuss]
ilto:cristina.palomo.regi...@ericsson.com>>
> Cc: discuss@openvswitch.org <mailto:discuss@openvswitch.org>
> Subject: Re: [ovs-discuss] help on nat example
>
> Ah, sorry, now I got it: you try to NAT between 172.16.1.4 to 172.16.1.5,
> meaning 2 IPs in the same subnet ? Wh
: D3c3 Balus [mailto:d3c3ba...@gmail.com]
Sent: jueves, 07 de julio de 2016 14:25
To: Cristina Palomo Regidor
Cc: discuss@openvswitch.org
Subject: Re: [ovs-discuss] help on nat example
Ah, sorry, now I got it: you try to NAT between 172.16.1.4 to 172.16.1.5,
meaning 2 IPs in the same subnet ? Why wou
.1.4 tell 172.16.1.1, length 28
>
> From: D3c3 Balus [mailto:d3c3ba...@gmail.com]
> Sent: jueves, 07 de julio de 2016 13:04
> To: Cristina Palomo Regidor
> Cc: discuss@openvswitch.org
> Subject: Re: [ovs-discuss] help on nat example
>
> Hello,
>
> Your first flow “in_por
, 07 de julio de 2016 13:04
To: Cristina Palomo Regidor
Cc: discuss@openvswitch.org
Subject: Re: [ovs-discuss] help on nat example
Hello,
Your first flow “in_port=4, ip, ….” matches only IP traffic, but ARP is not
matched. You need another rule like “in_port, arp, actions….” to translate
also ARP
Hello,
Your first flow “in_port=4, ip, ….” matches only IP traffic, but ARP is not
matched. You need another rule like “in_port, arp, actions….” to translate
also ARP.
Cheers,
DC
> On Jul 7, 2016, at 11:36 AM, Cristina Palomo Regidor
> wrote:
>
> Hello,
> I would appreciate any help on th
Hello,
I would appreciate any help on this nat example. I want to do dst nat
translation so the dst address is translated to 172.16.1.5 where I have a web
server.
I have implemented these flows:
ovs-ofctl add-flow br0
"in_port=4,ip,action=ct(commit,zone=1,nat(dst=172.16.1.5)),5"
ovs-ofctl add-