Release 2.0

Overview

ndnSIM 2.0 is a new release of NS-3 based Named Data Networking (NDN)
simulator that went through extensive refactoring and rewriting. The key
new features of the new version:

-   ndnSIM no longer re-implements basic NDN primitives and directly
    uses implementation from ndn-cxx library (NDN C++ library with
    eXperimental eXtensions).

-   All NDN forwarding and management is implemented directly using
    source code of Named Data Networking Forwarding Daemon (NFD). The
    current code is based on a22a2172611b1cb93b2e2f53d9d5da122b384f3e
    commit of NFD repository.

Note RIB Manager is not yet available in ndnSIM.

-   Packet format changed to the NDN packet format.

-   Code style changes to conform to ndn-cxx Code Style and Coding
    Guidelines This change also includes renaming of the header and
    source files: *.h -> *.hpp, *.cc -> *.cpp

-   ndnSIM now uses C++11.

New Features

-   Integration with NFD codebase:
-   A realistic behavior is added to the simulations.
-   Forwarding plane extensions can be used in both ndnSIM simulations
    and real NFD deployment.
-   Per namespace forwarding strategies for different namespaces (one
    strategy per namespace).
-   New examples:
-   ndn-load-balancer
-   ndn-grid-multiple-strategies
-   ndn-different-strategy-per-prefix
-   Basic examples using python bindings: ndn-simple.py and ndn-grid.py
-   Use of the the full-featured NDN packet format.
-   Full-featured support for Interest selectors.
-   Full-featured crypto operations can be simulated (disabled by
    default).
-   FibHelper to manage FIB entries.
-   StrategyChoiceHelper to manage per-namespace forwarding strategy
    selection.

Changes

-   HopCount tracing now includes only one way network-level hop count
    (e.g., the number of physical links traversed by a packet).
    Previously, this tracing was round-trip and included applications
    hops.
