| 72 | |
| 73 | == Install NOX == |
| 74 | |
| 75 | Followed the [http://noxrepo.org/noxwiki/index.php/NOX_Installation NOX Installation] instructions from the noxrepo.org web site. |
| 76 | only evaluated Ubuntu instructions. Install dependencies: |
| 77 | {{{ |
| 78 | $ cd /etc/apt/sources.list.d |
| 79 | $ sudo wget http://openflowswitch.org/downloads/debian/nox.list |
| 80 | $ sudo apt-get update |
| 81 | $ sudo apt-get install nox-dependencies |
| 82 | }}} |
| 83 | Downloaded the NOX source code, but had to install the following undocumented packages for the instruction to work: |
| 84 | {{{ |
| 85 | $ sudo apt-get install git-core |
| 86 | }}} |
| 87 | NOX installation |
| 88 | {{{ |
| 89 | $ git clone git://noxrepo.org/nox |
| 90 | $ cd nox |
| 91 | $ git checkout zaku |
| 92 | $ ./boot.sh |
| 93 | $ mkdir build/ |
| 94 | $ cd build/ |
| 95 | $ ../configure |
| 96 | $ make -j 5 |
| 97 | }}} |
| 98 | |
| 99 | Followed the [http://noxrepo.org/noxwiki/index.php/Using_NOX Using NOX] instructions from the noxrepo.org web site. |
| 100 | {{{ |
| 101 | |
| 102 | }}} |
| 103 | |
| 104 | |
| 105 | |