NOX is an open-source OpenFlow controller. Its purpose is to provide a simplified platform for writing network control software in C++ or Python. While still under heavy development, NOX is currently used in a number of large production network deployments. New users can learn more from the NOX development mailing list.
We pushed 0.4.0 to the public nox git repository. The primary benefit of these changes is that much of the cruft which was never used has been removed. Also it is now possible to only build the core apps (with greatly reduced compile times).
To build just the core packages:
git clone git://noxrepo.org/noxcore
cd noxcore
./boot.sh –apps-core
mkdir build && cd build
../configure –with-python=yes –enable-ndebug
make – j 2
Please let us know if you experience build problems.