[nox-dev] Topology component and FlowVisor.

2012-01-12 Thread Sergio Jiménez Feijóo

Hi guys,

I've developed a NOX aplication which needs to use the topology 
component to discover the network topology. I've tested my application 
in a testbed of 6 Linksys WRT54GL running the OpenWRT Pantou firmware 
(without flowvisor) and it worked like a charm. Now I'm testing my 
aplication in a testbed of 5 NEC IP8800/S3640-24T2XW (with flowvisor) 
and the topology detection isn't working at all (the data struct is empty).


Since OpenFlow allows an application to run in different devices I've 
discarded the fact of using new switches as the cause of the error. 
Therefore I think flowvisor is causing the topology component not to run 
properly. Is this possible? Have you experienced any problems with 
flowvisor and NOX?


Thank you.

http://homestore.cisco.eu/store/ciscoeu/en_IE/pd/productID.241269400
http://www.openflow.org/wk/index.php/Pantou_:_OpenFlow_1.0_for_OpenWRT
http://yuba.stanford.edu/foswiki/bin/view/OpenFlow/Deployment/Vendor/NEC

___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev


Re: [nox-dev] Topology component and FlowVisor.

2012-01-12 Thread Aaron Rosen
Hi,

I've encountered an issue like this before with flowvisor and the discovery
module. The easiest thing to do is to change the lldp value in

 ./src/nox/lib/packet/ethernet.py

   #LLDP_TYPE = 0x88cc
LLDP_TYPE = new_value

then add this new_value, ether_type to your slice.

Hopefully that will do the trick.

Aaron


2012/1/12 Sergio Jiménez Feijóo jjji...@gmail.com

 Hi guys,

 I've developed a NOX aplication which needs to use the topology component
 to discover the network topology. I've tested my application in a testbed
 of 6 Linksys WRT54GL running the OpenWRT Pantou firmware (without
 flowvisor) and it worked like a charm. Now I'm testing my aplication in a
 testbed of 5 NEC IP8800/S3640-24T2XW (with flowvisor) and the topology
 detection isn't working at all (the data struct is empty).

 Since OpenFlow allows an application to run in different devices I've
 discarded the fact of using new switches as the cause of the error.
 Therefore I think flowvisor is causing the topology component not to run
 properly. Is this possible? Have you experienced any problems with
 flowvisor and NOX?

 Thank you.

 http://homestore.cisco.eu/**store/ciscoeu/en_IE/pd/**productID.241269400http://homestore.cisco.eu/store/ciscoeu/en_IE/pd/productID.241269400
 http://www.openflow.org/wk/**index.php/Pantou_:_OpenFlow_1.**0_for_OpenWRThttp://www.openflow.org/wk/index.php/Pantou_:_OpenFlow_1.0_for_OpenWRT
 http://yuba.stanford.edu/**foswiki/bin/view/OpenFlow/**
 Deployment/Vendor/NEChttp://yuba.stanford.edu/foswiki/bin/view/OpenFlow/Deployment/Vendor/NEC

 __**_
 nox-dev mailing list
 nox-dev@noxrepo.org
 http://noxrepo.org/mailman/**listinfo/nox-devhttp://noxrepo.org/mailman/listinfo/nox-dev




-- 
Aaron O. Rosen
Masters Student - Network Communication
306B Fluor Daniel
___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev


Re: [nox-dev] Topology component and FlowVisor.

2012-01-12 Thread Aaron Rosen
P.S: Which version of nox are you running? I believe this works fine in
destiny.

Aaron

2012/1/12 Aaron Rosen aro...@clemson.edu

 Hi,

 I've encountered an issue like this before with flowvisor and the
 discovery module. The easiest thing to do is to change the lldp value in

  ./src/nox/lib/packet/ethernet.py

