Re: [ovs-dev] [PATCH] ovs-router: Fix selection of source IP address when a gateway ip is introduced

2016-10-31 Thread Waizel, Ariel
Don't mind, go ahead הודעה מקורית מאת: Thadeu Lima de Souza Cascardo נשלח: Monday, October 31, 2016 11:36 PM אל: Ben Pfaff נושא: Re: [ovs-dev] [PATCH] ovs-router: Fix selection of source IP address when a gateway ip is introduced עותק: "Waizel, Ariel" ,dev@

Re: [ovs-dev] [PATCH] ovs-router: Fix selection of source IP address when a gateway ip is introduced

2016-10-27 Thread Waizel, Ariel
To: Waizel, Ariel Cc: dev@openvswitch.org Subject: Re: [ovs-dev] [PATCH] ovs-router: Fix selection of source IP address when a gateway ip is introduced On Thu, Oct 27, 2016 at 02:08:13PM +, Waizel, Ariel wrote: > > > When adding a VXLAN tunnel that connects to a VTEP residing in

[ovs-dev] [PATCH] ovs-router: Fix selection of source IP address when a gateway ip is introduced

2016-10-27 Thread Waizel, Ariel
s way, the gateway becomes the first hop only if the tunnel crosses between ip networks. Signed-off-by: Ariel Waizel diff --git a/lib/ovs-router.c b/lib/ovs-router.c index e27514a..18d0f8e 100644 --- a/lib/ovs-router.c +++ b/lib/ovs-router.c @@ -198,6 +198,9 @@ ovs_router_insert__(uint8_t pri

[ovs-dev] [PATCH] ovs-router: Fix selection of source IP address when a gateway ip is introduced

2016-10-27 Thread Waizel, Ariel
works. Signed-off-by: Ariel Waizel mailto:ariel.wai...@hpe.com>> diff --git a/lib/ovs-router.c b/lib/ovs-router.c index e27514a..18d0f8e 100644 --- a/lib/ovs-router.c +++ b/lib/ovs-router.c @@ -198,6 +198,9 @@ ovs_router_insert__(uint8_t priority, const struct in6_addr *ip6_dst, p-&

Re: [ovs-dev] [PATCH] ovs-router: Fix selection of source IP address when a gateway ip is introduced

2016-10-27 Thread Waizel, Ariel
his way, the gateway > becomes the first hop only if the tunnel crosses between ip networks. > > Signed-off-by: Ariel Waizel diff --git a/lib/ovs-router.c b/lib/ovs-router.c index e27514a..18d0f8e 100644 --- a/lib/ovs-router.c +++ b/lib/ovs-router.c @@ -198,6 +198,9 @@ ovs_router_inse

[ovs-dev] [PATCH] ovs-router: Fix selection of source IP address when a gateway ip is introduced

2016-09-13 Thread Waizel, Ariel
works. Signed-off-by: Ariel Waizel diff --git a/lib/ovs-router.c b/lib/ovs-router.c index e27514a..18d0f8e 100644 --- a/lib/ovs-router.c +++ b/lib/ovs-router.c @@ -198,6 +198,9 @@ ovs_router_insert__(uint8_t priority, const struct in6_addr *ip6_dst, p->plen = plen; p->priority

[ovs-dev] [PATCH] vtep/vtep.xml - formatting

2015-11-20 Thread Ariel Tubaltsev
We continue to review HW VTEP schema This patch contains only cosmetical changes, to separate it from semantical changes Signed-off-by: Ariel Tubaltsev --- vtep/vtep.xml | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/vtep/vtep.xml b/vtep/vtep.xml

[ovs-dev] [PATCH] HW VTEP Schema: update Tunnel table definition

2015-11-13 Thread Ariel Tubaltsev
vtep/vtep.xml : Tunnel table definitions were reviewed against latest OVS schema. Relevant changes taken into HW VTEP schema. XML formatting of Tunnel table corrected Signed-off-by: Ariel Tubaltsev --- vtep/vtep.xml | 120 +- 1 file

[ovs-dev] PATCH 1/1 vtep: update tunnel table definitions

2015-11-13 Thread Ariel Tubaltsev
We should keep HW VTEP schema in sync with OVS schema. vtep/vtep.xml: Tunnel table of HW VTEP schema was reviewed against recent OVS schema changes. Relevant changes taken into HW VTEP schema. XML formatting of Tunnel table corrected. ___ dev mailing li

Re: [ovs-dev] i guarantee you will get laid tonight (if you read this)

2015-03-11 Thread Ariel Quincy
A bold promise, I know... But i've recently discovered an absolutely GUARANTEED method for getting ANY woman into your bed. FAST And the best part is, you can use it TONIGHT to get laid. Click Here To Discover The Secret (Free Video) http://urla.ru/1IgP <- Videos comes down to

Re: [ovs-dev] [PATCH v3 6/6] ovs-vtep: Add support for bfd tunnels.

2014-09-22 Thread Ariel Tubaltsev
Acked-by: Ariel Tubaltsev On 9/19/14 7:29 AM, "Gurucharan Shetty" wrote: >The VTEP emulator creates one OVS bridge for every logical switch and then >programs flow in it based on learned local macs and controller programmed >remote macs. > >Multiple logical switc

Re: [ovs-dev] [PATCH v3 2/6] vtep-ctl: Add Tunnel table to vtep_ctl_table_class.

2014-09-22 Thread Ariel Tubaltsev
Acked-by: Ariel Tubaltsev On 9/19/14 7:29 AM, "Gurucharan Shetty" wrote: >This is needed to create, get, set records in the Tunnel table. > >(We need to add the Tunnel table's 'local' and 'remote' columns >that point to the Physical_Locator

Re: [ovs-dev] [PATCH v3 4/6] ovs-vtep: Store physical switch name globally.

2014-09-19 Thread Ariel Tubaltsev
Acked-by: Ariel Tubaltsev On 9/19/14 7:29 AM, "Gurucharan Shetty" wrote: >ovs-vtep is an emulator and it works only on one >physical switch. This switch name is stored in the variable >'ps_name' and then passed around. An upcoming commit requires >access to

Re: [ovs-dev] [PATCH v3 5/6] ovs-vtep: Use shlex module to split args.

2014-09-19 Thread Ariel Tubaltsev
Acked-by: Ariel Tubaltsev On 9/19/14 7:29 AM, "Gurucharan Shetty" wrote: >string.split() function splits a quoted string if there is a whitespace >inside the quote. >ex: The following code snippet will output ['printing', '"No', >'Dia

Re: [ovs-dev] [PATCH v3 3/6] ovs-vtep: Clear left-over local mac information.

2014-09-19 Thread Ariel Tubaltsev
Acked-by: Ariel Tubaltsev On 9/19/14 7:29 AM, "Gurucharan Shetty" wrote: >Before destroying a logical switch, cleanup any left over local >mac information in Ucast_Macs_Local or Mcast_Macs_Local table. >We need to do this to atleast cleanup the 'unknown-dst&#x

[ovs-dev] [PATCH] vtep: additions to BFD configuration and status reporting

2014-09-02 Thread Ariel
From: Ariel Tubaltsev This commit adds default values for some BFD configuration keys (bfd_config_local:bfd_dst_mac and bfd_params:enable). It also adds new BFD status keys (bfd_enabled and bfd_info). Signed-off-by: Ariel Tubaltsev Signed-off-by: Bruce Davie --- vtep/vtep.xml | 16

Re: [ovs-dev] [PATCH] vtep: additions to BFD configuration and status reporting

2014-09-02 Thread Ariel Tubaltsev
]. ... In case of a problem, set to an error message that reports what the remote endpoint's BFD session thinks is wrong. The error messages are defined in section 4.1 of [RFC 5880]. Ariel From: Alex Wang mailto:al...@nicira.com>> Date: Tuesday,

[ovs-dev] [PATCH] vtep: additions to BFD configuration and status reporting

2014-09-02 Thread Ariel Tubaltsev
Sending patch as attachment, to avoid mangling by mail client Ariel ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev