chenyangseamoon | 4 Jul 2012 03:07
Favicon

Does FlowVisor support OpenFlow1.1?

Hi,
   Does FlowVisor support OpenFlow1.1 version? If not, which part do I have to modified to support the OpenFlow1.1 protocol?
   I used the OpenFlow soft switch1.1 which was developed by Erricsson of11softswitch.
 
Best Regards
Chen Yang
 
2012-07-04
chenyangseamoon
<div>
<div>Hi,</div>
<div>&nbsp;&nbsp; Does FlowVisor support OpenFlow1.1 
version? If not,&nbsp;which part do I have to modified to support the 
OpenFlow1.1 protocol?</div>
<div>&nbsp;&nbsp;&nbsp;I used the OpenFlow soft 
switch1.1 which was developed by Erricsson of11softswitch.</div>
<div>&nbsp;</div>
<div>Best Regards</div>
<div>Chen Yang</div>
<div>&nbsp;</div>
<div align="left">2012-07-04</div>

<div><span>chenyangseamoon</span></div>
</div>
Rob Sherwood | 4 Jul 2012 04:00
Favicon

Re: Does FlowVisor support OpenFlow1.1?

On Tue, Jul 3, 2012 at 6:07 PM, chenyangseamoon <chenyangseamoon@...> wrote:
> Hi,
>    Does FlowVisor support OpenFlow1.1 version? If not, which part do I have
> to modified to support the OpenFlow1.1 protocol?
>    I used the OpenFlow soft switch1.1 which was developed by Erricsson
> of11softswitch.

FlowVisor does not yet support OF1.1 (or beyond).  To update FlowVisor
to OF1.1 would be a pretty substantial change, but minimally you would
have to rewrite a lot of openflowj, which the floodlight project is
looking to do also (it's shared code between flowvisor and
floodlight).

Hope this helps,

- Rob
.
Zoltán Lajos Kis | 4 Jul 2012 09:15
Picon
Favicon
Gravatar

Re: Does FlowVisor support OpenFlow1.1?

 

> -----Original Message-----
> From: openflow-discuss-bounces <at> lists.stanford.edu 
> [mailto:openflow-discuss-bounces <at> lists.stanford.edu] On 
> Behalf Of Rob Sherwood
> Sent: Wednesday, July 04, 2012 4:00 AM
> To: chenyangseamoon
> Cc: openflow-discuss讨论组
> Subject: Re: [openflow-discuss] Does FlowVisor support OpenFlow1.1?
> 
> On Tue, Jul 3, 2012 at 6:07 PM, chenyangseamoon 
> <chenyangseamoon <at> 163.com> wrote:
> > Hi,
> >    Does FlowVisor support OpenFlow1.1 version? If not, 
> which part do I 
> > have to modified to support the OpenFlow1.1 protocol?
> >    I used the OpenFlow soft switch1.1 which was developed 
> by Erricsson 
> > of11softswitch.
> 
> FlowVisor does not yet support OF1.1 (or beyond).  To update 
> FlowVisor to OF1.1 would be a pretty substantial change, but 
> minimally you would have to rewrite a lot of openflowj, which 
> the floodlight project is looking to do also (it's shared 
> code between flowvisor and floodlight).
> 
> Hope this helps,
> 
> - Rob
> .

FWIW, I think you should first figure out how FlowVisor should work with
OF 1.1 (or beyond).

Having multiple tables raises some issues. Controllers can now use a chain
of flow entries (in subsequent tables) to inspect, modify and forward packets.
Throughout this chain of flows the protocol stack of the packet can change
substantially, even to the point, where it "temporarily" falls outside the
assigned flow space.

For example, think of a slice that handles all MPLS traffic, but nothing else.
If you want to inspect the IP payload of an incoming MPLS packet, you need to
first pop the MPLS label, then inspect the IPv4 header, then push the label back.
Here, in the second flow you are actually matching on IP packets, which is not
part of your slice.