#LLDP_TYPE = 0x88cc
 LLDP_TYPE = new_value

 then add this new_value, ether_type to your slice.

 Hopefully that will do the trick.

 Aaron


 2012/1/12 Sergio Jiménez Feijóo jjji...@gmail.com

 Hi guys,

 I've developed a NOX aplication which needs to use the topology component
 to discover the network topology. I've tested my application in a testbed
 of 6 Linksys WRT54GL running the OpenWRT Pantou firmware (without
 flowvisor) and it worked like a charm. Now I'm testing my aplication in a
 testbed of 5 NEC IP8800/S3640-24T2XW (with flowvisor) and the topology
 detection isn't working at all (the data struct is empty).

 Since OpenFlow allows an application to run in different devices I've
 discarded the fact of using new switches as the cause of the error.
 Therefore I think flowvisor is causing the topology component not to run
 properly. Is this possible? Have you experienced any problems with
 flowvisor and NOX?

 Thank you.

 http://homestore.cisco.eu/**store/ciscoeu/en_IE/pd/**productID.241269400http://homestore.cisco.eu/store/ciscoeu/en_IE/pd/productID.241269400
 http://www.openflow.org/wk/**index.php/Pantou_:_OpenFlow_1.**
 0_for_OpenWRThttp://www.openflow.org/wk/index.php/Pantou_:_OpenFlow_1.0_for_OpenWRT
 http://yuba.stanford.edu/**foswiki/bin/view/OpenFlow/**
 Deployment/Vendor/NEChttp://yuba.stanford.edu/foswiki/bin/view/OpenFlow/Deployment/Vendor/NEC

 __**_
 nox-dev mailing list
 nox-dev@noxrepo.org
 http://noxrepo.org/mailman/**listinfo/nox-devhttp://noxrepo.org/mailman/listinfo/nox-dev




 --
 Aaron O. Rosen
 Masters Student - Network Communication
 306B Fluor Daniel





-- 
Aaron O. Rosen
Masters Student - Network Communication
306B Fluor Daniel
___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev


Re: [nox-dev] Topology component and FlowVisor.

2012-01-12 Thread Sergio Jiménez Feijóo

Hi Aaron,

I'm using the latest version (I think). I downloaded it from the git 
repository by the command git clone git://noxrepo.org/nox a few days ago.


My flowspace consists on tagging all my trafic with a certain VLAN ID 
(VLAN 13). All the traffic tagged with that VLAN ID belongs to my 
flowspace. Is it possible that the topology component isn't sending the 
LLDP frames tagged with the proper VLAN ID? How can I force the topology 
component to send the LLDP frames tagged with a certain VLAN ID?


Thank you.

El 12/01/2012 15:33, Aaron Rosen escribió:
P.S: Which version of nox are you running? I believe this works fine 
in destiny.


Aaron

2012/1/12 Aaron Rosen aro...@clemson.edu mailto:aro...@clemson.edu

Hi,

I've encountered an issue like this before with flowvisor and the
discovery module. The easiest thing to do is to change the lldp
value in

 ./src/nox/lib/packet/ethernet.py

   #LLDP_TYPE = 0x88cc
LLDP_TYPE = new_value

then add this new_value, ether_type to your slice.

Hopefully that will do the trick.

Aaron


2012/1/12 Sergio Jiménez Feijóo jjji...@gmail.com
mailto:jjji...@gmail.com

Hi guys,

I've developed a NOX aplication which needs to use the
topology component to discover the network topology. I've
tested my application in a testbed of 6 Linksys WRT54GL
running the OpenWRT Pantou firmware (without flowvisor) and it
worked like a charm. Now I'm testing my aplication in a
testbed of 5 NEC IP8800/S3640-24T2XW (with flowvisor) and the
topology detection isn't working at all (the data struct is
empty).

Since OpenFlow allows an application to run in different
devices I've discarded the fact of using new switches as the
cause of the error. Therefore I think flowvisor is causing the
topology component not to run properly. Is this possible? Have
you experienced any problems with flowvisor and NOX?

Thank you.

