Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 1 | .. ndnSIM: NS-3 based NDN simulator |
| 2 | .. ============================================================ |
| 3 | |
Alexander Afanasyev | f34fe56 | 2013-08-09 17:16:12 -0700 | [diff] [blame] | 4 | ============ |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 5 | Introduction |
Alexander Afanasyev | 5d79e68 | 2012-11-19 14:12:23 -0800 | [diff] [blame] | 6 | ============ |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 7 | |
Alexander Afanasyev | fc9d9e1 | 2013-08-10 14:17:49 -0700 | [diff] [blame] | 8 | .. sidebar:: ndnSIM components |
| 9 | |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 10 | .. image:: _static/ndnSIM-structure.* |
Alexander Afanasyev | fc9d9e1 | 2013-08-10 14:17:49 -0700 | [diff] [blame] | 11 | :width: 100% |
| 12 | |
Alexander Afanasyev | 5dee361 | 2015-08-25 16:09:04 -0700 | [diff] [blame] | 13 | - Packet format changed to [NDN Packet Specification](http://named-data.net/doc/ndn-tlv/) |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 14 | |
Alexander Afanasyev | 5dee361 | 2015-08-25 16:09:04 -0700 | [diff] [blame] | 15 | - ndnSIM uses implementation of basic NDN primitives from |
| 16 | [ndn-cxx library (NDN C++ library with eXperimental eXtensions)](http://named-data.net/doc/ndn-cxx/) |
| 17 | |
| 18 | - All NDN forwarding and management is implemented directly using source code of |
| 19 | [Named Data Networking Forwarding Daemon (NFD)](http://named-data.net/doc/NFD/) |
| 20 | |
| 21 | - Allows [simulation of real applications](http://ndnsim.net/2.1/guide-to-simulate-real-apps.html) |
| 22 | written against ndn-cxx library |
| 23 | |
| 24 | |
| 25 | A new release of `NS-3 based Named Data Networking (NDN) simulator <http://ndnsim.net/1.0/>`__ |
| 26 | went through a number of extensive refactoring and rewriting. The key new features of the |
| 27 | new version: |
| 28 | |
| 29 | - Packet format changed to the `NDN packet format <http://named-data.net/doc/ndn-tlv/>`_ |
| 30 | |
| 31 | - ndnSIM uses implementation of basic NDN primitives from |
| 32 | `ndn-cxx library (NDN C++ library with eXperimental eXtensions) |
| 33 | <http://named-data.net/doc/ndn-cxx/>`_ |
| 34 | |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 35 | - All NDN forwarding and management is implemented directly using source code of `Named |
| 36 | Data Networking Forwarding Daemon (NFD) <http://named-data.net/doc/NFD/>`_ |
Alexander Afanasyev | 5dee361 | 2015-08-25 16:09:04 -0700 | [diff] [blame] | 37 | |
| 38 | - It is possible to :doc:`simulation some real applications <guide-to-simulate-real-apps>` |
| 39 | written against ndn-cxx library |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 40 | |
| 41 | .. note:: |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 42 | Please note that ndnSIM 2.0 has major refactoring and simulation scenario written for |
| 43 | previous releases most likely would need to be changed to run on ndnSIM 2.0 platform. |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 44 | |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 45 | Such integration with ndn-cxx and NFD ensures that the simulations are maximally realistic |
| 46 | and can be reproduced in real environments with virtually no changes to the source code. |
| 47 | In addition to that, any experiments with NDN forwarding (e.g., custom forwarding |
| 48 | strategies) inside ndnSIM can be directly used within the real NFD implementation. |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 49 | |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 50 | Specifically, the simulator directly uses NFD implementations of :nfd:`pending Interest |
Spyridon Mastorakis | acd5e1a | 2016-12-07 14:34:25 -0800 | [diff] [blame^] | 51 | table (PIT) <nfd::pit::Pit>`, :nfd:`forwarding information base (FIB) <nfd::fib::Fib>`, and |
Spyridon Mastorakis | 5897c96 | 2015-08-31 15:37:18 -0700 | [diff] [blame] | 52 | :nfd:`content store <nfd::cs::Cs>` data structures. In addition to that, ndnSIM allows |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 53 | experimentation with :ndnSIM:`ndnSIM-specific content store <ndn::ContentStore>` along |
| 54 | with its cache replacement policies ported from the previous version of ndnSIM. |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 55 | |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 56 | ndnSIM is implemented as a new network-layer protocol model and can run on top of any |
| 57 | available link-layer protocol model (point-to-point, CSMA, wireless, etc.). |
| 58 | In addition, the simulator provides an extensive collection of interfaces and helpers to |
| 59 | perform detailed tracing behavior of every component, as well as NDN traffic flow. |
| 60 | |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 61 | |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 62 | More documentation |
| 63 | ------------------ |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 64 | |
Spyridon Mastorakis | acd5e1a | 2016-12-07 14:34:25 -0800 | [diff] [blame^] | 65 | Overall structure of ndnSIM is described in our technical reports: |
| 66 | |
| 67 | - **S. Mastorakis, A. Afanasyev, I. Moiseenko, and L. Zhang, "ndnSIM 2: An updated NDN simulator for NS-3," NDN, Technical Report NDN-0028, Revision 2, 2016** (`PDF <https://named-data.net/wp-content/uploads/2016/11/ndn-0028-2-ndnsim-v2.pdf>`__, `BibTex <http://lasr.cs.ucla.edu/afanasyev/bibwiki/bibtex/399>`__) |
| 68 | |
| 69 | - **A. Afanasyev, I. Moiseenko, and L. Zhang, "ndnSIM: NDN simulator for NS-3," NDN, Technical Report NDN-0005, 2012** (`PDF <https://named-data.net/wp-content/uploads/TRndnsim.pdf>`__, `BibTex <http://lasr.cs.ucla.edu/afanasyev/bibwiki/bibtex/367>`__) |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 70 | |
Alexander Afanasyev | 97fb44d | 2012-06-04 18:50:47 -0700 | [diff] [blame] | 71 | `ndnSIM API documentation <doxygen/index.html>`_ |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 72 | |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 73 | Also, you can `join our mailing list |
| 74 | <http://www.lists.cs.ucla.edu/mailman/listinfo/ndnsim>`_ to see and participate in |
| 75 | discussions about ndnSIM implementation and simulations in general. Do not forget to |
| 76 | check mailling list `archives <http://www.lists.cs.ucla.edu/pipermail/ndnsim/>`_. |
Alexander Afanasyev | 97fb44d | 2012-06-04 18:50:47 -0700 | [diff] [blame] | 77 | |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 78 | |
Alexander Afanasyev | 508269a | 2012-07-28 13:59:54 -0700 | [diff] [blame] | 79 | Support |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 80 | ------- |
Alexander Afanasyev | 508269a | 2012-07-28 13:59:54 -0700 | [diff] [blame] | 81 | |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 82 | The code of ndnSIM is in active development. Bug reports (issues) as well as new feature |
| 83 | implementation are always welcome. |
Alexander Afanasyev | 508269a | 2012-07-28 13:59:54 -0700 | [diff] [blame] | 84 | |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 85 | To file a bug report, please use `NDN Redmine |
| 86 | <http://redmine.named-data.net/projects/ndnsim>`_. |
Alexander Afanasyev | 508269a | 2012-07-28 13:59:54 -0700 | [diff] [blame] | 87 | |
| 88 | To create new feature, please fork the code and submit Pull Request on GitHub. |
| 89 | |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 90 | And of course, `our mailing list <http://www.lists.cs.ucla.edu/mailman/listinfo/ndnsim>`_ |
| 91 | is the best way to communicate with and get support from ndnSIM team and other users of |
| 92 | ndnSIM. |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 93 | |
| 94 | A very short guide to the code |
Alexander Afanasyev | d4e97b3 | 2012-06-04 15:09:50 -0700 | [diff] [blame] | 95 | ------------------------------ |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 96 | |
Alexander Afanasyev | 6315ef7 | 2012-06-01 20:56:31 -0700 | [diff] [blame] | 97 | All the NDN related code is in ``ns-3/src/ndnSIM`` |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 98 | |
| 99 | +-----------------+---------------------------------------------------------------------+ |
| 100 | | Folder | Description | |
| 101 | +=================+=====================================================================+ |
Alexander Afanasyev | f6807a5 | 2012-08-10 18:11:43 -0700 | [diff] [blame] | 102 | | ``model/`` | implementation of NDN base: :ndnsim:`L3Protocol`, faces | |
Spyridon Mastorakis | acd5e1a | 2016-12-07 14:34:25 -0800 | [diff] [blame^] | 103 | | | (:ndnsim:`Face`, :ndnsim:`NetDeviceTransport`, | |
spirosmastorakis | c09bb40 | 2016-10-28 19:16:58 -0700 | [diff] [blame] | 104 | | | :ndnsim:`AppLinkService`), | |
Alexander Afanasyev | 6315ef7 | 2012-06-01 20:56:31 -0700 | [diff] [blame] | 105 | | | etc. | |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 106 | +-----------------+---------------------------------------------------------------------+ |
Alexander Afanasyev | 5dee361 | 2015-08-25 16:09:04 -0700 | [diff] [blame] | 107 | | ``NFD/`` | submodule of `NDN Forwarding Daemon (NFD)`_ source code with few | |
| 108 | | | modifications to make it compatible with the simulator | |
| 109 | +-----------------+---------------------------------------------------------------------+ |
| 110 | | ``ndn-cxx/`` | submodule of `ndn-cxx library`_ source code with few | |
| 111 | | | modifications to make it compatible with the simulator | |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 112 | +-----------------+---------------------------------------------------------------------+ |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 113 | | ``apps/`` | applications (in NS-3 sense) that can be installed on the nodes. | |
Alexander Afanasyev | f6807a5 | 2012-08-10 18:11:43 -0700 | [diff] [blame] | 114 | | | Right now we have one producer (:ndnsim:`Producer`) and a | |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 115 | | | collection of consumer applications (:ndnsim:`ConsumerCbr`, | |
| 116 | | | :ndnsim:`ConsumerWindow`, :ndnsim:`ConsumerBatches`, | |
| 117 | | | :ndnsim:`ConsumerZipfMandelbrot`). See doxygen documentation or | |
Alexander Afanasyev | 6315ef7 | 2012-06-01 20:56:31 -0700 | [diff] [blame] | 118 | | | source code for details | |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 119 | +-----------------+---------------------------------------------------------------------+ |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 120 | | ``utils/`` | helper classes, including implementation of generalized data | |
| 121 | | | structures, topology readers and tracers | |
| 122 | +-----------------+---------------------------------------------------------------------+ |
Alexander Afanasyev | 6315ef7 | 2012-06-01 20:56:31 -0700 | [diff] [blame] | 123 | | ``helper/`` | a number of :doc:`useful helpers <helpers>` | |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 124 | +-----------------+---------------------------------------------------------------------+ |
Alexander Afanasyev | 6315ef7 | 2012-06-01 20:56:31 -0700 | [diff] [blame] | 125 | | ``examples/`` | contain :doc:`several example scenarios <examples>` | |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 126 | +-----------------+---------------------------------------------------------------------+ |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 127 | |
Alexander Afanasyev | 5dee361 | 2015-08-25 16:09:04 -0700 | [diff] [blame] | 128 | .. _NDN Forwarding Daemon (NFD): http://named-data.net/doc/NFD/ |
| 129 | |
| 130 | .. _ndn-cxx library: http://named-data.net/doc/ndn-cxx/ |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 131 | |
Alexander Afanasyev | d4e97b3 | 2012-06-04 15:09:50 -0700 | [diff] [blame] | 132 | Logging |
Alexander Afanasyev | e095f0f | 2012-11-21 17:43:32 -0800 | [diff] [blame] | 133 | ------- |
Alexander Afanasyev | d4e97b3 | 2012-06-04 15:09:50 -0700 | [diff] [blame] | 134 | |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 135 | Almost every component in ndnSIM exports logging interface, so in debug compilation it is |
| 136 | possible to track many internal details. For example, logging of :ndnsim:`Face` and |
| 137 | :ndnsim:`Consumer` shows everything what happens in :ndnsim:`Face` and :ndnsim:`Consumer` |
| 138 | classes:: |
Alexander Afanasyev | d4e97b3 | 2012-06-04 15:09:50 -0700 | [diff] [blame] | 139 | |
Alexander Afanasyev | f6807a5 | 2012-08-10 18:11:43 -0700 | [diff] [blame] | 140 | NS_LOG=ndn.Face:ndn.Consumer ./waf --run=ndn-simple |
Alexander Afanasyev | d4e97b3 | 2012-06-04 15:09:50 -0700 | [diff] [blame] | 141 | |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 142 | Refer to the source code and NS-3 documentation to see what logging interfaces are |
| 143 | available and about details how enable one or more logging interfaces. |
Alexander Afanasyev | 4d32516 | 2012-06-01 12:28:50 -0700 | [diff] [blame] | 144 | |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 145 | .. note:: |
| 146 | |
| 147 | Please remember that logging is enabled **only** in debug mode. When simulator is |
| 148 | compiled in optimized mode (``./waf configure -d optimized``), logging will be |
| 149 | completely disabled as it significantly slows down execution. |
| 150 | |
| 151 | .. note:: |
| 152 | |
| 153 | A list of log components available in the current version of NS-3 and ndnSIM is listed |
| 154 | `in this page <doxygen/LogComponentList.html>`_. |