blob: ec7640514bacf8e2fa4c6a2895cbb05fc18ea556 [file] [log] [blame]
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -08001Getting Started
2===============
3
4Portability
5------------
6
7ndnSIM has been successfully compiled and used under Ubuntu Linux 12.04 (stock gcc, boost 1.48), Mac OS 10.8 (gcc-4.2 apple/llvm, macports gcc 4.7, boost 1.49-1.52).
8
9.. _requirements:
10
11Requirements
12-------------
13
141. ndnSIM requires the customized version of NS-3 simulator (a number of patches required to make ndnSIM work with the latest development branch of NS-3).
15
162. Boost libraries should be installed on the system:
17
Alexander Afanasyev326410e2013-03-09 20:39:11 -080018 * For Ubuntu (for Ubuntu 12.10 and later only):
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -080019
Alexander Afanasyev326410e2013-03-09 20:39:11 -080020 .. code-block:: bash
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -080021
Alexander Afanasyev326410e2013-03-09 20:39:11 -080022 sudo aptitude install libboost-all-dev
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -080023
Alexander Afanasyev326410e2013-03-09 20:39:11 -080024 * For Fedora (for Fedora 18 and later only):
25
26 .. code-block:: bash
27
28 sudo yum install boost-devel
29
30 * For MacOS (macports):
31
32 .. code-block:: bash
33
34 sudo port instal boost
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -080035
Alexander Afanasyev26b558b2012-12-13 11:39:46 -080036.. role:: red
37
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -080038.. note::
Alexander Afanasyev326410e2013-03-09 20:39:11 -080039 :red:`!!! ndnSIM requires boost version at least 1.48.` Many linux distribution (including Ubuntu 12.04.1 and Fedore 16, 17 at the time of this writing) ship an old version of boost, making it impossible to compile ndnSIM out-of-the-box. Please install the latest version, following :ref:`these simple instructions <Installing boost libraries>`.
Alexander Afanasyev26b558b2012-12-13 11:39:46 -080040
41.. note::
Alexander Afanasyev326410e2013-03-09 20:39:11 -080042 !!! If you do not have root permissions to install boost, you can install it in your home folder. However, you need to be make sure that `libboost_iostreams` library is successfully compiled and is installed. Please refer to :ref:`the following example <Installing boost libraries>` for the hints how to successfully compile and install boost libraries on Ubuntu Linux.
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -080043
44
453. If you are planning to use other modules, like visualizer, a number of additional dependencies should be installed. For example, in
46order to run `visualizer`_ module, the following should be installed:
47
Alexander Afanasyev326410e2013-03-09 20:39:11 -080048 * For Ubuntu (tested on Ubuntu 12.04.1):
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -080049
Alexander Afanasyev326410e2013-03-09 20:39:11 -080050 .. code-block:: bash
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -080051
Alexander Afanasyev326410e2013-03-09 20:39:11 -080052 sudo apt-get install python-dev python-pygraphviz python-kiwi
53 sudo apt-get install python-pygoocanvas python-gnome2
54 sudo apt-get install python-gnomedesktop python-rsvg ipython
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -080055
Alexander Afanasyev326410e2013-03-09 20:39:11 -080056 * For Fedora (tested on Fedora 16):
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -080057
Alexander Afanasyev326410e2013-03-09 20:39:11 -080058 .. code-block:: bash
59
60 sudo yum install pygoocanvas python-kiwi graphviz-python
61
62 # easy_install method, since pygraphviz is not yet packaged into Fedora (https://bugzilla.redhat.com/show_bug.cgi?id=740687)
63 sudo yum install graphviz-devel
64 sudo yum install python-pip
65 sudo easy_install pygraphviz
66
67 * For MacOS (macports):
68
69 .. code-block:: bash
70
71 sudo port install py27-pygraphviz py27-goocanvas
72
73.. py27-kiwi
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -080074
75.. _visualizer: http://www.nsnam.org/wiki/index.php/PyViz
76
77Downloading ndnSIM source
78-------------------------
79
Alexander Afanasyev326410e2013-03-09 20:39:11 -080080Download a custom branch of NS-3 that contains all necessary patches and more:
81
82.. code-block:: bash
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -080083
84 mkdir ndnSIM
85 cd ndnSIM
86 git clone git://github.com/cawka/ns-3-dev-ndnSIM.git ns-3
87 git clone git://github.com/cawka/pybindgen.git pybindgen
88
Alexander Afanasyev326410e2013-03-09 20:39:11 -080089The first command is to create a directory, which will contain everything NS-3 related. The bare minimum is just base NS-3 (the first clone above). The second clone gets a module necessary to build python bindings, which are necessary for the visualizer module.
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -080090
91Finally, clone actual ndnSIM code and place it in src/ folder::
92
Alexander Afanasyev326410e2013-03-09 20:39:11 -080093.. code-block:: bash
94
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -080095 git clone git://github.com/NDN-Routing/ndnSIM.git ns-3/src/ndnSIM
96
97There are quite a few modification to the base NS-3 code that are necessary to run ndnSIM, and the code is periodically synchronized with the official developer branch. Eventually, all the changes will be merged to the official branch, but for the time being, it is necessary to use the customized branch.
98
99Compiling and running ndnSIM
100----------------------------
101
Alexander Afanasyev326410e2013-03-09 20:39:11 -0800102ndnSIM uses standard NS-3 compilation procedure. Normally the following commands should be sufficient to configure and build ndnSIM with python bindings enabled:
103
104.. code-block:: bash
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -0800105
106 cd <ns-3-folder>
Alexander Afanasyev26b558b2012-12-13 11:39:46 -0800107 ./waf configure --enable-examples
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -0800108 ./waf
109
Alexander Afanasyev326410e2013-03-09 20:39:11 -0800110On MacOS (with macports), you may need to modify the configure command to use macports version of python:
111
112.. code-block:: bash
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -0800113
114 cd <ns-3-folder>
Alexander Afanasyev26b558b2012-12-13 11:39:46 -0800115 ./waf configure --with-python=/opt/local/bin/python2.7 --enable-examples
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -0800116 ./waf
117
Alexander Afanasyev326410e2013-03-09 20:39:11 -0800118Python bindings is an optional and not very stable feature of NS-3 simulator. It is possible to disable python bindings compilation either to speed up compilation or to avoid certain compilation errors (e.g., "Could not find a task generator for the name 'ns3-visualizer'"):
119
120.. code-block:: bash
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -0800121
122 cd <ns-3-folder>
Alexander Afanasyev26b558b2012-12-13 11:39:46 -0800123 ./waf configure --disable-python --enable-examples
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -0800124 ./waf
125
126For more configuration options, please refer to ``./waf --help``.
127
Alexander Afanasyev326410e2013-03-09 20:39:11 -0800128To run :doc:`sample ndnSIM simulations <examples>`:
129
130.. code-block:: bash
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -0800131
132 ./waf --run=ndn-simple
133
Alexander Afanasyev326410e2013-03-09 20:39:11 -0800134or:
135
136.. code-block:: bash
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -0800137
138 ./waf --run=ndn-grid
139
Alexander Afanasyev326410e2013-03-09 20:39:11 -0800140If you have compiled with python bindings, then you can try to run these simulations with visualizer:
141
142.. code-block:: bash
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -0800143
144 ./waf --run=ndn-simple --vis
145
Alexander Afanasyev326410e2013-03-09 20:39:11 -0800146or:
147
148.. code-block:: bash
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -0800149
150 ./waf --run=ndn-grid --vis
151
152.. note::
153 Do not forget to configure and compile NS-3 in optimized mode (``./waf configure -d optimized``) in order to run actual simulations.
154
Alexander Afanasyeve095f0f2012-11-21 17:43:32 -0800155