http://homestore.cisco.eu/store/ciscoeu/en_IE/pd/productID.241269400
http://www.openflow.org/wk/index.php/Pantou_:_OpenFlow_1.0_for_OpenWRT
http://yuba.stanford.edu/foswiki/bin/view/OpenFlow/Deployment/Vendor/NEC

___
nox-dev mailing list
nox-dev@noxrepo.org mailto:nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev




-- 
Aaron O. Rosen

Masters Student - Network Communication
306B Fluor Daniel





--
Aaron O. Rosen
Masters Student - Network Communication
306B Fluor Daniel




___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev


Re: [nox-dev] Topology component and FlowVisor.

2012-01-12 Thread Aaron Rosen
Did you do git checkout -b destiny

When the controller sends the LLDP packet it won't have a vlan tag. Once it
leaves the switch, the switch will add your tag for you.  I don't think
that's the problem.

Aaron

2012/1/12 Sergio Jiménez Feijóo jjji...@gmail.com

  Hi Aaron,

 I'm using the latest version (I think). I downloaded it from the git
 repository by the command git clone git://noxrepo.org/nox a few days
 ago.

 My flowspace consists on tagging all my trafic with a certain VLAN ID
 (VLAN 13). All the traffic tagged with that VLAN ID belongs to my
 flowspace. Is it possible that the topology component isn't sending the
 LLDP frames tagged with the proper VLAN ID? How can I force the topology
 component to send the LLDP frames tagged with a certain VLAN ID?

 Thank you.

 El 12/01/2012 15:33, Aaron Rosen escribió:

 P.S: Which version of nox are you running? I believe this works fine in
 destiny.

 Aaron

 2012/1/12 Aaron Rosen aro...@clemson.edu

 Hi,

  I've encountered an issue like this before with flowvisor and the
 discovery module. The easiest thing to do is to change the lldp value in

   ./src/nox/lib/packet/ethernet.py

 #LLDP_TYPE = 0x88cc
  LLDP_TYPE = new_value

  then add this new_value, ether_type to your slice.

  Hopefully that will do the trick.

  Aaron


 2012/1/12 Sergio Jiménez Feijóo jjji...@gmail.com

 Hi guys,

 I've developed a NOX aplication which needs to use the topology
 component to discover the network topology. I've tested my application in a
 testbed of 6 Linksys WRT54GL running the OpenWRT Pantou firmware (without
 flowvisor) and it worked like a charm. Now I'm testing my aplication in a
 testbed of 5 NEC IP8800/S3640-24T2XW (with flowvisor) and the topology
 detection isn't working at all (the data struct is empty).

 Since OpenFlow allows an application to run in different devices I've
 discarded the fact of using new switches as the cause of the error.
 Therefore I think flowvisor is causing the topology component not to run
 properly. Is this possible? Have you experienced any problems with
 flowvisor and NOX?

 Thank you.

 http://homestore.cisco.eu/store/ciscoeu/en_IE/pd/productID.241269400
 http://www.openflow.org/wk/index.php/Pantou_:_OpenFlow_1.0_for_OpenWRT
 http://yuba.stanford.edu/foswiki/bin/view/OpenFlow/Deployment/Vendor/NEC

 ___
 nox-dev mailing list
 nox-dev@noxrepo.org
 http://noxrepo.org/mailman/listinfo/nox-dev




   --
 Aaron O. Rosen
 Masters Student - Network Communication
 306B Fluor Daniel





 --
 Aaron O. Rosen
 Masters Student - Network Communication
 306B Fluor Daniel




 ___
 nox-dev mailing list
 nox-dev@noxrepo.org
 http://noxrepo.org/mailman/listinfo/nox-dev




-- 
Aaron O. Rosen
Masters Student - Network Communication
306B Fluor Daniel
___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev


Re: [nox-dev] Topology component and FlowVisor.

2012-01-12 Thread Sergio Jiménez Feijóo

Hi Aaron,

