Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 1 | Getting Started |
| 2 | =============== |
| 3 | |
| 4 | Portability |
| 5 | ------------ |
| 6 | |
| 7 | ndnSIM 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 | |
| 11 | Requirements |
| 12 | ------------- |
| 13 | |
| 14 | 1. 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 | |
| 16 | 2. Boost libraries should be installed on the system: |
| 17 | |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 18 | * For Ubuntu (for Ubuntu 12.10 and later only): |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 19 | |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 20 | .. code-block:: bash |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 21 | |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 22 | sudo aptitude install libboost-all-dev |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 23 | |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 24 | * 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 Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 35 | |
Alexander Afanasyev | 26b558b | 2012-12-13 11:39:46 -0800 | [diff] [blame] | 36 | .. role:: red |
| 37 | |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 38 | .. note:: |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 39 | :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 Afanasyev | 26b558b | 2012-12-13 11:39:46 -0800 | [diff] [blame] | 40 | |
| 41 | .. note:: |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 42 | !!! 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 Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 43 | |
| 44 | |
| 45 | 3. If you are planning to use other modules, like visualizer, a number of additional dependencies should be installed. For example, in |
| 46 | order to run `visualizer`_ module, the following should be installed: |
| 47 | |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 48 | * For Ubuntu (tested on Ubuntu 12.04.1): |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 49 | |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 50 | .. code-block:: bash |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 51 | |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 52 | 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 Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 55 | |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 56 | * For Fedora (tested on Fedora 16): |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 57 | |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 58 | .. 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 Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 74 | |
| 75 | .. _visualizer: http://www.nsnam.org/wiki/index.php/PyViz |
| 76 | |
| 77 | Downloading ndnSIM source |
| 78 | ------------------------- |
| 79 | |
Alexander Afanasyev | 701e508 | 2013-03-13 09:47:50 -0700 | [diff] [blame] | 80 | Download a custom branch of NS-3 that contains all necessary patches, python binding generation library (optional), and clone actual ndnSIM code and place it in src/ folder: |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 81 | |
| 82 | .. code-block:: bash |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 83 | |
| 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 |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 88 | git clone git://github.com/NDN-Routing/ndnSIM.git ns-3/src/ndnSIM |
| 89 | |
| 90 | There 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. |
| 91 | |
Alexander Afanasyev | 701e508 | 2013-03-13 09:47:50 -0700 | [diff] [blame] | 92 | If you have problems connecting to github, you can try to clone from google servers: |
| 93 | |
| 94 | .. code-block:: bash |
| 95 | |
| 96 | mkdir ndnSIM |
| 97 | cd ndnSIM |
| 98 | git clone https://code.google.com/p/ndnsim.ns3-base/ ns-3 |
| 99 | git clone https://code.google.com/p/ndnsim.pybindgen/ pybindgen |
| 100 | git clone https://code.google.com/p/ndnsim/ ns-3/src/ndnSIM |
| 101 | |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 102 | Compiling and running ndnSIM |
| 103 | ---------------------------- |
| 104 | |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 105 | ndnSIM uses standard NS-3 compilation procedure. Normally the following commands should be sufficient to configure and build ndnSIM with python bindings enabled: |
| 106 | |
| 107 | .. code-block:: bash |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 108 | |
| 109 | cd <ns-3-folder> |
Alexander Afanasyev | 26b558b | 2012-12-13 11:39:46 -0800 | [diff] [blame] | 110 | ./waf configure --enable-examples |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 111 | ./waf |
| 112 | |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 113 | On MacOS (with macports), you may need to modify the configure command to use macports version of python: |
| 114 | |
| 115 | .. code-block:: bash |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 116 | |
| 117 | cd <ns-3-folder> |
Alexander Afanasyev | 26b558b | 2012-12-13 11:39:46 -0800 | [diff] [blame] | 118 | ./waf configure --with-python=/opt/local/bin/python2.7 --enable-examples |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 119 | ./waf |
| 120 | |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 121 | Python 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'"): |
| 122 | |
| 123 | .. code-block:: bash |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 124 | |
| 125 | cd <ns-3-folder> |
Alexander Afanasyev | 26b558b | 2012-12-13 11:39:46 -0800 | [diff] [blame] | 126 | ./waf configure --disable-python --enable-examples |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 127 | ./waf |
| 128 | |
| 129 | For more configuration options, please refer to ``./waf --help``. |
| 130 | |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 131 | To run :doc:`sample ndnSIM simulations <examples>`: |
| 132 | |
| 133 | .. code-block:: bash |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 134 | |
| 135 | ./waf --run=ndn-simple |
| 136 | |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 137 | or: |
| 138 | |
| 139 | .. code-block:: bash |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 140 | |
| 141 | ./waf --run=ndn-grid |
| 142 | |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 143 | If you have compiled with python bindings, then you can try to run these simulations with visualizer: |
| 144 | |
| 145 | .. code-block:: bash |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 146 | |
| 147 | ./waf --run=ndn-simple --vis |
| 148 | |
Alexander Afanasyev | 326410e | 2013-03-09 20:39:11 -0800 | [diff] [blame] | 149 | or: |
| 150 | |
| 151 | .. code-block:: bash |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 152 | |
| 153 | ./waf --run=ndn-grid --vis |
| 154 | |
| 155 | .. note:: |
| 156 | Do not forget to configure and compile NS-3 in optimized mode (``./waf configure -d optimized``) in order to run actual simulations. |
| 157 | |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 158 | |
Alexander Afanasyev | 701e508 | 2013-03-13 09:47:50 -0700 | [diff] [blame] | 159 | Simulating using ndnSIM |
| 160 | ----------------------- |
| 161 | |
| 162 | While it is possible to write simulations directly inside NS-3 (in ``scratch/`` folder) or ndnSIM (in ``examples/``), the recommended way is to write your simulation scenarios, as well as any custom extensions, separately from the NS-3 or ndnSIM core. |
| 163 | |
Alexander Afanasyev | a79df57 | 2013-07-26 11:32:42 -0700 | [diff] [blame] | 164 | For example, you can use the following template to write your extensions, simulation scenarios, and metric processing scripts: `<http://github.com/cawka/ndnSIM-scenario-template>`_: |
Alexander Afanasyev | 701e508 | 2013-03-13 09:47:50 -0700 | [diff] [blame] | 165 | |
| 166 | .. code-block:: bash |
| 167 | |
| 168 | mkdir ndnSIM |
| 169 | cd ndnSIM |
| 170 | git clone git://github.com/cawka/ns-3-dev-ndnSIM.git ns-3 |
| 171 | git clone git://github.com/cawka/pybindgen.git pybindgen |
| 172 | git clone git://github.com/NDN-Routing/ndnSIM.git ns-3/src/ndnSIM |
| 173 | |
| 174 | # Build and install NS-3 and ndnSIM |
| 175 | cd ns-3 |
| 176 | ./waf configure -d optimized |
| 177 | ./waf |
| 178 | |
| 179 | sudo ./waf install |
| 180 | cd .. |
| 181 | |
| 182 | git clone git://github.com/cawka/ndnSIM-scenario-template.git scenario |
| 183 | cd scenario |
| 184 | export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig |
| 185 | export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH |
| 186 | |
| 187 | ./waf configure |
| 188 | |
| 189 | ./waf --run <scenario> |
| 190 | |
| 191 | For more detailed information, refer to `README file <https://github.com/cawka/ndnSIM-scenario-template/blob/master/README.md>`_. |
| 192 | |
| 193 | Examples of template-based simulations |
| 194 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 195 | |
| 196 | 1. ndnSIM examples from `<http://ndnsim.net>`_ website and more: |
| 197 | |
| 198 | - `<http://github.com/cawka/ndnSIM-examples>`_, or |
| 199 | - `<http://code.google.com/p/ndnsim.ndnsim-examples/>`_ |
| 200 | |
| 201 | 2. Script scenarios and graph processing scripts for simulations used in "A Case for Stateful Forwarding Plane" paper by Yi et al. (`<http://dx.doi.org/10.1016/j.comcom.2013.01.005>`_): |
| 202 | |
| 203 | - `<http://github.com/cawka/ndnSIM-comcom-stateful-fw>`_, or |
| 204 | - `<http://code.google.com/p/ndnsim.ndnsim-comcom/>`_ |
| 205 | |
| 206 | 3. Script scenarios and graph processing scripts for simulations used in "Rapid Traffic Information Dissemination Using Named Data" paper by Wang et al. (`<http://dx.doi.org/10.1145/2248361.2248365>`_): |
| 207 | |
| 208 | - `<http://github.com/cawka/ndnSIM-nom-rapid-car2car>`_, or |
| 209 | - `<http://code.google.com/p/ndnsim.ndnsim-nom-rapid/>`_ |
| 210 | |
| 211 | - Rocketfuel-based topology generator for ndnSIM preferred format (randomly assigned link delays and bandwidth, based on estimated types of connections between nodes): |
| 212 | |
| 213 | - `<http://github.com/cawka/ndnSIM-sample-topologies>`_, or |
| 214 | - `<http://code.google.com/p/ndnsim.ndnsim-sample-topo/>`_ |