Re: [nox-dev] how to add a new component

2010-12-26 Thread 谢峰
Hi, KK
can you tell me the detailed process to add the spanning_tree component,
including where to download and how to modify the file.

many thanks!

xiefeng

在 2010年12月27日 上午10:57,谢峰 写道:

> It's ok, I've done re-run ./boot.sh, ./configure and the installation is
> successful.
>
> thanks KK.
>
> xiefeng
>
> 在 2010年12月27日 上午10:17,kk yap 写道:
>
> Sorry to ask the obvious, but you did re-run ./boot.sh, ./configure and
>> make right?  You can tell that I cannot find obvious problems in the files
>> you posted.
>>
>> Regards
>> KK
>>
>> 2010/12/26 谢峰 
>>
>>> I've updated the file configure.ac.in and src/etc/nox.json. And then I
>>> modified the file spanning_tree/Makefile.am and spanning_tree/meta.json as
>>> follow:
>>>
>>>
>>> include ../../../Make.vars
>>> EXTRA_DIST =\
>>> meta.json\
>>> __init__.py \
>>> spanning_tree.py
>>> NOX_RUNTIMEFILES = meta.json\
>>> __init__.py \
>>> spanning_tree.py
>>> all-local:
>>> @dlist="$(NOX_RUNTIMEFILES)";for f in $$dlist; do \
>>>   if test -f $(srcdir)/$$f && test ! -f $$f; then \
>>> ln -sf $(srcdir)/$$f $(builddir)/$$f;\
>>>   fi;\
>>> done;
>>> and I modified the file spanning_tree/meta.json as follow:
>>>
>>>
>>>  {
>>> "components": [
>>> {
>>> "python": "nox.apps.spanning_tree.spanning_tree",
>>> "dependencies": [
>>> "python",
>>> "discovery"
>>> ],
>>> "name": "spanning_tree",
>>> }
>>> ]
>>> }
>>>
>>> Is there any problem?
>>> 在 2010年12月27日 上午9:42,kk yap 写道:
>>>
>>> Hi,

 Did you update configure.ac.in?

 Regards
 KK


 2010/12/26 谢峰 

> When I'm running nox_core with "spanning_tree", it says "the
> description is not found". so I  run nox_core with "routing", it's okay. 
> but
> it seems not to have the function of "spanning_tree".
>
> 在 2010年12月27日 上午1:44,Kyriakos Zarifis 写道:
>
>  Are you running nox_core with "spanning_tree"? What are the sings that
>> spanning_tree is not working? Can you attach a log with any relevant 
>> error
>> messages?
>>
>> 2010/12/26 谢峰 
>>
>>  I modified the file:spanning_tree/Makefile.am as follow:
>>>
>>>
>>> include ../../../Make.vars
>>> EXTRA_DIST =\
>>> meta.json\
>>> __init__.py \
>>> spanning_tree.py
>>> NOX_RUNTIMEFILES = meta.json\
>>> __init__.py \
>>> spanning_tree.py
>>> all-local:
>>> @dlist="$(NOX_RUNTIMEFILES)";for f in $$dlist; do \
>>>   if test -f $(srcdir)/$$f && test ! -f $$f; then \
>>> ln -sf $(srcdir)/$$f $(builddir)/$$f;\
>>>   fi;\
>>> done;
>>> and I modified the file spanning_tree/meta.json as follow:
>>>
>>>
>>> {
>>> "components": [
>>> {
>>> "python": "nox.apps.spanning_tree.spanning_tree",
>>> "dependencies": [
>>> "python",
>>> "discovery"
>>> ],
>>> "name": "spanning_tree",
>>> }
>>> ]
>>> }
>>>
>>> Is there some problem, but during the installation, there is no
>>> error. however, it seems the spanning_tree doesn't work.
>>> Thanks for your help.
>>>
>>> regards
>>>
>>> xiefeng
>>> 在 2010年12月26日 下午10:37,谢峰 写道:
>>>
>>> I've done as the steps and I modified the nox.json, after the
 installation, In this file "*build/src/etc/nox.json", I see
 packet-in-event first say spanning_tree component.*

 2010/12/26 Kyriakos Zarifis 

 Hi Xiefeng,