My application that runs on NOX examines the packets and forwards them 
keeping the same VLAN ID tag. But how does the topology module tell the 
switches that they must send the LLDPs with a certain VLAN ID tag? The 
topology module is independent from my application and I can't controle 
it. If the topology module sends the LLDPs packets without the proper 
VLAN tag they won't be forwarded to my controller (because they won't 
belong to my FlowVisor flowspace).


This is just a supposition but I think this may be the cause of the problem.

Thank you for your help.

El 12/01/2012 16:25, Aaron Rosen escribió:

Did you do git checkout -b destiny

When the controller sends the LLDP packet it won't have a vlan tag. 
Once it leaves the switch, the switch will add your tag for you.  I 
don't think that's the problem.


Aaron

2012/1/12 Sergio Jiménez Feijóo jjji...@gmail.com 
mailto:jjji...@gmail.com


Hi Aaron,

I'm using the latest version (I think). I downloaded it from the
git repository by the command git clone git://noxrepo.org/nox
http://noxrepo.org/nox a few days ago.

My flowspace consists on tagging all my trafic with a certain VLAN
ID (VLAN 13). All the traffic tagged with that VLAN ID belongs to
my flowspace. Is it possible that the topology component isn't
sending the LLDP frames tagged with the proper VLAN ID? How can I
force the topology component to send the LLDP frames tagged with a
certain VLAN ID?

Thank you.

El 12/01/2012 15:33, Aaron Rosen escribió:

P.S: Which version of nox are you running? I believe this works
fine in destiny.

Aaron

2012/1/12 Aaron Rosen aro...@clemson.edu
mailto:aro...@clemson.edu

Hi,

I've encountered an issue like this before with flowvisor and
the discovery module. The easiest thing to do is to change
the lldp value in

 ./src/nox/lib/packet/ethernet.py

   #LLDP_TYPE = 0x88cc
LLDP_TYPE = new_value

then add this new_value, ether_type to your slice.

Hopefully that will do the trick.

Aaron


2012/1/12 Sergio Jiménez Feijóo jjji...@gmail.com
mailto:jjji...@gmail.com

Hi guys,

I've developed a NOX aplication which needs to use the
topology component to discover the network topology. I've
tested my application in a testbed of 6 Linksys WRT54GL
running the OpenWRT Pantou firmware (without flowvisor)
and it worked like a charm. Now I'm testing my aplication
in a testbed of 5 NEC IP8800/S3640-24T2XW (with
flowvisor) and the topology detection isn't working at
all (the data struct is empty).

Since OpenFlow allows an application to run in different
devices I've discarded the fact of using new switches as
the cause of the error. Therefore I think flowvisor is
causing the topology component not to run properly. Is
this possible? Have you experienced any problems with
flowvisor and NOX?

Thank you.

http://homestore.cisco.eu/store/ciscoeu/en_IE/pd/productID.241269400

http://www.openflow.org/wk/index.php/Pantou_:_OpenFlow_1.0_for_OpenWRT

http://yuba.stanford.edu/foswiki/bin/view/OpenFlow/Deployment/Vendor/NEC

___
nox-dev mailing list
nox-dev@noxrepo.org mailto:nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev




-- 
Aaron O. Rosen

Masters Student - Network Communication
306B Fluor Daniel





-- 
Aaron O. Rosen

Masters Student - Network Communication
306B Fluor Daniel





___
nox-dev mailing list
nox-dev@noxrepo.org mailto:nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev




--
Aaron O. Rosen
Masters Student - Network Communication
306B Fluor Daniel




___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev


Re: [nox-dev] Topology component and FlowVisor.

2012-01-12 Thread Aaron Rosen
If you do a packet dump at the flowvisor do you see vlan tags on these LLDP
packets returned to you?

I'm guessing the LLDP packets that are returned to you from the switch (Via
PACKET_IN) ) do not have VLAN tags correct? (The switch takes them off
since this switch isn't acting as a pure of switch. Only this one vlan is
being openflow controlled. )