As OpenFlow does not provide transaction semantics, those chains of flows will be
installed as independent flow entries. So FlowVisor will have to enforce the flow
space on each entry independently, messing up pretty much everything.

The only solution I can think of at the moment is that FlowVisor keeps track of
all installed flows (both the original and the rewritten/enforced forms). Then,
Whenever a controller installs a new flow entry, the FlowVisor executes some sort
of packet-flow analysis on all the original flows, compares it to the rewritten
ones, and if it finds that an enforced version can be relieved, it also sends
down a flow-mod to modify it back to the original (or a less enforced) version.
This will only cause temporary packet mishandling, which you might live with, or not.

The group table probably also raises similar issues in relation with the multiple
tables. Also, in group tables FlowVisor will have to implement a group ID mapping
to avoid group id collisions between controllers.

So indeed, this is a pretty substantial change, if you want it to behave correctly.

Regards,
Zoltan.
_______________________________________________
openflow-discuss mailing list
openflow-discuss <at> lists.stanford.edu
https://mailman.stanford.edu/mailman/listinfo/openflow-discuss
chenyangseamoon | 16 Jul 2012 08:36
Favicon

回复: Re: Does FlowVisor support OpenFlow1.1?

Hi,
 I read FlowVisor's Code. I found an openflow.jar in the source code.What function does it support? Does it implement the OpenFlow protocol between OpenFlow Switch and OpenFlow Controller like NOX? If I want to modify FlowVisor so that it can support OpenFlow1.1 Soft switch, do I have to rewrite this part of souce code to support OpenFlow1.1 protocol? Where can I get the source code of openflow.jar?
  What's more, what is openflowj as you mentioned? Is it this project? https://openflow.stanford.edu/fisheye/browse/OpenFlowJ And is it  openflow.jar's souce code?
 
Best Regards
 Chen Yang 
 
2012-07-16
chenyangseamoon
发件人:Rob Sherwood
发送时间:2012-07-04 10:00
主题:Re: [openflow-discuss] Does FlowVisor support OpenFlow1.1?
收件人:"chenyangseamoon"<chenyangseamoon <at> 163.com>
抄送:"openflow-discuss讨论组"<openflow-discuss <at> lists.stanford.edu>
 
On Tue, Jul 3, 2012 at 6:07 PM, chenyangseamoon <chenyangseamoon <at> 163.com> wrote: 
> Hi, 
>    Does FlowVisor support OpenFlow1.1 version? If not, which part do I have 
> to modified to support the OpenFlow1.1 protocol? 
>    I used the OpenFlow soft switch1.1 which was developed by Erricsson 
> of11softswitch. 
 
FlowVisor does not yet support OF1.1 (or beyond).  To update FlowVisor 
to OF1.1 would be a pretty substantial change, but minimally you would 
have to rewrite a lot of openflowj, which the floodlight project is 
looking to do also (it's shared code between flowvisor and 
floodlight). 
 
Hope this helps, 
 