>
> have you taken a look at this? (
> http://www.openflowswitch.org/wk/index.php/Basic_Spanning_Tree#Installation)
> there are a few minor outdated instructions ( for example "cd
> noxcore" should be "cd nox" and "nox.xml" should be "nox.json") but 
> the main
> idea is described there.
>
>   On Sun, Dec 26, 2010 at 3:27 PM, 谢峰  wrote:
>
>>   Hi, all
>> I have download tha "Spanning_Tree" component, but I don't know
>> how to use it.
>> someone can help me?
>> thanks,
>> xiefeng
>>
>>
>> ___
>> nox-dev mailing list
>> nox-dev@noxrepo.org
>> http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org
>>
>>
>



>>>
>>>
>>>
>>
>
>
> --
> Feng Xie
> Ph.D. Candidate
> Network Security Lab, Research Institute of Information Technology
> Tsinghua National Laboratory for Information Science and Technology
> Dept. of Automation, Tsinghua Univ., Beijing, China, 100084.
> Tel

Re: [nox-dev] how to add a new component

2010-12-26 Thread 谢峰
It's ok, I've done re-run ./boot.sh, ./configure and the installation is
successful.

thanks KK.

xiefeng

在 2010年12月27日 上午10:17,kk yap 写道:

> Sorry to ask the obvious, but you did re-run ./boot.sh, ./configure and
> make right?  You can tell that I cannot find obvious problems in the files
> you posted.
>
> Regards
> KK
>
> 2010/12/26 谢峰 
>
>> I've updated the file configure.ac.in and src/etc/nox.json. And then I
>> modified the file spanning_tree/Makefile.am and spanning_tree/meta.json as
>> follow:
>>
>>
>> include ../../../Make.vars
>> EXTRA_DIST =\
>> meta.json\
>> __init__.py \
>> spanning_tree.py
>> NOX_RUNTIMEFILES = meta.json\
>> __init__.py \
>> spanning_tree.py
>> all-local:
>> @dlist="$(NOX_RUNTIMEFILES)";for f in $$dlist; do \
>>   if test -f $(srcdir)/$$f && test ! -f $$f; then \
>> ln -sf $(srcdir)/$$f $(builddir)/$$f;\
>>   fi;\
>> done;
>> and I modified the file spanning_tree/meta.json as follow:
>>
>>
>>  {
>> "components": [
>> {
>> "python": "nox.apps.spanning_tree.spanning_tree",
>> "dependencies": [
>> "python",
>> "discovery"
>> ],
>> "name": "spanning_tree",
>> }
>> ]
>> }
>>
>> Is there any problem?
>> 在 2010年12月27日 上午9:42,kk yap 写道:
>>
>> Hi,
>>>
>>> Did you update configure.ac.in?
>>>
>>> Regards
>>> KK
>>>
>>>
>>> 2010/12/26 谢峰 
>>>
 When I'm running nox_core with "spanning_tree", it says "the description
 is not found". so I  run nox_core with "routing", it's okay. but it seems
 not to have the function of "spanning_tree".

 在 2010年12月27日 上午1:44,Kyriakos Zarifis 写道:

  Are you running nox_core with "spanning_tree"? What are the sings that
> spanning_tree is not working? Can you attach a log with any relevant error
> messages?
>
> 2010/12/26 谢峰 
>
>  I modified the file:spanning_tree/Makefile.am as follow:
>>
>>
>> include ../../../Make.vars
>> EXTRA_DIST =\
>> meta.json\
>> __init__.py \
>> spanning_tree.py
>> NOX_RUNTIMEFILES = meta.json\
>> __init__.py \
>> spanning_tree.py
>> all-local:
>> @dlist="$(NOX_RUNTIMEFILES)";for f in $$dlist; do \
>>   if test -f $(srcdir)/$$f && test ! -f $$f; then \
>> ln -sf $(srcdir)/$$f $(builddir)/$$f;\
>>   fi;\
>> done;
>> and I modified the file spanning_tree/meta.json as follow:
>>
>>
>> {
>> "components": [
>> {
>> "python": "nox.apps.spanning_tree.spanning_tree",
>> "dependencies": [
>> "python",
>> "discovery"
>> ],
>> "name": "spanning_tree",
>> }
>> ]
>> }
>>
>> Is there some problem, but during the installation, there is no error.
>> however, it seems the spanning_tree doesn't work.
>> Thanks for your help.
>>
>> regards
>>
>> xiefeng
>> 在 2010年12月26日 下午10:37,谢峰 写道:
>>
>> I've done as the steps and I modified the nox.json, after the
>>> installation, In this file "*build/src/etc/nox.json", I see
>>> packet-in-event first say spanning_tree component.*
>>>
>>> 2010/12/26 Kyriakos Zarifis 
>>>
>>> Hi Xiefeng,

 have you taken a look at this? (
 http://www.openflowswitch.org/wk/index.php/Basic_Spanning_Tree#Installation)
 there are a few minor outdated instructions ( for example "cd
 noxcore" should be "cd nox" and "nox.xml" should be "nox.json") but 
 the main
 idea is described there.

   On Sun, Dec 26, 2010 at 3:27 PM, 谢峰  wrote:

>   Hi, all
> I have download tha "Spanning_Tree" component, but I don't know how
> to use it.
> someone can help me?
> thanks,
> xiefeng
>
>
> ___
> nox-dev mailing list
> nox-dev@noxrepo.org
> http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org
>
>

>>>
>>>
>>>
>>
>>
>>
>


 --
 Feng Xie
 Ph.D. Candidate
 Network Security Lab, Research Institute of Information Technology
 Tsinghua National Laboratory for Information Science and Technology
 Dept. of Automation, Tsinghua Univ., Beijing, China, 100084.
 Tel.: +86-010-6277-2656
 Email: xiefen...@gmail.com


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


>>>
>>
>>
>> --
>> Feng Xie
>> Ph.D. Candidate
>> Network Security Lab, Research Institute of Information Technology
>> Tsinghua National L

Re: [nox-dev] how to add a new component

2010-12-26 Thread kk yap
Sorry to ask the obvious, but you did re-run ./boot.sh, ./configure and make
right?  You can tell that I cannot find obvious problems in the files you
posted.

Regards
KK

2010/12/26 谢峰 

> I've updated the file configure.ac.in and src/etc/nox.json. And then I
> modified the file spanning_tree/Makefile.am and spanning_tree/meta.json as
> follow:
>
>
> include ../../../Make.vars
> EXTRA_DIST =\
> meta.json\
> __init__.py \
> spanning_tree.py
> NOX_RUNTIMEFILES = meta.json\
> __init__.py \
> spanning_tree.py
> all-local:
> @dlist="$(NOX_RUNTIMEFILES)";for f in $$dlist; do \
>   if test -f $(srcdir)/$$f && test ! -f $$f; then \
> ln -sf $(srcdir)/$$f $(builddir)/$$f;\
>   fi;\
> done;
> and I modified the file spanning_tree/meta.json as follow:
>
>
> {
> "components": [
> {
> "python": "nox.apps.spanning_tree.spanning_tree",
> "dependencies": [
> "python",
> "discovery"
> ],
> "name": "spanning_tree",
> }
> ]
> }
>
> Is there any problem?
> 在 2010年12月27日 上午9:42,kk yap 写道:
>
> Hi,
>>
>> Did you update configure.ac.in?
>>
>> Regards
>> KK
>>
>>
>> 2010/12/26 谢峰 
>>
>>> When I'm running nox_core with "spanning_tree", it says "the description
>>> is not found". so I  run nox_core with "routing", it's okay. but it seems
>>> not to have the function of "spanning_tree".
>>>
>>> 在 2010年12月27日 上午1:44,Kyriakos Zarifis 写道:
>>>
>>>  Are you running nox_core with "spanning_tree"? What are the sings that
 spanning_tree is not working? Can you attach a log with any relevant error
 messages?

 2010/12/26 谢峰 

  I modified the file:spanning_tree/Makefile.am as follow:
>
>
> include ../../../Make.vars
> EXTRA_DIST =\
> meta.json\
> __init__.py \
> spanning_tree.py
> NOX_RUNTIMEFILES = meta.json\
> __init__.py \
> spanning_tree.py
> all-local:
> @dlist="$(NOX_RUNTIMEFILES)";for f in $$dlist; do \
>   if test -f $(srcdir)/$$f && test ! -f $$f; then \
> ln -sf $(srcdir)/$$f $(builddir)/$$f;\
>   fi;\
> done;
> and I modified the file spanning_tree/meta.json as follow:
>
>
> {
> "components": [
> {
> "python": "nox.apps.spanning_tree.spanning_tree",
> "dependencies": [
> "python",
> "discovery"
> ],
> "name": "spanning_tree",
> }
> ]
> }
>
> Is there some problem, but during the installation, there is no error.
> however, it seems the spanning_tree doesn't work.
> Thanks for your help.
>
> regards
>
> xiefeng
> 在 2010年12月26日 下午10:37,谢峰 写道:
>
> I've done as the steps and I modified the nox.json, after the
>> installation, In this file "*build/src/etc/nox.json", I see
>> packet-in-event first say spanning_tree component.*
>>
>> 2010/12/26 Kyriakos Zarifis 
>>
>> Hi Xiefeng,
>>>
>>> have you taken a look at this? (
>>> http://www.openflowswitch.org/wk/index.php/Basic_Spanning_Tree#Installation)
>>> there are a few minor outdated instructions ( for example "cd
>>> noxcore" should be "cd nox" and "nox.xml" should be "nox.json") but the 
>>> main
>>> idea is described there.
>>>
>>>   On Sun, Dec 26, 2010 at 3:27 PM, 谢峰  wrote:
>>>
   Hi, all
 I have download tha "Spanning_Tree" component, but I don't know how
 to use it.
 someone can help me?
 thanks,
 xiefeng


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


>>>
>>
>>
>>
>
>
>

>>>
>>>
>>> --
>>> Feng Xie
>>> Ph.D. Candidate
>>> Network Security Lab, Research Institute of Information Technology
>>> Tsinghua National Laboratory for Information Science and Technology
>>> Dept. of Automation, Tsinghua Univ., Beijing, China, 100084.
>>> Tel.: +86-010-6277-2656
>>> Email: xiefen...@gmail.com
>>>
>>>
>>> ___
>>> nox-dev mailing list
>>> nox-dev@noxrepo.org
>>> http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org
>>>
>>>
>>
>
>
> --
> Feng Xie
> Ph.D. Candidate
> Network Security Lab, Research Institute of Information Technology
> Tsinghua National Laboratory for Information Science and Technology
> Dept. of Automation, Tsinghua Univ., Beijing, China, 100084.
> Tel.: +86-010-6277-2656
> Email: xiefen...@gmail.com
>
>
___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org


Re: [nox-dev] how to add a new component

2010-12-26 Thread 谢峰
I've updated the file configure.ac.in and src/etc/nox.json. And then I
modified the file spanning_tree/Makefile.am and spanning_tree/meta.json as
follow:


include ../../../Make.vars
EXTRA_DIST =\
meta.json\
__init__.py \
spanning_tree.py
NOX_RUNTIMEFILES = meta.json\
__init__.py \
spanning_tree.py
all-local:
@dlist="$(NOX_RUNTIMEFILES)";for f in $$dlist; do \
  if test -f $(srcdir)/$$f && test ! -f $$f; then \
ln -sf $(srcdir)/$$f $(builddir)/$$f;\
  fi;\
done;
and I modified the file spanning_tree/meta.json as follow:


{
"components": [
{
"python": "nox.apps.spanning_tree.spanning_tree",
"dependencies": [
"python",
"discovery"
],
"name": "spanning_tree",
}
]
}

Is there any problem?
在 2010年12月27日 上午9:42,kk yap 写道:

> Hi,
>
> Did you update configure.ac.in?
>
> Regards
> KK
>
>
> 2010/12/26 谢峰 
>
>> When I'm running nox_core with "spanning_tree", it says "the description
>> is not found". so I  run nox_core with "routing", it's okay. but it seems
>> not to have the function of "spanning_tree".
>>
>> 在 2010年12月27日 上午1:44,Kyriakos Zarifis 写道:
>>
>>  Are you running nox_core with "spanning_tree"? What are the sings that
>>> spanning_tree is not working? Can you attach a log with any relevant error
>>> messages?
>>>
>>> 2010/12/26 谢峰 
>>>
>>>  I modified the file:spanning_tree/Makefile.am as follow:


 include ../../../Make.vars
 EXTRA_DIST =\
 meta.json\
 __init__.py \
 spanning_tree.py
 NOX_RUNTIMEFILES = meta.json\
 __init__.py \
 spanning_tree.py
 all-local:
 @dlist="$(NOX_RUNTIMEFILES)";for f in $$dlist; do \
   if test -f $(srcdir)/$$f && test ! -f $$f; then \
 ln -sf $(srcdir)/$$f $(builddir)/$$f;\
   fi;\
 done;
 and I modified the file spanning_tree/meta.json as follow:


 {
 "components": [
 {
 "python": "nox.apps.spanning_tree.spanning_tree",
 "dependencies": [
 "python",
 "discovery"
 ],
 "name": "spanning_tree",
 }
 ]
 }

 Is there some problem, but during the installation, there is no error.
 however, it seems the spanning_tree doesn't work.
 Thanks for your help.

 regards

 xiefeng
 在 2010年12月26日 下午10:37,谢峰 写道:

 I've done as the steps and I modified the nox.json, after the
> installation, In this file "*build/src/etc/nox.json", I see
> packet-in-event first say spanning_tree component.*
>
> 2010/12/26 Kyriakos Zarifis 
>
> Hi Xiefeng,
>>
>> have you taken a look at this? (
>> http://www.openflowswitch.org/wk/index.php/Basic_Spanning_Tree#Installation)
>> there are a few minor outdated instructions ( for example "cd noxcore"
>> should be "cd nox" and "nox.xml" should be "nox.json") but the main idea 
>> is
>> described there.
>>
>>   On Sun, Dec 26, 2010 at 3:27 PM, 谢峰  wrote:
>>
>>>   Hi, all
>>> I have download tha "Spanning_Tree" component, but I don't know how
>>> to use it.
>>> someone can help me?
>>> thanks,
>>> xiefeng
>>>
>>>
>>> ___
>>> nox-dev mailing list
>>> nox-dev@noxrepo.org
>>> http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org
>>>
>>>
>>
>
>
>



>>>
>>
>>
>> --
>> Feng Xie
>> Ph.D. Candidate
>> Network Security Lab, Research Institute of Information Technology
>> Tsinghua National Laboratory for Information Science and Technology
>> Dept. of Automation, Tsinghua Univ., Beijing, China, 100084.
>> Tel.: +86-010-6277-2656
>> Email: xiefen...@gmail.com
>>
>>
>> ___
>> nox-dev mailing list
>> nox-dev@noxrepo.org
>> http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org
>>
>>
>


-- 
Feng Xie
Ph.D. Candidate
Network Security Lab, Research Institute of Information Technology
Tsinghua National Laboratory for Information Science and Technology
Dept. of Automation, Tsinghua Univ., Beijing, China, 100084.
Tel.: +86-010-6277-2656
Email: xiefen...@gmail.com
___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org


Re: [nox-dev] how to add a new component

2010-12-26 Thread kk yap
Hi,

Did you update configure.ac.in?

Regards
KK

2010/12/26 谢峰 

> When I'm running nox_core with "spanning_tree", it says "the description is
> not found". so I  run nox_core with "routing", it's okay. but it seems not
> to have the function of "spanning_tree".
>
> 在 2010年12月27日 上午1:44,Kyriakos Zarifis 写道:
>
>  Are you running nox_core with "spanning_tree"? What are the sings that
>> spanning_tree is not working? Can you attach a log with any relevant error
>> messages?
>>
>> 2010/12/26 谢峰 
>>
>>  I modified the file:spanning_tree/Makefile.am as follow:
>>>
>>>
>>> include ../../../Make.vars
>>> EXTRA_DIST =\
>>> meta.json\
>>> __init__.py \
>>> spanning_tree.py
>>> NOX_RUNTIMEFILES = meta.json\
>>> __init__.py \
>>> spanning_tree.py
>>> all-local:
>>> @dlist="$(NOX_RUNTIMEFILES)";for f in $$dlist; do \
>>>   if test -f $(srcdir)/$$f && test ! -f $$f; then \
>>> ln -sf $(srcdir)/$$f $(builddir)/$$f;\
>>>   fi;\
>>> done;
>>> and I modified the file spanning_tree/meta.json as follow:
>>>
>>>
>>> {
>>> "components": [
>>> {
>>> "python": "nox.apps.spanning_tree.spanning_tree",
>>> "dependencies": [
>>> "python",
>>> "discovery"
>>> ],
>>> "name": "spanning_tree",
>>> }
>>> ]
>>> }
>>>
>>> Is there some problem, but during the installation, there is no error.
>>> however, it seems the spanning_tree doesn't work.
>>> Thanks for your help.
>>>
>>> regards
>>>
>>> xiefeng
>>> 在 2010年12月26日 下午10:37,谢峰 写道:
>>>
>>> I've done as the steps and I modified the nox.json, after the
 installation, In this file "*build/src/etc/nox.json", I see
 packet-in-event first say spanning_tree component.*

 2010/12/26 Kyriakos Zarifis 

 Hi Xiefeng,
>
> have you taken a look at this? (
> http://www.openflowswitch.org/wk/index.php/Basic_Spanning_Tree#Installation)
> there are a few minor outdated instructions ( for example "cd noxcore"
> should be "cd nox" and "nox.xml" should be "nox.json") but the main idea 
> is
> described there.
>
>   On Sun, Dec 26, 2010 at 3:27 PM, 谢峰  wrote:
>
>>   Hi, all
>> I have download tha "Spanning_Tree" component, but I don't know how to
>> use it.
>> someone can help me?
>> thanks,
>> xiefeng
>>
>>
>> ___
>> nox-dev mailing list
>> nox-dev@noxrepo.org
>> http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org
>>
>>
>



>>>
>>>
>>>
>>
>
>
> --
> Feng Xie
> Ph.D. Candidate
> Network Security Lab, Research Institute of Information Technology
> Tsinghua National Laboratory for Information Science and Technology
> Dept. of Automation, Tsinghua Univ., Beijing, China, 100084.
> Tel.: +86-010-6277-2656
> Email: xiefen...@gmail.com
>
>
> ___
> 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


Re: [nox-dev] how to add a new component

2010-12-26 Thread 谢峰
When I'm running nox_core with "spanning_tree", it says "the description is
not found". so I  run nox_core with "routing", it's okay. but it seems not
to have the function of "spanning_tree".

在 2010年12月27日 上午1:44,Kyriakos Zarifis 写道:

>  Are you running nox_core with "spanning_tree"? What are the sings that
> spanning_tree is not working? Can you attach a log with any relevant error
> messages?
>
> 2010/12/26 谢峰 
>
>  I modified the file:spanning_tree/Makefile.am as follow:
>>
>>
>> include ../../../Make.vars
>> EXTRA_DIST =\
>> meta.json\
>> __init__.py \
>> spanning_tree.py
>> NOX_RUNTIMEFILES = meta.json\
>> __init__.py \
>> spanning_tree.py
>> all-local:
>> @dlist="$(NOX_RUNTIMEFILES)";for f in $$dlist; do \
>>   if test -f $(srcdir)/$$f && test ! -f $$f; then \
>> ln -sf $(srcdir)/$$f $(builddir)/$$f;\
>>   fi;\
>> done;
>> and I modified the file spanning_tree/meta.json as follow:
>>
>>
>> {
>> "components": [
>> {
>> "python": "nox.apps.spanning_tree.spanning_tree",
>> "dependencies": [
>> "python",
>> "discovery"
>> ],
>> "name": "spanning_tree",
>> }
>> ]
>> }
>>
>> Is there some problem, but during the installation, there is no error.
>> however, it seems the spanning_tree doesn't work.
>> Thanks for your help.
>>
>> regards
>>
>> xiefeng
>> 在 2010年12月26日 下午10:37,谢峰 写道:
>>
>> I've done as the steps and I modified the nox.json, after the
>>> installation, In this file "*build/src/etc/nox.json", I see
>>> packet-in-event first say spanning_tree component.*
>>>
>>> 2010/12/26 Kyriakos Zarifis 
>>>
>>> Hi Xiefeng,

 have you taken a look at this? (
 http://www.openflowswitch.org/wk/index.php/Basic_Spanning_Tree#Installation)
 there are a few minor outdated instructions ( for example "cd noxcore"
 should be "cd nox" and "nox.xml" should be "nox.json") but the main idea is
 described there.

   On Sun, Dec 26, 2010 at 3:27 PM, 谢峰  wrote:

>   Hi, all
> I have download tha "Spanning_Tree" component, but I don't know how to
> use it.
> someone can help me?
> thanks,
> xiefeng
>
>
> ___
> nox-dev mailing list
> nox-dev@noxrepo.org
> http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org
>
>

>>>
>>>
>>>
>>
>>
>>
>


-- 
Feng Xie
Ph.D. Candidate
Network Security Lab, Research Institute of Information Technology
Tsinghua National Laboratory for Information Science and Technology
Dept. of Automation, Tsinghua Univ., Beijing, China, 100084.
Tel.: +86-010-6277-2656
Email: xiefen...@gmail.com
___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org


Re: [nox-dev] how to add a new component

2010-12-26 Thread Kyriakos Zarifis
 Are you running nox_core with "spanning_tree"? What are the sings that
spanning_tree is not working? Can you attach a log with any relevant error
messages?

2010/12/26 谢峰 

> I modified the file:spanning_tree/Makefile.am as follow:
>
>
> include ../../../Make.vars
> EXTRA_DIST =\
> meta.json\
> __init__.py \
> spanning_tree.py
> NOX_RUNTIMEFILES = meta.json\
> __init__.py \
> spanning_tree.py
> all-local:
> @dlist="$(NOX_RUNTIMEFILES)";for f in $$dlist; do \
>   if test -f $(srcdir)/$$f && test ! -f $$f; then \
> ln -sf $(srcdir)/$$f $(builddir)/$$f;\
>   fi;\
> done;
> and I modified the file spanning_tree/meta.json as follow:
>
>
> {
> "components": [
> {
> "python": "nox.apps.spanning_tree.spanning_tree",
> "dependencies": [
> "python",
> "discovery"
> ],
> "name": "spanning_tree",
> }
> ]
> }
>
> Is there some problem, but during the installation, there is no error.
> however, it seems the spanning_tree doesn't work.
> Thanks for your help.
>
> regards
>
> xiefeng
> 在 2010年12月26日 下午10:37,谢峰 写道:
>
> I've done as the steps and I modified the nox.json, after the installation,
>> In this file "*build/src/etc/nox.json", I see packet-in-event first say
>> spanning_tree component.*
>>
>> 2010/12/26 Kyriakos Zarifis 
>>
>> Hi Xiefeng,
>>>
>>> have you taken a look at this? (
>>> http://www.openflowswitch.org/wk/index.php/Basic_Spanning_Tree#Installation)
>>> there are a few minor outdated instructions ( for example "cd noxcore"
>>> should be "cd nox" and "nox.xml" should be "nox.json") but the main idea is
>>> described there.
>>>
>>>   On Sun, Dec 26, 2010 at 3:27 PM, 谢峰  wrote:
>>>
   Hi, all
 I have download tha "Spanning_Tree" component, but I don't know how to
 use it.
 someone can help me?
 thanks,
 xiefeng


 ___
 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


Re: [nox-dev] how to add a new component

2010-12-26 Thread 谢峰
I modified the file:spanning_tree/Makefile.am as follow:


include ../../../Make.vars
EXTRA_DIST =\
meta.json\
__init__.py \
spanning_tree.py
NOX_RUNTIMEFILES = meta.json\
__init__.py \
spanning_tree.py
all-local:
@dlist="$(NOX_RUNTIMEFILES)";for f in $$dlist; do \
  if test -f $(srcdir)/$$f && test ! -f $$f; then \
ln -sf $(srcdir)/$$f $(builddir)/$$f;\
  fi;\
done;
and I modified the file spanning_tree/meta.json as follow:


{
"components": [
{
"python": "nox.apps.spanning_tree.spanning_tree",
"dependencies": [
"python",
"discovery"
],
"name": "spanning_tree",
}
]
}

Is there some problem, but during the installation, there is no error.
however, it seems the spanning_tree doesn't work.
Thanks for your help.

regards

xiefeng
在 2010年12月26日 下午10:37,谢峰 写道:

> I've done as the steps and I modified the nox.json, after the installation,
> In this file "*build/src/etc/nox.json", I see packet-in-event first say
> spanning_tree component.*
>
> 2010/12/26 Kyriakos Zarifis 
>
> Hi Xiefeng,
>>
>> have you taken a look at this? (
>> http://www.openflowswitch.org/wk/index.php/Basic_Spanning_Tree#Installation)
>> there are a few minor outdated instructions ( for example "cd noxcore"
>> should be "cd nox" and "nox.xml" should be "nox.json") but the main idea is
>> described there.
>>
>>   On Sun, Dec 26, 2010 at 3:27 PM, 谢峰  wrote:
>>
>>>   Hi, all
>>> I have download tha "Spanning_Tree" component, but I don't know how to
>>> use it.
>>> someone can help me?
>>> thanks,
>>> xiefeng
>>>
>>>
>>> ___
>>> 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


Re: [nox-dev] how to add a new component

2010-12-26 Thread 谢峰
I've done as the steps and I modified the nox.json, after the installation,
In this file "*build/src/etc/nox.json", I see packet-in-event first say
spanning_tree component.*

2010/12/26 Kyriakos Zarifis 

> Hi Xiefeng,
>
> have you taken a look at this? (
> http://www.openflowswitch.org/wk/index.php/Basic_Spanning_Tree#Installation)
> there are a few minor outdated instructions ( for example "cd noxcore"
> should be "cd nox" and "nox.xml" should be "nox.json") but the main idea is
> described there.
>
>   On Sun, Dec 26, 2010 at 3:27 PM, 谢峰  wrote:
>
>>   Hi, all
>> I have download tha "Spanning_Tree" component, but I don't know how to use
>> it.
>> someone can help me?
>> thanks,
>> xiefeng
>>
>>
>> ___
>> nox-dev mailing list
>> nox-dev@noxrepo.org
>> http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org
>>
>>
>


-- 
Feng Xie
Ph.D. Candidate
Network Security Lab, Research Institute of Information Technology
Tsinghua National Laboratory for Information Science and Technology
Dept. of Automation, Tsinghua Univ., Beijing, China, 100084.
Tel.: +86-010-6277-2656
Email: xiefen...@gmail.com
___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org


Re: [nox-dev] how to add a new component

2010-12-26 Thread Kyriakos Zarifis
Hi Xiefeng,

have you taken a look at this? (
http://www.openflowswitch.org/wk/index.php/Basic_Spanning_Tree#Installation)
there are a few minor outdated instructions ( for example "cd noxcore"
should be "cd nox" and "nox.xml" should be "nox.json") but the main idea is
described there.

On Sun, Dec 26, 2010 at 3:27 PM, 谢峰  wrote:

> Hi, all
> I have download tha "Spanning_Tree" component, but I don't know how to use
> it.
> someone can help me?
> thanks,
> xiefeng
>
>
> ___
> 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] how to add a new component

2010-12-26 Thread 谢峰
Hi, all
I have download tha "Spanning_Tree" component, but I don't know how to use
it.
someone can help me?
thanks,
xiefeng
___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org