This is the same reason why your controller does not need to know which
vlan tag you are using on the switch. When the controller sends a LLDP
packet to the switch the switch will output that packet on the correct port
and automatically add the tag for you.

You said this was working with out flowvisor right? If you run git branch
from the nox directory what does it say?

Aaron


2012/1/12 Sergio Jiménez Feijóo jjji...@gmail.com

  Hi Aaron,

 My application that runs on NOX examines the packets and forwards them
 keeping the same VLAN ID tag. But how does the topology module tell the
 switches that they must send the LLDPs with a certain VLAN ID tag? The
 topology module is independent from my application and I can't controle it.
 If the topology module sends the LLDPs packets without the proper VLAN tag
 they won't be forwarded to my controller (because they won't belong to my
 FlowVisor flowspace).

 This is just a supposition but I think this may be the cause of the
 problem.

 Thank you for your help.

 El 12/01/2012 16:25, Aaron Rosen escribió:

 Did you do git checkout -b destiny

  When the controller sends the LLDP packet it won't have a vlan tag. Once
 it leaves the switch, the switch will add your tag for you.  I don't think
 that's the problem.

  Aaron

 2012/1/12 Sergio Jiménez Feijóo jjji...@gmail.com

  Hi Aaron,

 I'm using the latest version (I think). I downloaded it from the git
 repository by the command git clone git://noxrepo.org/nox a few days
 ago.

 My flowspace consists on tagging all my trafic with a certain VLAN ID
 (VLAN 13). All the traffic tagged with that VLAN ID belongs to my
 flowspace. Is it possible that the topology component isn't sending the
 LLDP frames tagged with the proper VLAN ID? How can I force the topology
 component to send the LLDP frames tagged with a certain VLAN ID?

 Thank you.

 El 12/01/2012 15:33, Aaron Rosen escribió:

 P.S: Which version of nox are you running? I believe this works fine in
 destiny.

 Aaron

 2012/1/12 Aaron Rosen aro...@clemson.edu

 Hi,

  I've encountered an issue like this before with flowvisor and the
 discovery module. The easiest thing to do is to change the lldp value in

   ./src/nox/lib/packet/ethernet.py

 #LLDP_TYPE = 0x88cc
  LLDP_TYPE = new_value

  then add this new_value, ether_type to your slice.

  Hopefully that will do the trick.

  Aaron


 2012/1/12 Sergio Jiménez Feijóo jjji...@gmail.com

 Hi guys,

 I've developed a NOX aplication which needs to use the topology
 component to discover the network topology. I've tested my application in a
 testbed of 6 Linksys WRT54GL running the OpenWRT Pantou firmware (without
 flowvisor) and it worked like a charm. Now I'm testing my aplication in a
 testbed of 5 NEC IP8800/S3640-24T2XW (with flowvisor) and the topology
 detection isn't working at all (the data struct is empty).

 Since OpenFlow allows an application to run in different devices I've
 discarded the fact of using new switches as the cause of the error.
 Therefore I think flowvisor is causing the topology component not to run
 properly. Is this possible? Have you experienced any problems with
 flowvisor and NOX?

 Thank you.

 http://homestore.cisco.eu/store/ciscoeu/en_IE/pd/productID.241269400
 http://www.openflow.org/wk/index.php/Pantou_:_OpenFlow_1.0_for_OpenWRT
 http://yuba.stanford.edu/foswiki/bin/view/OpenFlow/Deployment/Vendor/NEC

 ___
 nox-dev mailing list
 nox-dev@noxrepo.org
 http://noxrepo.org/mailman/listinfo/nox-dev




   --
 Aaron O. Rosen
 Masters Student - Network Communication
 306B Fluor Daniel





 --
 Aaron O. Rosen
 Masters Student - Network Communication
 306B Fluor Daniel




 ___
 nox-dev mailing list
 nox-dev@noxrepo.org
 http://noxrepo.org/mailman/listinfo/nox-dev




  --
 Aaron O. Rosen
 Masters Student - Network Communication
 306B Fluor Daniel




 ___
 nox-dev mailing list
 nox-dev@noxrepo.org
 http://noxrepo.org/mailman/listinfo/nox-dev