- Rob 
<div>
<div>Hi, </div>
<div>&nbsp;I read FlowVisor's Code. I found an openflow.jar in the source 
code.What function does it support? Does it implement the OpenFlow protocol 
between OpenFlow Switch and OpenFlow Controller like NOX? If I want 
to&nbsp;modify FlowVisor so that it can support OpenFlow1.1 Soft switch, do I 
have to rewrite this part of souce code to support OpenFlow1.1 protocol? Where 
can I get the source code of openflow.jar?</div>
<div>&nbsp; What's more, what is openflowj as you mentioned? Is it this 
project?&nbsp;<a href="https://openflow.stanford.edu/fisheye/browse/OpenFlowJ">https://openflow.stanford.edu/fisheye/browse/OpenFlowJ</a>&nbsp;And 
is it &nbsp;openflow.jar's&nbsp;souce code?</div>
<div>&nbsp;</div>
<div>Best Regards</div>
<div>&nbsp;Chen Yang&nbsp;</div>
<div>&nbsp;</div>
<div align="left">2012-07-16</div>
<div align="left">
</div>
<div align="left"><span>chenyangseamoon</span></div>
<div>
</div>
<div>&#21457;&#20214;&#20154;&#65306;Rob Sherwood</div>
<div>&#21457;&#36865;&#26102;&#38388;&#65306;2012-07-04&nbsp;10:00</div>
<div>&#20027;&#39064;&#65306;Re: [openflow-discuss] Does 
FlowVisor support OpenFlow1.1?</div>
<div>&#25910;&#20214;&#20154;&#65306;"chenyangseamoon"&lt;chenyangseamoon <at> 163.com&gt;</div>
<div>&#25220;&#36865;&#65306;"openflow-discuss&#35752;&#35770;&#32452;"&lt;openflow-discuss <at> lists.stanford.edu&gt;</div>
<div>&nbsp;</div>
<div>
<div>On&nbsp;Tue,&nbsp;Jul&nbsp;3,&nbsp;2012&nbsp;at&nbsp;6:07&nbsp;PM,&nbsp;chenyangseamoon&nbsp;&lt;chenyangseamoon <at> 163.com&gt;&nbsp;wrote:&nbsp;</div>
<div>&gt;&nbsp;Hi,&nbsp;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp;Does&nbsp;FlowVisor&nbsp;support&nbsp;OpenFlow1.1&nbsp;version?&nbsp;If&nbsp;not,&nbsp;which&nbsp;part&nbsp;do&nbsp;I&nbsp;have&nbsp;</div>
<div>&gt;&nbsp;to&nbsp;modified&nbsp;to&nbsp;support&nbsp;the&nbsp;OpenFlow1.1&nbsp;protocol?&nbsp;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp;I&nbsp;used&nbsp;the&nbsp;OpenFlow&nbsp;soft&nbsp;switch1.1&nbsp;which&nbsp;was&nbsp;developed&nbsp;by&nbsp;Erricsson&nbsp;</div>
<div>&gt;&nbsp;of11softswitch.&nbsp;</div>
<div>&nbsp;</div>
<div>FlowVisor&nbsp;does&nbsp;not&nbsp;yet&nbsp;support&nbsp;OF1.1&nbsp;(or&nbsp;beyond).&nbsp;&nbsp;To&nbsp;update&nbsp;FlowVisor&nbsp;</div>
<div>to&nbsp;OF1.1&nbsp;would&nbsp;be&nbsp;a&nbsp;pretty&nbsp;substantial&nbsp;change,&nbsp;but&nbsp;minimally&nbsp;you&nbsp;would&nbsp;</div>
<div>have&nbsp;to&nbsp;rewrite&nbsp;a&nbsp;lot&nbsp;of&nbsp;openflowj,&nbsp;which&nbsp;the&nbsp;floodlight&nbsp;project&nbsp;is&nbsp;</div>
<div>looking&nbsp;to&nbsp;do&nbsp;also&nbsp;(it's&nbsp;shared&nbsp;code&nbsp;between&nbsp;flowvisor&nbsp;and&nbsp;</div>
<div>floodlight).&nbsp;</div>
<div>&nbsp;</div>
<div>Hope&nbsp;this&nbsp;helps,&nbsp;</div>
<div>&nbsp;</div>
<div>-&nbsp;Rob&nbsp;</div>
<div>.&nbsp;</div>
</div>
</div>
chenyangseamoon | 16 Jul 2012 08:56
Favicon

回复: 回复: Re: Does FlowVisor support OpenFlow1.1?

 
 
2012-07-16
chenyangseamoon
发件人:chenyangseamoon
发送时间:2012-07-16 14:36
主题:回复: Re: [openflow-discuss] Does FlowVisor support OpenFlow1.1?
收件人:"Rob Sherwood"<rob.sherwood <at> bigswitch.com>
抄送:"openflow-discuss讨论组"<openflow-discuss <at> lists.stanford.edu>
 