-   Python bindings have changed and, due to limitations of pybindgen,
    currently cover a smaller subset of C++ code (Task #2341).
-   LinkControlHelper now uses ErrorRate to simulate link
    failure/recovery. Previously it was relying on Up/Down flag on NDN
    level.
-   The Face abstraction of NFD is now used.

Bug fixes

-   Fix processing files with customized LossRate or Queue model in
    AnnotatedTopologyReader Bug #2354.

Removals

-   PyNDN emulation
-   (temporarily) ApiFace. Will be replaced with emulation of ndn-cxx
    ndn::Face in future releases (Issue #2370).
-   (temporarily) UdpFace, TcpFace (Issue #2371).
-   Limits, LimitsWindow, LimitsRate.
-   PIT, FIB with "replacement" policies.
-   Old deprecated packet formats.
  1. e288d8b Small compilation-related bug in ccnx-forwarding-strategy.cc by Alexander Afanasyev · 12 years ago
  2. 39e0f34 BUG: WilLSatisfyPendingInterest method is now may be called with 0 as by Alexander Afanasyev · 12 years ago
  3. 27acad9 Small change with LoadStats unit tests by Alexander Afanasyev · 12 years ago
  4. 8bedcaf Adding one more helper to manually create routes on nodes by Alexander Afanasyev · 12 years ago
  5. b310a9a Renaming methods so it works without errors with boost::bind (for some by Alexander Afanasyev · 12 years ago
  6. e55d1e3 More corrections. Now everything is ready for real tests by Alexander Afanasyev · 12 years ago
  7. f249a19 Finalizing implementation of almost all events for forwarding strategy. by Alexander Afanasyev · 12 years ago
  8. 786936a Small corrections and python bindings rescan by Alexander Afanasyev · 12 years ago
  9. 996b487 Serious refactoring. Making forwarding strategy really modular by Alexander Afanasyev · 12 years ago
  10. e3d126f Start of serious reorganization by Alexander Afanasyev · 12 years ago
  11. 0560eec Stats tree seems to work properly, including pruning of "empty" leaves by Alexander Afanasyev · 12 years ago
  12. 0845c09 Initial steps in stats tree building. Almost done, but something is fishy by Alexander Afanasyev · 12 years ago
  13. f1e013f Introducing a couple of real test cases. by Alexander Afanasyev · 12 years ago
  14. 5662b36 python: rescanned bindings by Alexander Afanasyev · 12 years ago
  15. 413c7f1 Now everything suppose to work, but testing is necessary to determine how well it works. by Alexander Afanasyev · 12 years ago
  16. 36b4577 Checkpoint by Alexander Afanasyev · 12 years ago
  17. 30f60e3 Some progress on CcnxPit. Partially working by Alexander Afanasyev · 12 years ago
  18. 1aa4bbc Simplifying a FIB entry modification (now we can do it directly, without notifying the container) by Alexander Afanasyev · 12 years ago
  19. 11f7bb4 First step in reimplementing CcnxPit. Everything is broken as of right now by Alexander Afanasyev · 12 years ago
  20. 95a4fa3 Fighting off python bindings and repairing ccnx_fib visualizer plugin by Alexander Afanasyev · 12 years ago
  21. 1ba09b8 Small changes in in FIB re-implementations with tries, rescanned python bindings by Alexander Afanasyev · 12 years ago
  22. 44bb6ea New implementation of FIB seems to be working now by Alexander Afanasyev · 12 years ago
  23. 78057c3 Separating interface and implementation of FIB. Right now everything is by Alexander Afanasyev · 12 years ago
  24. 71ed238 Removing n_th index from FIB by Alexander Afanasyev · 12 years ago
  25. 30cb117 Small reoraganization, cleaning 'use namespace' usages by Alexander Afanasyev · 12 years ago
  26. 903062f Now seems that multi-policy container actually works as it should by Alexander Afanasyev · 12 years ago
  27. 051d378 Make code compilable using clang compiler by Alexander Afanasyev · 12 years ago
  28. 9e96e36 Making policy container more flexible by Alexander Afanasyev · 12 years ago
  29. 480e456 Small renaming by Alexander Afanasyev · 12 years ago
  30. 9a98970 Implementing new cache replacement strategies: Random and FIFO by Alexander Afanasyev · 12 years ago
  31. 4bfeb95 Removing the customized layout for doxygen by Alexander Afanasyev · 12 years ago
  32. 4a3b2be Add dynamic dependency to 'mobile' if ndn plugin with the same name is enabled by Alexander Afanasyev · 12 years ago
  33. f034cbd Initial redesign of internal data structures by Alexander Afanasyev · 12 years ago
  34. 3a4a0b3 Changing internals. PIT, FIB, CS, and ForwardingStrategy now are aggregated onto the node by Alexander Afanasyev · 12 years ago
  35. da02101 A small extension of the topology plugin by Alexander Afanasyev · 12 years ago
  36. 5b147e8 Adding link to the technical report by Alexander Afanasyev · 12 years ago
  37. a730ab6 Small README update by Alexander Afanasyev · 12 years ago
  38. d4a5951 Small update of docs by Alexander Afanasyev · 12 years ago v0.1
  39. 3073da8 Correcting small bug in CcnxAppFace (unnecessary function was defined by Alexander Afanasyev · 12 years ago
  40. 1503ecf Update documentation (wrong URLs) by Alexander Afanasyev · 12 years ago
  41. b6174b9 Modify grid example to work under redesigned content store by Alexander Afanasyev · 12 years ago
  42. b0c4389 Modifying implementation of content store to use new trie by Alexander Afanasyev · 12 years ago
  43. 89fb535 Update trie and adding policy management by Alexander Afanasyev · 12 years ago
  44. fd0c41c Experimental trie implementation by Alexander Afanasyev · 12 years ago
  45. 4052f95 Rescan python bindings to reflect latest API changes by Alexander Afanasyev · 12 years ago
  46. 39485d8 Adding Hit/Miss trace source by Alexander Afanasyev · 12 years ago
  47. d9fecdd Modularize ContentStore by Alexander Afanasyev · 12 years ago
  48. 6d98ac3 Rescanned python bindings by Alexander Afanasyev · 12 years ago
  49. b4fee8b Adding more doxygen documentation by Alexander Afanasyev · 12 years ago
  50. 4a4ea60 Renaming CcnxLocalFace to CcnxAppFace by Alexander Afanasyev · 12 years ago
  51. 30c33e3 Adding new trace into CcnxFace by Alexander Afanasyev · 12 years ago
  52. faf9581 Fixing bugs with new fields in ContentObject. Implementing basic support of new fields in CcnxProducer by Alexander Afanasyev · 12 years ago
  53. 8c5046a Adding support of more fields in ContentObject by Alexander Afanasyev · 12 years ago
  54. 98c9dbb Wrong URLs in docs by Alexander Afanasyev · 12 years ago
  55. 97fb44d More documentation updates by Alexander Afanasyev · 12 years ago
  56. d4e97b3 Adding more documentation stuff by Alexander Afanasyev · 12 years ago
  57. 07b0063 Documentation update by Alexander Afanasyev · 12 years ago
  58. 6315ef7 Updating documentation by Alexander Afanasyev · 12 years ago
  59. 4d32516 Add a small documentation by Alexander Afanasyev · 12 years ago
  60. 4885eea Correcting includes in example by Alexander Afanasyev · 12 years ago
  61. 57bcbc3 Renaming module to ndnSIM by Alexander Afanasyev · 12 years ago
  62. dd4c35a Rename patch by Alexander Afanasyev · 12 years ago
  63. ac46d45 Adding --enable-ndn-plugins option to waf by Alexander Afanasyev · 12 years ago
  64. 463fe22 Correcting default route (regression) by Alexander Afanasyev · 12 years ago
  65. 864522f Adding necessary patches to run NDN module by Alexander Afanasyev · 12 years ago
  66. ad5acce Rescanned python bindings by Alexander Afanasyev · 12 years ago
  67. a391830 Moving forgotten ccnx-trace-helper.h file to a new right place by Alexander Afanasyev · 12 years ago
  68. 4c13bbb Adding patch to enable PathStretch trace to tracers plugin by Alexander Afanasyev · 12 years ago
  69. de7601a Commening out PathStretch trace-related code (will be available as a patch in plugins/ folder) by Alexander Afanasyev · 12 years ago
  70. c1e33eb Moving helper components to the plugins/ folder. Disabling compilation of these components by Alexander Afanasyev · 12 years ago
  71. 9a517db Don't retransmit interests within 100ms by Alexander Afanasyev · 12 years ago
  72. d459ec3 Repair serious bug with caching (wrong packet was sent from cache) by Alexander Afanasyev · 12 years ago
  73. 7f3e49e For duplicate interests keep incoming face !!! Need more thinking by Alexander Afanasyev · 12 years ago
  74. ff8c5d6 Several important corrections. Adding option to delay data at every node (random from 0.1 to 2 ms) by Alexander Afanasyev · 12 years ago
  75. 1aeaf92 BUG. (need more corrections) Don't remove PIT if interests has not been by Alexander Afanasyev · 12 years ago
  76. 4756b89 Rescanned python bindings by Alexander Afanasyev · 12 years ago
  77. e275cf8 Making CcnxContentObjectHeader and CcnxInterestHeader to be inherited by Alexander Afanasyev · 12 years ago
  78. d859979 Changing example CcnxGrid to use CcnxGlobalRouting by Alexander Afanasyev · 12 years ago
  79. 06d3a61 Small extension of CcnxGlobalRoutingHelper. Removing some old examples by Alexander Afanasyev · 12 years ago
  80. ce81014 Rescanned bindings to reflect latest rebase of ns-3-base by Alexander Afanasyev · 12 years ago
  81. 161a5c4 Small file reorganization (moving CCNx-unrelated stuff out of model/) by Alexander Afanasyev · 12 years ago
  82. 89e3832 Removing Ipv4GlobalRouting* files (not necessary anymore) by Alexander Afanasyev · 12 years ago
  83. 8e2f112 Finalizing BGL-implementation of ccnx global routing controller. Also, several extensions in CcnxFib by Alexander Afanasyev · 12 years ago
  84. a5abcd9 BGL implementation for ccnx global routing seems to work. Need more debugging by Alexander Afanasyev · 12 years ago
  85. ad3757f Initial support for route calculations with Boost.Graph library (BGL) by Alexander Afanasyev · 12 years ago
  86. ee217df Bug. For some reason lookup in PIT (for content objects) wasn't longest prefix match. Corrected by Alexander Afanasyev · 12 years ago
  87. e192a2a ! Changing suppression logic. We will send interests to faces from which we previously received interests by Alexander Afanasyev · 12 years ago
  88. 15f9299 Moving TraceSources from CcnxProducer/Consumer to CcnxApp by Alexander Afanasyev · 12 years ago
  89. bed7569 Important change to FloodingStrategy: by default it will perform by Alexander Afanasyev · 12 years ago
  90. 9568f95 Adding support for Timestamp and Freshness in ContentObject by Alexander Afanasyev · 12 years ago
  91. 4e97094 Small change in Interest suppression logic by Alexander Afanasyev · 13 years ago
  92. a95b739 Adding PIT printout capability by Alexander Afanasyev · 13 years ago
  93. 6f93353 Rescan python bindings to reflect latest changes in NS-3-DEV by Alexander Afanasyev · 13 years ago
  94. a514d63 Adding slightly more complicated tutorial example by Alexander Afanasyev · 13 years ago
  95. 082dbca Disabling NACKs by default by Alexander Afanasyev · 13 years ago
  96. f04d451 Adding a simple tutorial example by Alexander Afanasyev · 13 years ago
  97. f2e0da1 Removing irrelevant examples by Alexander Afanasyev · 13 years ago
  98. 2188a25 Changes to example, enabling randomization for CcnxConsumerCbr by Alexander Afanasyev · 13 years ago NDN-TR-0002
  99. 59e6771 Extending CcnxConsumerCbr class. Now it supports option to randomize sending time (uniform or exponential distribution). by Alexander Afanasyev · 13 years ago
  100. de00999 Adding options to enable caching of unsolicited (e.g., overheard over broadcast media) data packets by Alexander Afanasyev · 13 years ago