-- 
Aaron O. Rosen
Masters Student - Network Communication
306B Fluor Daniel
___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev


Re: [nox-dev] Topology component and FlowVisor.

2012-01-12 Thread Ali Al-Shabibi
Hi Sergio,

Could you try to run your application without flowvisor. I find it strange that 
flowvisor would be causing a problem here, even though it treats lldp packets 
rather awkwardly. 

That said, if your setup works without flowvisor then we can definitely say 
that flowvisor is at fault and we can investigate further.

--
Ali Al-Shabibi

On 12 janv. 2012, at 04:24, Sergio Jiménez Feijóo jjji...@gmail.com wrote:

 Hi guys,
 
 I've developed a NOX aplication which needs to use the topology component to 
 discover the network topology. I've tested my application in a testbed of 6 
 Linksys WRT54GL running the OpenWRT Pantou firmware (without flowvisor) and 
 it worked like a charm. Now I'm testing my aplication in a testbed of 5 NEC 
 IP8800/S3640-24T2XW (with flowvisor) and the topology detection isn't working 
 at all (the data struct is empty).
 
 Since OpenFlow allows an application to run in different devices I've 
 discarded the fact of using new switches as the cause of the error. Therefore 
 I think flowvisor is causing the topology component not to run properly. Is 
 this possible? Have you experienced any problems with flowvisor and NOX?
 
 Thank you.
 
 http://homestore.cisco.eu/store/ciscoeu/en_IE/pd/productID.241269400
 http://www.openflow.org/wk/index.php/Pantou_:_OpenFlow_1.0_for_OpenWRT
 http://yuba.stanford.edu/foswiki/bin/view/OpenFlow/Deployment/Vendor/NEC
 
 ___
 nox-dev mailing list
 nox-dev@noxrepo.org
 http://noxrepo.org/mailman/listinfo/nox-dev
___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev


Re: [nox-dev] Topology component and FlowVisor.

2012-01-12 Thread Murphy McCauley
There have been some changes to logging.  Use -v -v.

-- Murphy