Hi,
 I read FlowVisor's Code. I found an openflow.jar in the source code.What function does it support? Does it implement the OpenFlow protocol between OpenFlow Switch and OpenFlow Controller like NOX? If I want to modify FlowVisor so that it can support OpenFlow1.1 Soft switch, do I have to rewrite this part of souce code to support OpenFlow1.1 protocol? Where can I get the source code of openflow.jar?
  What's more, what is openflowj as you mentioned? Is it this project? https://openflow.stanford.edu/fisheye/browse/OpenFlowJ And is it  openflow.jar's souce code?
 
Best Regards
 Chen Yang 
 
2012-07-16
chenyangseamoon
发件人:Rob Sherwood
发送时间:2012-07-04 10:00
主题:Re: [openflow-discuss] Does FlowVisor support OpenFlow1.1?
收件人:"chenyangseamoon"<chenyangseamoon <at> 163.com>
抄送:"openflow-discuss讨论组"<openflow-discuss <at> lists.stanford.edu>
 
On Tue, Jul 3, 2012 at 6:07 PM, chenyangseamoon <chenyangseamoon <at> 163.com> wrote: 
> Hi, 
>    Does FlowVisor support OpenFlow1.1 version? If not, which part do I have 
> to modified to support the OpenFlow1.1 protocol? 
>    I used the OpenFlow soft switch1.1 which was developed by Erricsson 
> of11softswitch. 
 
FlowVisor does not yet support OF1.1 (or beyond).  To update FlowVisor 
to OF1.1 would be a pretty substantial change, but minimally you would 
have to rewrite a lot of openflowj, which the floodlight project is 
looking to do also (it's shared code between flowvisor and 
floodlight). 
 
Hope this helps, 
 
