Changes between Version 34 and Version 35 of GIR3.2_EnterpriseGENI


Ignore:
Timestamp:
09/28/11 16:13:39 (13 years ago)
Author:
lnevers@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GIR3.2_EnterpriseGENI

    v34 v35  
    7171Issues found, captured in [attachment:"Feedback-Flowvisor0.8.1.2.txt" email]. (and bugs?)
    7272
     73== FOAM Installation and Configuration ==
     74
     75
     76
     77
     78== NOX Installation ==
     79
     80Followed the [http://noxrepo.org/noxwiki/index.php/NOX_Installation NOX Installation] instructions from the noxrepo.org web site.
     81only evaluated Ubuntu instructions.  Install dependencies:
     82{{{
     83$ cd /etc/apt/sources.list.d
     84$ sudo wget http://openflowswitch.org/downloads/debian/nox.list
     85$ sudo apt-get update
     86$ sudo apt-get install nox-dependencies
     87}}}
     88Downloaded the NOX source code, but had to install the following undocumented packages for the instruction to work:
     89{{{
     90$ sudo apt-get install git-core
     91}}}
     92NOX installation
     93{{{
     94$ git clone git://noxrepo.org/nox
     95$ cd nox
     96$ git checkout zaku
     97$ ./boot.sh
     98$ mkdir build/
     99$ cd build/
     100$ ../configure
     101$ make -j 5
     102}}}
     103
     104Followed the [http://noxrepo.org/noxwiki/index.php/Using_NOX Using NOX] instructions from the noxrepo.org web site.
     105{{{
     106$ cd nox/build/src
     107$ ./nox_core -v -i ptcp:6633
     108
     109}}}
     110
     111Installed the nox-gui pre-requisites and started nox-gui:
     112{{{
     113$ sudo apt-get install python-qt4 python-simplejson
     114???
     115}}}
     116
     117
    73118== Expedient Installation ==
    74119
     
    117162}}}
    118163
    119 
    120 
    121 == NOX Installation ==
    122 
    123 Followed the [http://noxrepo.org/noxwiki/index.php/NOX_Installation NOX Installation] instructions from the noxrepo.org web site.
    124 only evaluated Ubuntu instructions.  Install dependencies:
    125 {{{
    126 $ cd /etc/apt/sources.list.d
    127 $ sudo wget http://openflowswitch.org/downloads/debian/nox.list
    128 $ sudo apt-get update
    129 $ sudo apt-get install nox-dependencies
    130 }}}
    131 Downloaded the NOX source code, but had to install the following undocumented packages for the instruction to work:
    132 {{{
    133 $ sudo apt-get install git-core
    134 }}}
    135 NOX installation
    136 {{{
    137 $ git clone git://noxrepo.org/nox
    138 $ cd nox
    139 $ git checkout zaku
    140 $ ./boot.sh
    141 $ mkdir build/
    142 $ cd build/
    143 $ ../configure
    144 $ make -j 5
    145 }}}
    146 
    147 Followed the [http://noxrepo.org/noxwiki/index.php/Using_NOX Using NOX] instructions from the noxrepo.org web site.
    148 {{{
    149 $ cd nox/build/src
    150 $ ./nox_core -v -i ptcp:6633
    151 
    152 }}}
    153 
    154 Installed the nox-gui pre-requisites and started nox-gui:
    155 {{{
    156 $ sudo apt-get install python-qt4 python-simplejson
    157 ???
    158 }}}
    159 
    160 
    161 [[BR]]
     164After running into several issues, stopped evaluation due to the documentation and source not being maintained.