On Jan 12, 2012, at 10:10 AM, Sergio Jiménez Feijóo wrote:

 Hi Aaron,
 
 I have moved to the destiny branch and compiled everything again. The 
 topology component seems to work fine (I can see new link detected messages 
 in the log) but now I can't see the log messages of my application (VLOG_DBG 
 function) despite I'm running NOX with the -v flag. My application isn't 
 working properly yet but until I can see those log messages I won't be able 
 to find the cause of the new problem.
 
 In response to Ali: I Have tested my application in another testbed without 
 flowvisor but I can't run it in this testbed without flowvisor. I can't 
 disable FlowVisor because I'm using the OFELIA project infraestructure (I 
 share the devices with other experimenters): 
 http://www.fp7-ofelia.eu/ofelia-facility-and-islands/equipment/
 
 Thank you.
 
 El 12/01/2012 18:08, Aaron Rosen escribió:
 
 If you do a packet dump at the flowvisor do you see vlan tags on these LLDP 
 packets returned to you?  
 
 I'm guessing the LLDP packets that are returned to you from the switch (Via 
 PACKET_IN) ) do not have VLAN tags correct? (The switch takes them off since 
 this switch isn't acting as a pure of switch. Only this one vlan is being 
 openflow controlled. ) 
 
 This is the same reason why your controller does not need to know which vlan 
 tag you are using on the switch. When the controller sends a LLDP packet to 
 the switch the switch will output that packet on the correct port and 
 automatically add the tag for you. 
 
 You said this was working with out flowvisor right? If you run git branch 
 from the nox directory what does it say? 
 
 Aaron
 
 
 2012/1/12 Sergio Jiménez Feijóo jjji...@gmail.com
 Hi Aaron,
 
 My application that runs on NOX examines the packets and forwards them 
 keeping the same VLAN ID tag. But how does the topology module tell the 
 switches that they must send the LLDPs with a certain VLAN ID tag? The 
 topology module is independent from my application and I can't controle it. 
 If the topology module sends the LLDPs packets without the proper VLAN tag 
 they won't be forwarded to my controller (because they won't belong to my 
 FlowVisor flowspace).
 
 This is just a supposition but I think this may be the cause of the problem.
 
 Thank you for your help.
 
 El 12/01/2012 16:25, Aaron Rosen escribió:
 Did you do git checkout -b destiny 
 
 When the controller sends the LLDP packet it won't have a vlan tag. Once it 
 leaves the switch, the switch will add your tag for you.  I don't think 
 that's the problem. 
 
 Aaron
 
 2012/1/12 Sergio Jiménez Feijóo jjji...@gmail.com
 Hi Aaron,
 
 I'm using the latest version (I think). I downloaded it from the git 
 repository by the command git clone git://noxrepo.org/nox a few days ago.
 
 My flowspace consists on tagging all my trafic with a certain VLAN ID (VLAN 
 13). All the traffic tagged with that VLAN ID belongs to my flowspace. Is 
 it possible that the topology component isn't sending the LLDP frames 
 tagged with the proper VLAN ID? How can I force the topology component to 
 send the LLDP frames tagged with a certain VLAN ID?
 
 Thank you.
 
 El 12/01/2012 15:33, Aaron Rosen escribió:
 P.S: Which version of nox are you running? I believe this works fine in 
 destiny. 
 
 Aaron
 
 2012/1/12 Aaron Rosen aro...@clemson.edu
 Hi, 
 
 I've encountered an issue like this before with flowvisor and the 
 discovery module. The easiest thing to do is to change the lldp value in 
 
  ./src/nox/lib/packet/ethernet.py 
 
#LLDP_TYPE = 0x88cc
 LLDP_TYPE = new_value
 
 then add this new_value, ether_type to your slice. 
 
 Hopefully that will do the trick. 
 
 Aaron
 
 
 2012/1/12 Sergio Jiménez Feijóo jjji...@gmail.com
 Hi guys,
 
 I've developed a NOX aplication which needs to use the topology component 
 to discover the network topology. I've tested my application in a testbed 
 of 6 Linksys WRT54GL running the OpenWRT Pantou firmware (without 
 flowvisor) and it worked like a charm. Now I'm testing my aplication in a 
 testbed of 5 NEC IP8800/S3640-24T2XW (with flowvisor) and the topology 
 detection isn't working at all (the data struct is empty).
 
 Since OpenFlow allows an application to run in different devices I've 
 discarded the fact of using new switches as the cause of the error. 
 Therefore I think flowvisor is causing the topology component not to run 
 properly. Is this possible? Have you experienced any problems with 
 flowvisor and NOX?
 
 Thank you.
 
 http://homestore.cisco.eu/store/ciscoeu/en_IE/pd/productID.241269400
 http://www.openflow.org/wk/index.php/Pantou_:_OpenFlow_1.0_for_OpenWRT
 http://yuba.stanford.edu/foswiki/bin/view/OpenFlow/Deployment/Vendor/NEC
 
 ___
 nox-dev mailing list
 nox-dev@noxrepo.org
 http://noxrepo.org/mailman/listinfo/nox-dev
 
 
 
 -- 
 Aaron O. Rosen
 Masters Student - Network Communication

Re: [nox-dev] Topology

2010-11-16 Thread Macapuna, Carlos A. B.
Do you don't need of s4:

SWITCHES=s1 s2 s3 s4 s5
s2_SLIRP=yes
*- s4_SLIRP=yes (remove)*