- Rob 
<div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div align="left">2012-07-16</div>
<div align="left">
</div>
<div align="left"><span>chenyangseamoon</span></div>
<div>
</div>
<div>&#21457;&#20214;&#20154;&#65306;chenyangseamoon</div>
<div>&#21457;&#36865;&#26102;&#38388;&#65306;2012-07-16&nbsp;14:36</div>
<div>&#20027;&#39064;&#65306;&#22238;&#22797;: Re: [openflow-discuss] 
Does FlowVisor support OpenFlow1.1?</div>
<div>&#25910;&#20214;&#20154;&#65306;"Rob 
Sherwood"&lt;rob.sherwood <at> bigswitch.com&gt;</div>
<div>&#25220;&#36865;&#65306;"openflow-discuss&#35752;&#35770;&#32452;"&lt;openflow-discuss <at> lists.stanford.edu&gt;</div>
<div>&nbsp;</div>
<div>
<div>Hi, </div>
<div>&nbsp;I read FlowVisor's Code. I found an openflow.jar in the source 
code.What function does it support? Does it implement the OpenFlow protocol 
between OpenFlow Switch and OpenFlow Controller like NOX? If I want 
to&nbsp;modify FlowVisor so that it can support OpenFlow1.1 Soft switch, do I 
have to rewrite this part of souce code to support OpenFlow1.1 protocol? Where 
can I get the source code of openflow.jar?</div>
<div>&nbsp; What's more, what is openflowj as you mentioned? Is it this 
project?&nbsp;<a href="https://openflow.stanford.edu/fisheye/browse/OpenFlowJ">https://openflow.stanford.edu/fisheye/browse/OpenFlowJ</a>&nbsp;And 
is it &nbsp;openflow.jar's&nbsp;souce code?</div>
<div>&nbsp;</div>
<div>Best Regards</div>
<div>&nbsp;Chen Yang&nbsp;</div>
<div>&nbsp;</div>
<div align="left">2012-07-16</div>
<div align="left">
</div>
<div align="left"><span>chenyangseamoon</span></div>
<div>
</div>
<div>&#21457;&#20214;&#20154;&#65306;Rob Sherwood</div>
<div>&#21457;&#36865;&#26102;&#38388;&#65306;2012-07-04&nbsp;10:00</div>
<div>&#20027;&#39064;&#65306;Re: [openflow-discuss] Does 
FlowVisor support OpenFlow1.1?</div>
<div>&#25910;&#20214;&#20154;&#65306;"chenyangseamoon"&lt;chenyangseamoon <at> 163.com&gt;</div>
<div>&#25220;&#36865;&#65306;"openflow-discuss&#35752;&#35770;&#32452;"&lt;openflow-discuss <at> lists.stanford.edu&gt;</div>
<div>&nbsp;</div>
<div>
<div>On&nbsp;Tue,&nbsp;Jul&nbsp;3,&nbsp;2012&nbsp;at&nbsp;6:07&nbsp;PM,&nbsp;chenyangseamoon&nbsp;&lt;chenyangseamoon <at> 163.com&gt;&nbsp;wrote:&nbsp;</div>
<div>&gt;&nbsp;Hi,&nbsp;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp;Does&nbsp;FlowVisor&nbsp;support&nbsp;OpenFlow1.1&nbsp;version?&nbsp;If&nbsp;not,&nbsp;which&nbsp;part&nbsp;do&nbsp;I&nbsp;have&nbsp;</div>
<div>&gt;&nbsp;to&nbsp;modified&nbsp;to&nbsp;support&nbsp;the&nbsp;OpenFlow1.1&nbsp;protocol?&nbsp;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp;I&nbsp;used&nbsp;the&nbsp;OpenFlow&nbsp;soft&nbsp;switch1.1&nbsp;which&nbsp;was&nbsp;developed&nbsp;by&nbsp;Erricsson&nbsp;</div>
<div>&gt;&nbsp;of11softswitch.&nbsp;</div>
<div>&nbsp;</div>
<div>FlowVisor&nbsp;does&nbsp;not&nbsp;yet&nbsp;support&nbsp;OF1.1&nbsp;(or&nbsp;beyond).&nbsp;&nbsp;To&nbsp;update&nbsp;FlowVisor&nbsp;</div>
<div>to&nbsp;OF1.1&nbsp;would&nbsp;be&nbsp;a&nbsp;pretty&nbsp;substantial&nbsp;change,&nbsp;but&nbsp;minimally&nbsp;you&nbsp;would&nbsp;</div>
<div>have&nbsp;to&nbsp;rewrite&nbsp;a&nbsp;lot&nbsp;of&nbsp;openflowj,&nbsp;which&nbsp;the&nbsp;floodlight&nbsp;project&nbsp;is&nbsp;</div>
<div>looking&nbsp;to&nbsp;do&nbsp;also&nbsp;(it's&nbsp;shared&nbsp;code&nbsp;between&nbsp;flowvisor&nbsp;and&nbsp;</div>
<div>floodlight).&nbsp;</div>
<div>&nbsp;</div>
<div>Hope&nbsp;this&nbsp;helps,&nbsp;</div>
<div>&nbsp;</div>
<div>-&nbsp;Rob&nbsp;</div>
<div>.&nbsp;</div>
</div>
</div>
</div>
Ali Al-Shabibi | 16 Jul 2012 18:12
Picon
Favicon

Re: 回复: Re: Does FlowVisor support OpenFlow1.1?

Hi Chen,

You can get openflowj's source code from git clone git://gitosis.stanford.edu/openflowj.git. Openflowj supports openflow 1.0. It is just the java openflow bindings and not a controller. You would need to add significant changes to openflowj to make it work with 1.1.

Hope this helps.

--
Ali Al-Shabibi (sent from handheld)

On 15 juil. 2012, at 23:36, "chenyangseamoon" <chenyangseamoon <at> 163.com> wrote:

