om release notes
http://openvswitch.org/releases/NEWS-2.6.0.
-al-
From: Jarno Rajahalme
Sent: Wednesday, October 12, 2016 11:57 PM
To: Ben Pfaff
Cc: Andrej Leitner; discuss@openvswitch.org
Subject: Re: [ovs-discuss] OpenFlow 1.3+
> On Oct 12, 2016, at
On Wed, Oct 12, 2016 at 03:41:45PM -0700, Jarno Rajahalme wrote:
>
> > On Oct 12, 2016, at 2:57 PM, Jarno Rajahalme wrote:
> >
> >>
> >> On Oct 12, 2016, at 9:10 AM, Ben Pfaff wrote:
> >>
> >> On Wed, Oct 12, 2016 at 01:27:46PM +, Andrej Leitner wrote:
> >>> - what does it mean OpenFlow 1
> On Oct 12, 2016, at 2:57 PM, Jarno Rajahalme wrote:
>
>>
>> On Oct 12, 2016, at 9:10 AM, Ben Pfaff wrote:
>>
>> On Wed, Oct 12, 2016 at 01:27:46PM +, Andrej Leitner wrote:
>>> - what does it mean OpenFlow 1.3+ in notes here
>>> http://openvswitch.org/releases/NEWS-2.6.0?
>>
>> OpenFlo
> On Oct 12, 2016, at 9:10 AM, Ben Pfaff wrote:
>
> On Wed, Oct 12, 2016 at 01:27:46PM +, Andrej Leitner wrote:
>> - what does it mean OpenFlow 1.3+ in notes here
>> http://openvswitch.org/releases/NEWS-2.6.0?
>
> OpenFlow 1.3 and later.
>
>> - there are bundles mentioned in connection wi
On Wed, Oct 12, 2016 at 01:27:46PM +, Andrej Leitner wrote:
> - what does it mean OpenFlow 1.3+ in notes here
> http://openvswitch.org/releases/NEWS-2.6.0?
OpenFlow 1.3 and later.
> - there are bundles mentioned in connection with OF 1.3+, is it possible to
> communicate with OVS
>
> in
Hi OVS folks,
I would like to ask some questions:
- what does it mean OpenFlow 1.3+ in notes here
http://openvswitch.org/releases/NEWS-2.6.0?
- there are bundles mentioned in connection with OF 1.3+, is it possible to
communicate with OVS
in OFP v1.3 but use some features from higher versi
Please don't drop the mailing list.
On Mon, Apr 18, 2016 at 11:24:22PM -0400, Rüdiger Birkner wrote:
> I see. This requires me to use OFv1.5, right?
Yes.
We'd take patches, if you want to make it available in earlier versions.
> Is there a way to configure ovs to use the five-tuple and then
>
I see. This requires me to use OFv1.5, right? Is there a way to configure
ovs to use the five-tuple and then whenever I install a group of type
select, it automatically use the five-tuple? For my application it is not
necessary that the controller is able to change the selection method.
2016-04-18
On Mon, Apr 18, 2016 at 04:57:16PM -0400, Rüdiger Birkner wrote:
> I am planning to use the OF 1.3 select group feature. It is important for
> my application that the buckets are assigned based on the five tuple (or at
> least the mac and ip addresses). Is the selection of the bucket still based
>
I am planning to use the OF 1.3 select group feature. It is important for
my application that the buckets are assigned based on the five tuple (or at
least the mac and ip addresses). Is the selection of the bucket still based
just on the nw_dst or has it been changed to use the five tuple?
Thanks Ben!
On 5/20/15, 6:43 PM, "Ben Pfaff" wrote:
>On Tue, May 19, 2015 at 01:57:57PM -0500, David Evans wrote:
>> I¹d like to implement a custom match on my custom ether_type, custom
>>layer
>> 2.5 value (not VLAN/MPLS etc.)
>> I understand that I need to modify at least:
>> * match.c with
On Tue, May 19, 2015 at 01:57:57PM -0500, David Evans wrote:
> I¹d like to implement a custom match on my custom ether_type, custom layer
> 2.5 value (not VLAN/MPLS etc.)
> I understand that I need to modify at least:
> * match.c with match_set* functions and add to the flow¹ struct my foomatch
Hi Discuss Group.
I¹d like to implement a custom match on my custom ether_type, custom layer
2.5 value (not VLAN/MPLS etc.)
I understand that I need to modify at least:
* match.c with match_set* functions and add to the flow¹ struct my foomatch
variable.
* Meta-flow.c with all the behaviors I
On Thu, Aug 14, 2014 at 10:06:34PM -0700, Srini Seetharaman wrote:
> > > If not I was thinking of coding up a patch that would replace the
> > > current dl_dst hash with a function that chose the tuple based on type
> > > of traffic. If the flow is a TCP or UDP one the new function would hash
> > >
> > If not I was thinking of coding up a patch that would replace the
> > current dl_dst hash with a function that chose the tuple based on type
> > of traffic. If the flow is a TCP or UDP one the new function would hash
> > based on the 5-tuple. Other traffic would just use the dl_dst based
> > ha
On Thu, May 29, 2014 at 05:23:45PM -0700, Chris Small wrote:
> I am taking a look at using OVS to load balance traffic over a number of
> ports. I was initially thinking of implementing the application by using
> group tables with type=select but the fact that the current OVS code
> uses dl_dst as
I am taking a look at using OVS to load balance traffic over a number of
ports. I was initially thinking of implementing the application by using
group tables with type=select but the fact that the current OVS code
uses dl_dst as the basis of the hash complicates the implementation.
This is especia
On 23 May 2014 15:05, Gustavo Miotto wrote:
> Hello,
>
> I have some questions regarding the running behavior of select group type :
> - How does the OVS select the bucket?
>
It looks like it's based on the ethernet destination:
https://github.com/openvswitch/ovs/blob/master/ofproto%2Fofproto-d
On Fri, May 23, 2014 at 11:05 AM, Gustavo Miotto
wrote:
> Hello,
>
> I have some questions regarding the running behavior of select group type :
> - How does the OVS select the bucket?
>
> I was testing an environment where I have a group with 3 buckets, each
> bucket with weight of 33 and an out
Hello,
I have some questions regarding the running behavior of select group type :
- How does the OVS select the bucket?
I was testing an environment where I have a group with 3 buckets, each
bucket with weight of 33 and an output action to a different port. I was
expecting that the select type
Hello,
I have some questions regarding the usage of groups with OpenFlow 1.3 in
Open vSwitch 2.1.0, more precisely with Fast Failover:
- How does Open vSwitch monitor if a bucket (assigned to an output port,
for example) is alive or not?
- How can one test the fast failover mechanism, e.
you will find a file OPENFLOW-1.1+ in Openvswitch-1.11.0 directory for the
same
Regards
Neeraj
On Tue, Jan 28, 2014 at 11:01 AM, sonia verma wrote:
> Hi all
>
> I want to know about the openflow 1.3 features which openvswitch 1.11 can
> support.
> Can you help regarding this.
>
>
> Thanks..
> s
Hi all
I want to know about the openflow 1.3 features which openvswitch 1.11 can
support.
Can you help regarding this.
Thanks..
sonia
___
discuss mailing list
discuss@openvswitch.org
http://openvswitch.org/mailman/listinfo/discuss
Hi ..
Thanks for your support.
I'm currently using Opendaylight Controller and I need to verify its
Openflow 1.3 support.
Thanks
On Tue, Jan 14, 2014 at 12:39 PM, Lori Jakab wrote:
> On 01/14/2014 09:01 AM, abhishek jain wrote:
> > Hi all..
> >
> > I'm using openvswitch 1.11 and trying to c
On 01/14/2014 09:01 AM, abhishek jain wrote:
> Hi all..
>
> I'm using openvswitch 1.11 and trying to configure openflow 1.3 with it
> by using the below command..
>
> ovs-vsctl set bridge br0 protocols=OpenFlow13
>
> After the above command,the status of the bridge is as follows..
>
> ovs-vsct
On Tue, Jan 14, 2014 at 12:31:15PM +0530, abhishek jain wrote:
> However when I dump-flows using ovs-ofctl dump-flows br0 command,I get the
> below output...
>
> ovs-ofctl dump-flows br0
> 2013-10-29T07:26:53Z|1|vconn|WARN|unix:/openvswitch_utils/var/run/openvswitch/br0.mgmt:
> version negotia
Hi all..
I'm using openvswitch 1.11 and trying to configure openflow 1.3 with it by
using the below command..
ovs-vsctl set bridge br0 protocols=OpenFlow13
After the above command,the status of the bridge is as follows..
ovs-vsctl list bridge
_uuid : 2fd7aa6c-69c8-4ad5-9ad9-92514
On Tue, Nov 19, 2013 at 02:29:06PM +0100, Windhya Rankothge wrote:
> We have the SDN network implemented using
> switch models: TP-Link TL-WR1043ND
> Firmware: OpenWRT 10.03 (backfire)
> OpenFlow: 1.3 from
> https://github.com/CPqD/ofsoftswitch13/wiki/OpenFlow-1.3-for-OpenWRTand
> the NOX cotroller
Hi all,
We have the SDN network implemented using
switch models: TP-Link TL-WR1043ND
Firmware: OpenWRT 10.03 (backfire)
OpenFlow: 1.3 from
https://github.com/CPqD/ofsoftswitch13/wiki/OpenFlow-1.3-for-OpenWRTand
the NOX cotroller from https://github.com/CPqD/nox13oflib
When I start the NOX controll
29 matches
Mail list logo