VMS=end1 openflow1 openflow2 end2
end1_NETS=s1
end2_NETS=s5
openflow1_NETS=s1 *s2* s3
openflow2_NETS=s3 *s2* s5

end1_KERNEL=kernel.bin
end2_KERNEL=kernel.bin
openflow1_KERNEL=kernel.bin
openflow2_KERNEL=kernel.bin


Carlos Macapuna
www.macapuna.com.br




On Tue, Nov 16, 2010 at 4:46 PM, Rohit Manohar rdman...@ncsu.edu wrote:

 I am trying to build the following network topology in NOX


 |--|  |--|
 |-| |--|
 | End1 |---| Openflow1 || Openflow2
 |-| End 2 |
 |--|  |--|
 |-| |--|

 Both of the Openflow switches are connected to the Nox-Controller

 My .conf file is:

 SWITCHES=s1 s2 s3 s4 s5
 s2_SLIRP=yes
 s4_SLIRP=yes

 VMS=end1 openflow1 openflow2 end2
 end1_NETS=s1
 end2_NETS=s5
 openflow1_NETS=s1 s2 s3
 openflow2_NETS=s3 s4 s5

 end1_KERNEL=kernel.bin
 end2_KERNEL=kernel.bin
 openflow1_KERNEL=kernel.bin
 openflow2_KERNEL=kernel.bin


 Now, I have a few doubts

 1. When I do dhclient on Openflow1 and Openflow2, both of them get the same
 ip 10.0.2.15 on eth1. Is this right? Since they are different interfaces,
 how can they use same IP?

 2. How do I connect the two switches?
 I am doing
 ./dpctl addif nl:0 eth0 to connect Openflow1 to End1
 ./dpctl addif nl:1 eth0 to connect Openflow2 to End2

 3. Can pyswitch allow me to send packets from End1 to End2?

 Regards,

 --
 Rohit Manohar
 Graduate Student
 North Carolina State University
 Raleigh, US.


 ___
 nox-dev mailing list
 nox-dev@noxrepo.org
 http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org


___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org


[nox-dev] topology

2009-11-23 Thread Arturo Veras
hi,
did you try LAVI ? i can see the topology but i cannot see the flows.



There are no applications contained in the standard Nox distribrution
which provide visualization of the topology.  However some third party
apps have been built.  For example:

 http://www.openflowswitch.org/wk/index.php/LAVI 
 http://www.openflowswitch.org/wk/index.php/LAVI

.m
* hi
** Is there any application to see the topology of a network?
** 
**
** ___
** nox-dev mailing list
** nox-dev at noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org
** http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org
**
*



-- 
XD
___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org


Re: [nox-dev] topology

2009-11-23 Thread kk yap
Hi,

It seems like there is something about flowdb and LAVI at the moment.
I will try to take a look at it within this week.  My apologies for
the slow reaction.

Regards
KK

2009/11/23 Arturo Veras a.ve...@gmail.com:
 hi,
 did you try LAVI ? i can see the topology but i cannot see the flows.


 
There are no applications contained in the standard Nox distribrution

which provide visualization of the topology.  However some third party
apps have been built.  For example:

 http://www.openflowswitch.org/wk/index.php/LAVI


 .m
 hi
 Is there any application to see the topology of a network?
 

 ___

 nox-dev mailing list
 nox-dev at noxrepo.org
 http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org





 --
 XD

 ___
 nox-dev mailing list
 nox-dev@noxrepo.org
 http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org



___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org


[nox-dev] topology

2009-11-20 Thread Arturo Veras Olivos
hi
Is there any application to see the topology of a network?
___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org


Re: [nox-dev] topology

2009-11-20 Thread Martin Casado
There are no applications contained in the standard Nox distribrution 
which provide visualization of the topology.  However some third party 
apps have been built.  For example:


http://www.openflowswitch.org/wk/index.php/LAVI

.m

hi
Is there any application to see the topology of a network?


___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org
  



___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org