body{FONT-SIZE:12pt; FONT-FAMILY:宋体,serif;}
Hi,
 I read FlowVisor's Code. I found an openflow.jar in the source code.What function does it support? Does it implement the OpenFlow protocol between OpenFlow Switch and OpenFlow Controller like NOX? If I want to modify FlowVisor so that it can support OpenFlow1.1 Soft switch, do I have to rewrite this part of souce code to support OpenFlow1.1 protocol? Where can I get the source code of openflow.jar?
  What's more, what is openflowj as you mentioned? Is it this project? https://openflow.stanford.edu/fisheye/browse/OpenFlowJ And is it  openflow.jar's souce code?
 
Best Regards
 Chen Yang 
 
2012-07-16
chenyangseamoon
发件人:Rob Sherwood
发送时间:2012-07-04 10:00
主题:Re: [openflow-discuss] Does FlowVisor support OpenFlow1.1?
收件人:"chenyangseamoon"<chenyangseamoon <at> 163.com>
抄送:"openflow-discuss讨论组"<openflow-discuss <at> lists.stanford.edu>
 
On Tue, Jul 3, 2012 at 6:07 PM, chenyangseamoon <chenyangseamoon <at> 163.com> wrote: 
> Hi, 
>    Does FlowVisor support OpenFlow1.1 version? If not, which part do I have 
> to modified to support the OpenFlow1.1 protocol? 
>    I used the OpenFlow soft switch1.1 which was developed by Erricsson 
> of11softswitch. 
 
FlowVisor does not yet support OF1.1 (or beyond).  To update FlowVisor 
to OF1.1 would be a pretty substantial change, but minimally you would 
have to rewrite a lot of openflowj, which the floodlight project is 
looking to do also (it's shared code between flowvisor and 
floodlight). 
 
Hope this helps, 
 
