[nox-dev] Mapping flows to queues in openflow switch using NOX controller

2010-11-29 Thread Anand Bawiskar
Hi, I trying to implement QOS using openflow switch and NOX controller wherein I am using the queues configured at a particular port of openflow switch to queue packets for different applications. I use the dpctl tool for configuring the queues as: dpctl add-queue tcp:localhost:6634 3 1 7 dpctl

[nox-dev] Arguments For Components

2010-11-29 Thread Derek Cormier
Is there any way to send command line arguments to Nox components? Thanks, Derek ___ nox-dev mailing list nox-dev@noxrepo.org http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org

Re: [nox-dev] Arguments For Components

2010-11-29 Thread Derek Cormier
Hi Kyriakos, I was looking to send arguments when running ./nox_core. I just found the documentation on the Wiki, but it's not clear on how to access the arguments from the component. Do you know how to do this? Thanks! -Derek On 11/30/2010 10:16 AM, Kyriakos Zarifis wrote: Hi Derek, You

Re: [nox-dev] Arguments For Components

2010-11-29 Thread kk yap
Hi Derek, In C/C++, jsonmessenger provides an example. Regards KK On 29 November 2010 17:57, Derek Cormier derek.corm...@lab.ntt.co.jp wrote: Hi Kyriakos, I was looking to send arguments when running ./nox_core. I just found the documentation on the Wiki, but it's not clear on how to access

Re: [nox-dev] Arguments For Components

2010-11-29 Thread Kyriakos Zarifis
exactly - looks like you already found it, but for the record there is an equivalent example for python in discovery.py On Mon, Nov 29, 2010 at 6:24 PM, Derek Cormier derek.corm...@lab.ntt.co.jpwrote: Ooh I see, it uses the Configuration object. I was able to get it working in python. In case