[nox-dev] discoveryws component

2012-02-14 Thread andrea simeoni
attempting to perform request., error: Unhandled server error} Do you have suggestions? best regards -- Andrea Simeoni ___ nox-dev mailing list nox-dev@noxrepo.org http://noxrepo.org/mailman/listinfo/nox-dev

[nox-dev] Switches crash when inserting OFPP_CONTROLLER actions

2011-11-08 Thread andrea simeoni
be working. Any suggestions? -- Andrea Simeoni ___ nox-dev mailing list nox-dev@noxrepo.org http://noxrepo.org/mailman/listinfo/nox-dev

Re: [nox-dev] Switches crash when inserting OFPP_CONTROLLER actions

2011-11-08 Thread andrea simeoni
, andrea simeoni wrote: Hi guys, I'm running a test with 2 hosts, 2 OF switches and 1 controller. The switches and hosts are on 4 different ubuntu virtual machines and the controller is on the host machine. For switches I use the user space OF implementation. I modified the simplerouting

Re: [nox-dev] Switches crash when inserting OFPP_CONTROLLER actions

2011-11-08 Thread andrea simeoni
reference implementation. -- Murphy On Nov 8, 2011, at 1:31 AM, andrea simeoni wrote: Hi guys, I'm running a test with 2 hosts, 2 OF switches and 1 controller. The switches and hosts are on 4 different ubuntu virtual machines and the controller is on the host machine. For switches I use

[nox-dev] Building custom events

2011-10-28 Thread andrea simeoni
); register_handlerObservation_event (boost::bind(MioComp::handle_observation_event, this, _1)); } I tried also to add the event in the nox/src/etc/nox.json, including also the name of MyComp in the priority list, but the outcome is the same. Any suggestions? I'm forgetting some step? Thank you -- Andrea Simeoni

Re: [nox-dev] Building custom events

2011-10-28 Thread andrea simeoni
Hi guys, I solved the problem by adding the line: *register_event(Observation_event::static_get_name());* In the configuration method of the component that generates the event. 2011/10/28 andrea simeoni andreasimeon...@gmail.com Hi guys, I've created a custom event in my NOX environment

[nox-dev] What is the process waiting for OF messages on 6633?

2011-10-20 Thread andrea simeoni
Hi all, what is the source file that implements the process waiting for OF messages on port 6633? What is the first component generating a packet-int-event? I need such information very much. Thank you -- Andrea Simeoni ___ nox-dev mailing list nox

[nox-dev] What happens on port 6633?

2011-10-18 Thread andrea simeoni
Hi guys, Does the process waiting for OF messages on port 6633 instantiate a new thread for each new incoming message? Or messages are handled in a sequential manner? Thank you very much -- Andrea Simeoni ___ nox-dev mailing list nox-dev@noxrepo.org

Re: [nox-dev] Bugs in the send_openflow_command(..) and send_openflow_packet(..)

2011-10-17 Thread andrea simeoni
? -- Murphy On Oct 17, 2011, at 6:33 AM, andrea simeoni wrote: Hi guys, I'm trying to run the simplerouting component, and found that when installing the route it receives Malformed packet error messages back from the switches. The same happens when calling send_openflow_packet(..). If i

Re: [nox-dev] Accessing TCP sequence numbers on packet-in-events

2011-10-12 Thread andrea simeoni
On 11 October 2011 12:07, andrea simeoni andreasimeon...@gmail.com wrote: Hi Murphy, thank you for answering. I' ve already checked in /inet++, and I found the tcp.hh file. At first hand it seems being not useful for my task. Or maybe it is, by I don't know how to make it useful

Re: [nox-dev] Accessing TCP sequence numbers on packet-in-events

2011-10-12 Thread andrea simeoni
On 12 October 2011 02:51, andrea simeoni andreasimeon...@gmail.com wrote: Hi KK, I think it is exactly want I need to solve my problem. Now the question is: I need to call the static pull_tcp(..) function defined in flow.cc. Well how do I include that file? Maybe it's a stupid question

Re: [nox-dev] Accessing TCP sequence numbers on packet-in-events

2011-10-11 Thread andrea simeoni
upon packet-in-event notification. Is there an high level function that simplifies such task? Or I have to take an offset after calling the get_buffer() function from the event? Thank you. -- Andrea Simeoni ___ nox-dev mailing list nox-dev

[nox-dev] A question about network.graph.hh

2011-10-06 Thread andrea simeoni
Hi guys, I'm using the hop struct defined in the file network-graph.hh. I was able to navigate the structure, and I've well understood its recursive nature. But I have a question: for what stands the uint64_t field in the std::liststd::pairuint16_t, hop* next_hops ? Thank you -- Andrea

Re: [nox-dev] A question about network.graph.hh

2011-10-06 Thread andrea simeoni
jam...@nau.edu .. do you mean uint16_t? KK is the one to ask, but I believe this is the port number -- I believe the pair is: (port-number, next-hop-out-that-port) -- Murphy On Oct 6, 2011, at 5:28 AM, andrea simeoni wrote: Hi guys, I'm using the hop struct defined in the file

