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. 1825285 Be more careful during final cleanup process (all ccnx objects are now properly destroyed) by Alexander Afanasyev · 13 years ago
  2. 795f9b5 More debug by Alexander Afanasyev · 13 years ago
  3. 233f197 Temporary commit by Alexander Afanasyev · 13 years ago
  4. d02a5d6 Adding several corrections. Most important is fixing regression in ccnb-parser-block.cc by Alexander Afanasyev · 13 years ago
  5. aa1154b fix of best route strategy by Ilya Moiseenko · 13 years ago
  6. 8c193dc small fix of congestion by Ilya Moiseenko · 13 years ago
  7. d83eb0d I think congestion works by Ilya Moiseenko · 13 years ago
  8. 19dbcf3 unit test edited by Ilya Moiseenko · 13 years ago
  9. d1f1951 serialization / deserialization fixed by Ilya Moiseenko · 13 years ago
  10. 3bea370 Make NDNabstraction depending on 'visualizer' when python bindings are by Alexander Afanasyev · 13 years ago
  11. 3b8c50c Correction of the compilation issue in optimized mode (./waf -d optimized) by Alexander Afanasyev · 13 years ago
  12. 176ed06 Modifying ccnx-grid example to work with support of the latest FIB populating by Alexander Afanasyev · 13 years ago
  13. a4e3f85 Merge remote-tracking branch 'git.irl/Ilya' by Alexander Afanasyev · 13 years ago
  14. 52e9aa9 Finishing with FIB initialization based on IPv4 global routing controller by Alexander Afanasyev · 13 years ago
  15. 00b3048 pit fib small corrections by Ilya Moiseenko · 13 years ago
  16. b2fc8a3 ccnx grid dump commit by Ilya Moiseenko · 13 years ago
  17. c3188b9 examples corrections by Ilya Moiseenko · 13 years ago
  18. ae39487 ccnx stack helper corrections by Ilya Moiseenko · 13 years ago
  19. 9de011f Adding forgotten import to wscript by Alexander Afanasyev · 13 years ago
  20. 918839c Repair compilation issue (missing header) by Alexander Afanasyev · 13 years ago
  21. 3ba44e5 Implementation of Ipv4GlobalRoutingUnroderedNexthops to manage multiple by Alexander Afanasyev · 13 years ago
  22. 3875a4b Working implementation and example of Ipv4GlobalRoutingOrderedNexthops by Alexander Afanasyev · 13 years ago
  23. 381dea0 Rescanned python bindings by Alexander Afanasyev · 13 years ago
  24. 82b8eea ccnx-grid example corrections by Ilya Moiseenko · 13 years ago
  25. c926604 Ccnx-grid example by Ilya Moiseenko · 13 years ago
  26. beceb36 Update ccnx-routing-simple example by Alexander Afanasyev · 13 years ago
  27. 4e47348 Best route forwarding strategy by Ilya Moiseenko · 13 years ago
  28. 5b43386 Adding non-working example by Alexander Afanasyev · 13 years ago
  29. b405d9b hotfix #1 by Ilya Moiseenko · 13 years ago
  30. 4ac503d Enable ccnx-test example by Alexander Afanasyev · 13 years ago
  31. 172763c NACK interests support and congestion detection by Ilya Moiseenko · 13 years ago
  32. bdf78d6 some constants for bucket filtering were added here by Ilya Moiseenko · 13 years ago
  33. ed8dda3 Flooding strategy refactoring by Ilya Moiseenko · 13 years ago
  34. ea27f4e Forwarding strategy refactoring by Ilya Moiseenko · 13 years ago
  35. 75d9bf5 Interesrt header supports nack and congested fields by Ilya Moiseenko · 13 years ago
  36. 7e6d0c9 Bug fix (bug - double removing of the header) by Ilya Moiseenko · 13 years ago
  37. acac1ea Support of isLocal interface for all face types by Ilya Moiseenko · 13 years ago
  38. 57959f9 Net device supports isLocal interface by Ilya Moiseenko · 13 years ago
  39. f194f39 small refactoring to expand visibility of the helper structure by Ilya Moiseenko · 13 years ago
  40. 1c73cb5 bucket filtering added by Ilya Moiseenko · 13 years ago
  41. 6049140 TryAddOutgoing and LeakBucket were added by Ilya Moiseenko · 13 years ago
  42. fb2362f CcnxProducerHelper was refactored by Ilya Moiseenko · 13 years ago
  43. fbd0a8b Setup for packet filtering was added by Ilya Moiseenko · 13 years ago
  44. 9181afd Refactoring of CcnxForwardingHelper by Ilya Moiseenko · 13 years ago
  45. 2a59e0e dummy commit by Ilya Moiseenko · 13 years ago
  46. aa17c8e Serialization for Nack and Congestion fields was added by Ilya Moiseenko · 13 years ago
  47. 0f13db6 NDN_DTAG_Nack and NDN_DTAG_Congested were added by Ilya Moiseenko · 13 years ago
  48. 6851632 Ccnx-test update which includes Producer App by Ilya Moiseenko · 13 years ago
  49. b62c740 GetPrefix was added to Producer app by Ilya Moiseenko · 13 years ago
  50. 0605d26 Nonce generation bug fixed in Consumer app by Ilya Moiseenko · 13 years ago
  51. 2b4e149 Forwarding strategy enumeration by Ilya Moiseenko · 13 years ago
  52. 25f7d4d Flooding forwarding strategy added by Ilya Moiseenko · 13 years ago
  53. e4aae55 small fix of Consumer Application by Ilya Moiseenko · 13 years ago
  54. 8accdf6 Small progress on pit/fib interaction by Alexander Afanasyev · 13 years ago
  55. 3b93629 Update wscript to reflect version update of ./waf by Alexander Afanasyev · 13 years ago
  56. c5a23e2 Many corrections to face/local-face/net-device-face/fib/pit. Now by Alexander Afanasyev · 13 years ago
  57. cf133f0 Initial steps for Interest packet processing by Alexander Afanasyev · 13 years ago
  58. 09595dd Merge remote-tracking branch 'git.irl/master' by Alexander Afanasyev · 13 years ago
  59. 78cf0c9 NDN layer now knows how to process ContentObject packets by Alexander Afanasyev · 13 years ago
  60. 0872371 unit tests by Ilya Moiseenko · 13 years ago
  61. fa4e263 Pcap example added by Ilya Moiseenko · 13 years ago
  62. 9d25869 regression test (not completed) by Ilya Moiseenko · 13 years ago
  63. a67e28c Adding RIT, PIT, FIB, and CS to ccnx-l3-protocol. Some small by Alexander Afanasyev · 13 years ago
  64. e91ab75 ContentObject and Interest serialization and deserialization seem to by Alexander Afanasyev · 13 years ago
  65. a962f86 Merge remote-tracking branch 'git.irl/master' by Alexander Afanasyev · 13 years ago
  66. 85a3bca Debugging and resolving problems with interest serialization/deserialization by Alexander Afanasyev · 13 years ago
  67. a828e9f fix of interest header test by Ilya Moiseenko · 13 years ago
  68. 7407704 interest header example by Ilya Moiseenko · 13 years ago
  69. 3e15eff Unit test for interest header serialization/deserialization by Ilya Moiseenko · 13 years ago
  70. ae0d652 Adding temporary solution to estimate packet size. Should be changed to by Alexander Afanasyev · 13 years ago
  71. 5769923 Update of Python bindings by Alexander Afanasyev · 13 years ago
  72. 152cf11 Small updates to reflect changes in CcnxNameComponents by Alexander Afanasyev · 13 years ago
  73. 24d2166 Merge remote-tracking branch 'git.irl/master' by Alexander Afanasyev · 13 years ago
  74. a98cdd2 First approximation of PIT by Alexander Afanasyev · 13 years ago
  75. a121411 Producer and consumer helpers by Ilya Moiseenko · 13 years ago
  76. 8196d2e Consumer and producer applications by Ilya Moiseenko · 13 years ago
  77. 1cf6b0a Receive method for localFace by Ilya Moiseenko · 13 years ago
  78. 888161d m_contentstore was moved from l3-protocol to ccnx by Ilya Moiseenko · 13 years ago
  79. 90d66ce Removing old name-components.* and adding missing implementation of the by Alexander Afanasyev · 13 years ago
  80. 7fd74f9 Implementing first approximation of FIB by Alexander Afanasyev · 13 years ago
  81. d26e682 file and header renaming by Ilya Moiseenko · 13 years ago
  82. 946b87b CcnxInterestSender and its helper fixes by Ilya Moiseenko · 13 years ago
  83. 171afe1 Interest Sender Helper was added by Ilya Moiseenko · 13 years ago
  84. 2bd1bc3 Refactoring of Name::Components into CcnxNameComponents by Ilya Moiseenko · 13 years ago
  85. fccdb9e Implementing RIT (also using Boost.MultiIndex) by Alexander Afanasyev · 13 years ago
  86. c706f26 Ccnx-interest-sender, not complete yet by Ilya Moiseenko · 13 years ago
  87. 3cc8efe fix of wscript. Alex, stop breaking it! :) Visualizer still doesn't work by Ilya Moiseenko · 13 years ago
  88. 2922365 headers fix by Ilya Moiseenko · 13 years ago
  89. 3715619 Merge remote-tracking branch 'git.irl/master' by Alexander Afanasyev · 13 years ago
  90. f21c5be Implement forgotten Timestamp and Nonce visitors and appropriate by Alexander Afanasyev · 13 years ago
  91. e709f3d Make everything compile by Alexander Afanasyev · 13 years ago
  92. 8b37905 Checkpoint. Reorganizing ccnb parsing into many small files. by Alexander Afanasyev · 13 years ago
  93. dd32de8 Forgot to actually enforce limit on content store. Solved. by Alexander Afanasyev · 13 years ago
  94. 070aa48 Implementing content store using Boost.MultiIndex container by Alexander Afanasyev · 13 years ago
  95. 7dd43be Annotated topology reader refactoring. Now example is cleaner. by Ilya Moiseenko · 13 years ago
  96. 0ab833e Solving compilation problems, adding more comments. Modified ccnx-test example by Alexander Afanasyev · 13 years ago
  97. e21bc03 Merge remote-tracking branch 'git.irl/master' by Alexander Afanasyev · 13 years ago
  98. 56f79ea Updating code to the state that it compiles by Alexander Afanasyev · 13 years ago
  99. 1c570bc CcnxContentStore with BOOST hash by Ilya Moiseenko · 13 years ago
  100. ab1d560 Adding more documentation. Now CcnxFace defines an virtual interface to by Alexander Afanasyev · 13 years ago