- Rob 
_______________________________________________
openflow-discuss mailing list
openflow-discuss <at> lists.stanford.edu
https://mailman.stanford.edu/mailman/listinfo/openflow-discuss
<div>
<div>Hi Chen,</div>
<div><br></div>
<div>You can get openflowj's source code from&nbsp;git clone git://gitosis.stanford.edu/openflowj.git. Openflowj supports openflow 1.0. It is just the java openflow bindings and not a controller. You would need to add significant changes to openflowj to make it work with 1.1.</div>
<div><br></div>
<div>Hope this helps.<br><br>--<div>Ali Al-Shabibi (sent from handheld)</div>
</div>
<div>
<br>On 15 juil. 2012, at 23:36, "chenyangseamoon" &lt;<a href="mailto:chenyangseamoon <at> 163.com">chenyangseamoon <at> 163.com</a>&gt; wrote:<br><br>
</div>
<div></div>
<blockquote type="cite"><div>



			body{FONT-SIZE:12pt; FONT-FAMILY:&#23435;&#20307;,serif;}		<div>Hi, </div>
<div>&nbsp;I read FlowVisor's Code. I found an openflow.jar in the source 
code.What function does it support? Does it implement the OpenFlow protocol 
between OpenFlow Switch and OpenFlow Controller like NOX? If I want 
to&nbsp;modify FlowVisor so that it can support OpenFlow1.1 Soft switch, do I 
have to rewrite this part of souce code to support OpenFlow1.1 protocol? Where 
can I get the source code of openflow.jar?</div>
<div>&nbsp; What's more, what is openflowj as you mentioned? Is it this 
project?&nbsp;<a href="https://openflow.stanford.edu/fisheye/browse/OpenFlowJ">https://openflow.stanford.edu/fisheye/browse/OpenFlowJ</a>&nbsp;And 
is it &nbsp;openflow.jar's&nbsp;souce code?</div>
<div>&nbsp;</div>
<div>Best Regards</div>
<div>&nbsp;Chen Yang&nbsp;</div>
<div>&nbsp;</div>
<div align="left">2012-07-16</div>
<div align="left">
</div>
<div align="left"><span>chenyangseamoon</span></div>
<div>
</div>
<div>&#21457;&#20214;&#20154;&#65306;Rob Sherwood</div>
<div>&#21457;&#36865;&#26102;&#38388;&#65306;2012-07-04&nbsp;10:00</div>
<div>&#20027;&#39064;&#65306;Re: [openflow-discuss] Does 
FlowVisor support OpenFlow1.1?</div>
<div>&#25910;&#20214;&#20154;&#65306;"chenyangseamoon"&lt;<a href="mailto:chenyangseamoon <at> 163.com">chenyangseamoon <at> 163.com</a>&gt;</div>
<div>&#25220;&#36865;&#65306;"openflow-discuss&#35752;&#35770;&#32452;"&lt;<a href="mailto:openflow-discuss <at> lists.stanford.edu">openflow-discuss <at> lists.stanford.edu</a>&gt;</div>
<div>&nbsp;</div>
<div>
<div>On&nbsp;Tue,&nbsp;Jul&nbsp;3,&nbsp;2012&nbsp;at&nbsp;6:07&nbsp;PM,&nbsp;chenyangseamoon&nbsp;&lt;<a href="mailto:chenyangseamoon <at> 163.com">chenyangseamoon <at> 163.com</a>&gt;&nbsp;wrote:&nbsp;</div>
<div>&gt;&nbsp;Hi,&nbsp;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp;Does&nbsp;FlowVisor&nbsp;support&nbsp;OpenFlow1.1&nbsp;version?&nbsp;If&nbsp;not,&nbsp;which&nbsp;part&nbsp;do&nbsp;I&nbsp;have&nbsp;</div>
<div>&gt;&nbsp;to&nbsp;modified&nbsp;to&nbsp;support&nbsp;the&nbsp;OpenFlow1.1&nbsp;protocol?&nbsp;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp;I&nbsp;used&nbsp;the&nbsp;OpenFlow&nbsp;soft&nbsp;switch1.1&nbsp;which&nbsp;was&nbsp;developed&nbsp;by&nbsp;Erricsson&nbsp;</div>
<div>&gt;&nbsp;of11softswitch.&nbsp;</div>
<div>&nbsp;</div>
<div>FlowVisor&nbsp;does&nbsp;not&nbsp;yet&nbsp;support&nbsp;OF1.1&nbsp;(or&nbsp;beyond).&nbsp;&nbsp;To&nbsp;update&nbsp;FlowVisor&nbsp;</div>
<div>to&nbsp;OF1.1&nbsp;would&nbsp;be&nbsp;a&nbsp;pretty&nbsp;substantial&nbsp;change,&nbsp;but&nbsp;minimally&nbsp;you&nbsp;would&nbsp;</div>
<div>have&nbsp;to&nbsp;rewrite&nbsp;a&nbsp;lot&nbsp;of&nbsp;openflowj,&nbsp;which&nbsp;the&nbsp;floodlight&nbsp;project&nbsp;is&nbsp;</div>
<div>looking&nbsp;to&nbsp;do&nbsp;also&nbsp;(it's&nbsp;shared&nbsp;code&nbsp;between&nbsp;flowvisor&nbsp;and&nbsp;</div>
<div>floodlight).&nbsp;</div>
<div>&nbsp;</div>
<div>Hope&nbsp;this&nbsp;helps,&nbsp;</div>
<div>&nbsp;</div>
<div>-&nbsp;Rob&nbsp;</div>
<div>.&nbsp;</div>
</div>
</div></blockquote>
<blockquote type="cite"><div>
<span>_______________________________________________</span><br><span>openflow-discuss mailing list</span><br><span><a href="mailto:openflow-discuss <at> lists.stanford.edu">openflow-discuss <at> lists.stanford.edu</a></span><br><span><a href="https://mailman.stanford.edu/mailman/listinfo/openflow-discuss">https://mailman.stanford.edu/mailman/listinfo/openflow-discuss</a></span><br>
</div></blockquote>
</div>

Gmane