> On May 1, 2015, at 4:17 PM, Ben Pfaff wrote:
>
>
> +
> +/* Record as chassis or logical port. */
Just to make it a bit clearer, I would add that the latter is a "local logical
port".
> +/* Table 64, Priority 50.
> + * ==
> + *
> +
Hi,
I have a topology as the following:
br0(bridge):
eth0(MAC0),eth1(MAC1),eth2(MAC2)
I have the three NIC added to br0,Now I want to know the exactly mac address of
the br0. I have read some books and do some experiments. But I can't get the
right answer.Please help me to figure it out!
Thank u
CC: 张伟
Signed-off-by: Ben Pfaff
---
AUTHORS | 1 +
FAQ.md | 80 +
2 files changed, 81 insertions(+)
diff --git a/AUTHORS b/AUTHORS
index cff99e6..9db112d 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -360,6 +360,7 @@ likunyun
> On May 1, 2015, at 4:17 PM, Ben Pfaff wrote:
>
> This will allow upcoming code to refer to the logical inport and outport
> by symbolic names.
>
> Signed-off-by: Ben Pfaff
Is there a reason this needs to be a separate patch and not just folded into
patch 2 of this series where these fields
> On May 1, 2015, at 4:17 PM, Ben Pfaff wrote:
>
> -The integration bridge must be configured with failure mode ``secure'' to
> -avoid switching packets between isolated logical networks before
> -ovn-controller starts up. See Controller Failure
> -Settings in ovs-vsctl(8) for m
> On May 1, 2015, at 4:17 PM, Ben Pfaff wrote:
>
>
> +/* Adds a flow with the specified 'match' and 'actions' to the OpenFlow table
> + * numbered 'table_id' with the given 'priority'.
> + *
> + * This just assembles the desired flow table in memory. Nothing is actually
> + * sent to the switc
Recently we've had a number of reports on this mailing list that, when a
new port appears on an Open vSwitch switch, STP triggers a topology
change and start dropping packets for several seconds. After thinking
about this for a while, I think what's happening is that STP in OVS is
treating every p
> On May 1, 2015, at 4:17 PM, Ben Pfaff wrote:
>
> An upcoming patch will add the first user.
>
> Signed-off-by: Ben Pfaff
Signed-off-by: Justin Pettit
--Justin
___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev
> On May 1, 2015, at 4:17 PM, Ben Pfaff wrote:
>
> This is documented in ovn-architecture(7).
>
> Signed-off-by: Ben Pfaff
Acked-by: Justin Pettit
--Justin
___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev
> On May 1, 2015, at 4:17 PM, Ben Pfaff wrote:
>
> rconn_get_connection_seqno() is documented to change only when an rconn
> connects or disconnnects, but in fact it was also changing whenever an
> rconn went into or out of the "idle" state (following sending an echo
> request). This fixes the
> On May 1, 2015, at 4:17 PM, Ben Pfaff wrote:
> +/* Creates a new logical_datapath with the given 'uuid'. */
> +static struct logical_datapath *
> +ldp_create(const struct uuid *uuid)
> +{
> +static uint32_t next_integer = 1;
> +struct logical_datapath *ldp;
> +
> +ldp = xmalloc(siz
OVS correctly define skb_gso_segment() to handle MPLS and VLAN
segmentation correctly. But OVS also uses __skb_gso_segment() in
some cases. Following patch defines compat __skb_gso_segment()
to handle all segmentation cases.
Signed-off-by: Pravin B Shelar
---
datapath/linux/compat/gso.c
On Mon, May 4, 2015 at 2:10 PM, Vasiliy Tolstov wrote:
> So now stt fully present in current master?
>
Yes. It is available in master branch.
> 04 мая 2015 г. 23:25 пользователь "Pravin Shelar"
> написал:
>>
>> On Mon, May 4, 2015 at 9:52 AM, Jesse Gross wrote:
>> > On Sun, May 3, 2015 at 11:56
This patch creates a new subpackage for OVN, openvswitch-ovn. It also
installs systemd unit files for ovn-controller and ovn-northd.
If you want to run ovn-controller:
# systemctl start ovncontroller
If you want to run ovn-northd:
# systemctl start ovnnorthd
Both systemd units are cur
v1->v2:
- Change systemd units to run ovn-northd and ovn-controller directly
instead of using ovn-ctl. I kept ovn-ctl around anyway as it
seemed useful to provide as an option for integrating with systems
without systemd, similar to how ovs-ctl is used today.
[PATCH 1/2] Add ovn-ctl to
This patch introduces ovn-ctl, which is similar to ovs-ctl. I opted
for a new script as everything in OVN so far is nicely isolated, so a
new script seemed to make the most sense.
ovn-ctl supports a few different scenarios. If you'd like to run
ovn-controller on a host already running ovs:
On 05/04/2015 05:04 PM, Salvatore Orlando wrote:
> Thanks a lot Russell, this information are very useful.
>
> I'm not sure what you think of it, but I feel like a link to your blog
> post [1] might be very useful as well.
> This is what I've been following so far to get started on the OVN side
>
So now stt fully present in current master?
04 мая 2015 г. 23:25 пользователь "Pravin Shelar"
написал:
> On Mon, May 4, 2015 at 9:52 AM, Jesse Gross wrote:
> > On Sun, May 3, 2015 at 11:56 AM, Pravin B Shelar
> wrote:
> >> RHEL7 backported nf_hookfn from newer kernel. Handle compatibility
> >>
Thanks a lot Russell, this information are very useful.
I'm not sure what you think of it, but I feel like a link to your blog post
[1] might be very useful as well.
This is what I've been following so far to get started on the OVN side of
things.
It seems the information there complement and do n
On Mon, May 4, 2015 at 1:25 PM, Jesse Gross wrote:
> On Mon, May 4, 2015 at 12:48 PM, Pravin Shelar wrote:
>> On Mon, May 4, 2015 at 11:26 AM, Jesse Gross wrote:
>>> What was the change that bumps up the backport requirement from 3.16 to
>>> 3.19?
>>
>> MPLS offload is supported on 3.19 or newe
On Mon, May 4, 2015 at 12:48 PM, Pravin Shelar wrote:
> On Mon, May 4, 2015 at 11:26 AM, Jesse Gross wrote:
>> What was the change that bumps up the backport requirement from 3.16 to 3.19?
>
> MPLS offload is supported on 3.19 or newer.
OK, I remember - you made some critical bugfixes in 3.19 th
On Mon, May 4, 2015 at 9:52 AM, Jesse Gross wrote:
> On Sun, May 3, 2015 at 11:56 AM, Pravin B Shelar wrote:
>> RHEL7 backported nf_hookfn from newer kernel. Handle compatibility
>> by checking nf_hookfn declaration.
>>
>> Signed-off-by: Pravin B Shelar
>
> Acked-by: Jesse Gross
I pushed it to
On Mon, May 4, 2015 at 11:26 AM, Jesse Gross wrote:
> On Fri, May 1, 2015 at 7:00 PM, Pravin B Shelar wrote:
>> diff --git a/datapath/linux/compat/gso.c b/datapath/linux/compat/gso.c
>> index 552e748..f8a70d0 100644
>> --- a/datapath/linux/compat/gso.c
>> +++ b/datapath/linux/compat/gso.c
>> @@ -
From: cekargo...@hotmail.com
To: dev@openvswitch.org
Subject:
Date: Thu, 16 Apr 2015 13:27:48 -0500
Sra. Rosa Edwinsam
reciba un cálido abrazo y bendiciones en Cristo Jesús.
Me encuentro orando por su sanidad, esperando la pronta respuesta de mi Señor
todopoderoso
para usted, ya que para J
On Fri, May 1, 2015 at 7:00 PM, Pravin B Shelar wrote:
> diff --git a/datapath/linux/compat/gso.c b/datapath/linux/compat/gso.c
> index 552e748..f8a70d0 100644
> --- a/datapath/linux/compat/gso.c
> +++ b/datapath/linux/compat/gso.c
> @@ -219,6 +219,9 @@ static struct sk_buff *tnl_skb_gso_segment(s
I put together some documentation on how to test OVN with OpenStack.
It's intended to be usable even if you don't have a lot of OpenStack
experience.
http://networking-ovn.readthedocs.org/en/latest/testing.html
Right now it only covers spinning up a single host test environment.
We're working on
On 05/01/2015 07:17 PM, Ben Pfaff wrote:
> An upcoming patch will add the first user.
>
> Signed-off-by: Ben Pfaff
Acked-by: Russell Bryant
--
Russell Bryant
___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev
On 05/01/2015 07:17 PM, Ben Pfaff wrote:
> rconn_get_connection_seqno() is documented to change only when an rconn
> connects or disconnnects, but in fact it was also changing whenever an
> rconn went into or out of the "idle" state (following sending an echo
> request). This fixes the problem.
>
On 05/01/2015 07:17 PM, Ben Pfaff wrote:
> This is documented in ovn-architecture(7).
>
> Signed-off-by: Ben Pfaff
Acked-by: Russell Bryant
--
Russell Bryant
___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev
On Mon, May 04, 2015 at 08:23:16AM -0700, Gurucharan Shetty wrote:
> On Sun, May 3, 2015 at 6:54 PM, Ben Pfaff wrote:
> > On Fri, May 01, 2015 at 04:17:27PM -0700, Ben Pfaff wrote:
> >> Signed-off-by: Ben Pfaff
> >
> > I introduced a bug while applying Justin's comments and didn't take the
> > ti
On Sun, May 3, 2015 at 11:56 AM, Pravin B Shelar wrote:
> RHEL7 backported nf_hookfn from newer kernel. Handle compatibility
> by checking nf_hookfn declaration.
>
> Signed-off-by: Pravin B Shelar
Acked-by: Jesse Gross
___
dev mailing list
dev@openvsw
This patch fixes the warning when datapath-windows/misc/OVS.psm1 is
imported.
Signed-off-by: Alin Gabriel Serdean
Reported-by: Hemanth Kumar Mantri
Reported-at: https://github.com/openvswitch/ovs-issues/issues/69
---
datapath-windows/misc/OVS.psm1 | 8 +---
1 file changed, 5 insertions(+),
On Sun, May 03, 2015 at 08:33:04PM -0600, sandesh shrestha wrote:
> I want to contribute to openvswitch. I came across this missing feature in
> FAQ and want to implement this feature.
>
> *"Q: It looks like each of the interfaces in my bonded port shows up as an
> individual OpenFlow port. Is tha
This patch implements two functionalities needed for an active manager:
1. ARP lookup
2. Next hop
The first functionality relies on the internal Windows API:
https://msdn.microsoft.com/en-us/library/windows/desktop/aa365956%28v=vs.85%29.aspx
The second one:
https://msdn.microsoft.com/en-us/librar
On Sun, May 3, 2015 at 6:54 PM, Ben Pfaff wrote:
> On Fri, May 01, 2015 at 04:17:27PM -0700, Ben Pfaff wrote:
>> Signed-off-by: Ben Pfaff
>
> I introduced a bug while applying Justin's comments and didn't take the
> time to retest, but Guru pointed out the bug. Here's an incremental
> that shoul
Hello all,
I have network whose architecture is as shown below.
As there are loops in the network ,I'm running STP on the controller which is
RYU.
But the problem is that even though the openvswitches receive the bpdu
configuration packets,they are being disabled.
Also the openvswitches are runn
I will remove the copyright and respin the patches!
Alin.
-Mesaj original-
De la: Gurucharan Shetty [mailto:shet...@nicira.com]
Trimis: Thursday, April 30, 2015 12:34 AM
Către: Alin Serdean
Cc: dev@openvswitch.org
Subiect: Re: [ovs-dev] [PATCH v3 1/4] Windows installer
On Wed, Apr 29, 2
37 matches
Mail list logo