[nox-dev] Unable to include route/routeinstaller.hh

2011-09-27 Thread andrea simeoni
’ is not a template function make[9]: *** [TrafficMonitor_la-TrafficMonitor.lo] Error 1 Helps are appreciated; thank you -- Andrea Simeoni ___ nox-dev mailing list nox-dev@noxrepo.org http://noxrepo.org/mailman/listinfo/nox-dev

[nox-dev] Where I have to place my custom classes?

2011-09-25 Thread andrea simeoni
and Component.hh files? Thanks -- Andrea Simeoni ___ nox-dev mailing list nox-dev@noxrepo.org http://noxrepo.org/mailman/listinfo/nox-dev

[nox-dev] Handling multiple events in NOX

2011-08-13 Thread andrea simeoni
Hi guys, I've a simple question: What happens when a component has to handle multiple instances of the same event? Each event instance is handled in a FIFO manner, or multiple threads of the same handler are instantiated? Thank you -- Andrea Simeoni

Re: [nox-dev] Estimating end-to-end delay

2011-08-13 Thread andrea simeoni
output port, through the *send_openflow_packet()* command. In such a way the system in kept synchronized, and the system works properly. Have good holidays 2011/8/12 andrea simeoni andreasimeon...@gmail.com Hi guys, I'm writing a simple NOC C++ controller that estimates the end-to-end delay

[nox-dev] Estimating end-to-end delay

2011-08-12 Thread andrea simeoni
the last. Sometimes the number of outgoing packets is equal to the number of ingoing packets + 1 (weird). Sometimes a big set of packets is first notified by the outgoing switch (very bad behaviour). Any suggestions? -Best regards- -- Andrea Simeoni

[nox-dev] Adding multiple actions in switches

2011-08-06 Thread andrea simeoni
to build a single entry of such list? How I should build an entry with multiple actions? There is some component available in NOX using the same API, from which I can take inspiration? Thanks a lot, best regards. -- Andrea Simeoni ___ nox-dev mailing

[nox-dev] Unable to include routeinstaller.hh

2011-08-05 Thread andrea simeoni
' make: *** [all] Error 2 Any suggestions? best regards, -- Andrea Simeoni ___ nox-dev mailing list nox-dev@noxrepo.org http://noxrepo.org/mailman/listinfo/nox-dev

[nox-dev] Fwd: Unable to include routeinstaller.hh

2011-08-05 Thread andrea simeoni
-- Forwarded message -- From: andrea simeoni andreasimeon...@gmail.com Date: 2011/8/5 Subject: Re: [nox-dev] Unable to include routeinstaller.hh To: karim torkmen karim.torkm...@gmail.com Hi Karim, I ran *'nox-new-c-app.py miocomponente'* , and the result was a folder

Re: [nox-dev] Adding a new C component

2011-08-04 Thread andrea simeoni
. From: nox-dev-boun...@noxrepo.org [nox-dev-boun...@noxrepo.org] On Behalf Of andrea simeoni [andreasimeon...@gmail.com] Sent: Thursday, August 04, 2011 4:55 PM To: nox-dev@noxrepo.org Subject: [nox-dev] Adding a new C component Hi guys, I'm trying

[nox-dev] Sampling a flow

2011-07-04 Thread andrea simeoni
suggestions? Best regards -- Andrea Simeoni ___ nox-dev mailing list nox-dev@noxrepo.org http://noxrepo.org/mailman/listinfo/nox-dev

Re: [nox-dev] NOX architecture schemes

2011-06-16 Thread andrea simeoni
for others too. That would be appreciated. Regards KK On 13 June 2011 15:09, andrea simeoni andreasimeon...@gmail.com wrote: Hi guys, Do you know were I can find an architectural description of NOX? ( I mean a paper or some images describing what are the API provided by basic components

[nox-dev] Cannot find nox-gui.py

2011-06-02 Thread andrea simeoni
Hi guys, I've recently installed NOX 0.9.0 zaku, and I'm looking for the nox-guy.py file. The noxrepo page says it' s under the /src folder, but there is nothing. Maibe the gui is not available in my NOX release? Any suggestions? Best regards -- Andrea Simeoni

[nox-dev] End-to.End delay measurement

2011-05-31 Thread andrea simeoni
of the end-to-end delay. (I don't need to estimate the switch-controller delay, but simply look at the two timestamps provided in event notifications). Best regards -- Andrea Simeoni ___ nox-dev mailing list nox-dev@noxrepo.org http://noxrepo.org/mailman

[nox-dev] Unable to run components under 'netapps'

2011-05-27 Thread andrea simeoni
Hi guys, I have successfully installed a Virtual Machine containing NOX and Mininet. Following the walkthrough I was able to transform an HUB to a learning switch. Moreover I premit that I've well understood how components are linked by mean of meta.xml files, Now I'm trying to use the