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. b3e4b85 Separating ccnx-tracers into separate files. by Alexander Afanasyev · 13 years ago
  2. c86c283 Rate recorder trace helper by Alexander Afanasyev · 13 years ago
  3. 5beb35a Modifying SpringMobilityModel to make all nodes readjust after even one by Alexander Afanasyev · 13 years ago
  4. 011b859 Implementing Poisson Process for consumer requests (exponential distribution for inter-arrival times) by Alexander Afanasyev · 13 years ago
  5. 4975f73 Slight API change. Now there is only one CcnxAppHelper that can create all CcnxApps by Alexander Afanasyev · 13 years ago
  6. 120bf31 When giving up PIT entry, remove all outgoing interests. Otherwise, by Alexander Afanasyev · 13 years ago
  7. 8f5a9bb Rescanned bindings. Slight change in input format for AnnotatedTopology by Alexander Afanasyev · 13 years ago
  8. 141d131 Implementing CcnxTraceHelper (only aggregate traces for now) by Alexander Afanasyev · 13 years ago
  9. c9dc5d9 Merge remote-tracking branch 'git.irl/Ilya' by Alexander Afanasyev · 13 years ago
  10. f8fd590 Adding example of how to do tracing by Alexander Afanasyev · 13 years ago
  11. f377b33 Update of tracing by Alexander Afanasyev · 13 years ago
  12. 6f5e8fa Synthetic topology by Ilya Moiseenko · 13 years ago
  13. 53872ce Rescanned bindings by Alexander Afanasyev · 13 years ago
  14. a845f72 Uncommenting important code that was commented before by Alexander Afanasyev · 13 years ago
  15. cbe92ae All CCNx faces are now available through FaceList object attribute by Alexander Afanasyev · 13 years ago
  16. bdc0d98 Enabling app-layer tracing by Alexander Afanasyev · 13 years ago
  17. f9f4eb0 Resolve compilation issues (more accurate with headers) by Alexander Afanasyev · 13 years ago
  18. 9ad10af Merge remote-tracking branch 'git.irl/master' by Alexander Afanasyev · 13 years ago
  19. 781ea81 Modified CcnxConsumer: retransmission after NACK or default timeout by Alexander Afanasyev · 13 years ago
  20. d76f4aa Repair bug in CcnxPit regarding timed out records pruning (sequential by Alexander Afanasyev · 13 years ago
  21. 816de83 Tracing by Ilya Moiseenko · 13 years ago
  22. 7dbdcaf Adding SpringMobilityModel to adjust positions of nodes in large topologies by Alexander Afanasyev · 13 years ago
  23. ae3b7c3 Simplified and unified implementation of RocketfuelWeightReader by Alexander Afanasyev · 13 years ago
  24. dd3eeec Correcting 32bit version of python bindings (just copy of 64bit version) by Alexander Afanasyev · 13 years ago
  25. aa032ea Restore modulegen__gcc_ILP32.py by Alexander Afanasyev · 13 years ago
  26. a174aa5 Repair regression in CcnxFib. by Alexander Afanasyev · 13 years ago
  27. 0782718 Correcting python bindings (+ rescan) by Alexander Afanasyev · 13 years ago
  28. 66e6fd7 Processing the original format of Abilene topology file by Alexander Afanasyev · 13 years ago
  29. 0777f1c Merge remote-tracking branch 'git.irl/Ilya' by Alexander Afanasyev · 13 years ago
  30. 91b496a Visualization for abilene by Ilya Moiseenko · 13 years ago
  31. 4a5c2c1 Implementing notion of default routes (useful for Flooding scenarios) by Alexander Afanasyev · 13 years ago
  32. 8633d5d An update for AnnotatedTopologyReader and examples that use this reader by Alexander Afanasyev · 13 years ago
  33. 7e14efa Annotated topology reader now reads coordinates by Ilya Moiseenko · 13 years ago
  34. 09ac899 Sprint Reader now reads latencies from a separate file by Ilya Moiseenko · 13 years ago
  35. 3406f3e Correction of examples to reflect latest changes in CcnxStackHelper API by Alexander Afanasyev · 13 years ago
  36. 09374c0 Merge remote-tracking branch 'git.irl/Ilya' by Alexander Afanasyev · 13 years ago
  37. 58d2667 Abilene and sprint topologies by Ilya Moiseenko · 13 years ago
  38. 23d2b54 Repair two critical bug with Interest/NACK processing by Alexander Afanasyev · 13 years ago
  39. 0a61c34 Several fixes in forwarding strategies and NACK processing by Alexander Afanasyev · 13 years ago
  40. e67a97f Correcting bug with NACK processing by Alexander Afanasyev · 13 years ago
  41. a7a2b8b Small modification regarding suppression by Alexander Afanasyev · 13 years ago
  42. c39f0b4 Finalizing interest limits. Now everything seem to work. by Alexander Afanasyev · 13 years ago
  43. b5703a9 Correction of the leak by Alexander Afanasyev · 13 years ago
  44. 1145314 Enable limits options in CcnxStackHelper by Alexander Afanasyev · 13 years ago
  45. 5a59507 Correcting NACK behavior (actually, reaction to NACKs) by Alexander Afanasyev · 13 years ago
  46. 9d313d4 Add NACK processing by Alexander Afanasyev · 13 years ago
  47. 19426ef Making everything compile. Now everything seems to work, but more by Alexander Afanasyev · 13 years ago
  48. 09c7deb Modification of CcnxFace interface and unification of CCNx applications via common CcnxApp class by Alexander Afanasyev · 13 years ago
  49. a5bbe0e Correcting everything to the stage that everything compiles by Alexander Afanasyev · 13 years ago
  50. a46844b Correcting bugs with cleaning timeouts in PIT/RIT/ContentStore by Alexander Afanasyev · 13 years ago
  51. 4fa5e84 Removing unnecessary debug information. Adding missing virtual by Alexander Afanasyev · 13 years ago
  52. 1825285 Be more careful during final cleanup process (all ccnx objects are now properly destroyed) by Alexander Afanasyev · 13 years ago
  53. 795f9b5 More debug by Alexander Afanasyev · 13 years ago
  54. 233f197 Temporary commit by Alexander Afanasyev · 13 years ago
  55. d02a5d6 Adding several corrections. Most important is fixing regression in ccnb-parser-block.cc by Alexander Afanasyev · 13 years ago
  56. aa1154b fix of best route strategy by Ilya Moiseenko · 13 years ago
  57. 8c193dc small fix of congestion by Ilya Moiseenko · 13 years ago
  58. d83eb0d I think congestion works by Ilya Moiseenko · 13 years ago
  59. 19dbcf3 unit test edited by Ilya Moiseenko · 13 years ago
  60. d1f1951 serialization / deserialization fixed by Ilya Moiseenko · 13 years ago
  61. 3bea370 Make NDNabstraction depending on 'visualizer' when python bindings are by Alexander Afanasyev · 13 years ago
  62. 3b8c50c Correction of the compilation issue in optimized mode (./waf -d optimized) by Alexander Afanasyev · 13 years ago
  63. 176ed06 Modifying ccnx-grid example to work with support of the latest FIB populating by Alexander Afanasyev · 13 years ago
  64. a4e3f85 Merge remote-tracking branch 'git.irl/Ilya' by Alexander Afanasyev · 13 years ago
  65. 52e9aa9 Finishing with FIB initialization based on IPv4 global routing controller by Alexander Afanasyev · 13 years ago
  66. 00b3048 pit fib small corrections by Ilya Moiseenko · 13 years ago
  67. b2fc8a3 ccnx grid dump commit by Ilya Moiseenko · 13 years ago
  68. c3188b9 examples corrections by Ilya Moiseenko · 13 years ago
  69. ae39487 ccnx stack helper corrections by Ilya Moiseenko · 13 years ago
  70. 9de011f Adding forgotten import to wscript by Alexander Afanasyev · 13 years ago
  71. 918839c Repair compilation issue (missing header) by Alexander Afanasyev · 13 years ago
  72. 3ba44e5 Implementation of Ipv4GlobalRoutingUnroderedNexthops to manage multiple by Alexander Afanasyev · 13 years ago
  73. 3875a4b Working implementation and example of Ipv4GlobalRoutingOrderedNexthops by Alexander Afanasyev · 13 years ago
  74. 381dea0 Rescanned python bindings by Alexander Afanasyev · 13 years ago
  75. 82b8eea ccnx-grid example corrections by Ilya Moiseenko · 13 years ago
  76. c926604 Ccnx-grid example by Ilya Moiseenko · 13 years ago
  77. beceb36 Update ccnx-routing-simple example by Alexander Afanasyev · 13 years ago
  78. 4e47348 Best route forwarding strategy by Ilya Moiseenko · 13 years ago
  79. 5b43386 Adding non-working example by Alexander Afanasyev · 13 years ago
  80. b405d9b hotfix #1 by Ilya Moiseenko · 13 years ago
  81. 4ac503d Enable ccnx-test example by Alexander Afanasyev · 13 years ago
  82. 172763c NACK interests support and congestion detection by Ilya Moiseenko · 13 years ago
  83. bdf78d6 some constants for bucket filtering were added here by Ilya Moiseenko · 13 years ago
  84. ed8dda3 Flooding strategy refactoring by Ilya Moiseenko · 13 years ago
  85. ea27f4e Forwarding strategy refactoring by Ilya Moiseenko · 13 years ago
  86. 75d9bf5 Interesrt header supports nack and congested fields by Ilya Moiseenko · 13 years ago
  87. 7e6d0c9 Bug fix (bug - double removing of the header) by Ilya Moiseenko · 13 years ago
  88. acac1ea Support of isLocal interface for all face types by Ilya Moiseenko · 13 years ago
  89. 57959f9 Net device supports isLocal interface by Ilya Moiseenko · 13 years ago
  90. f194f39 small refactoring to expand visibility of the helper structure by Ilya Moiseenko · 13 years ago
  91. 1c73cb5 bucket filtering added by Ilya Moiseenko · 13 years ago
  92. 6049140 TryAddOutgoing and LeakBucket were added by Ilya Moiseenko · 13 years ago
  93. fb2362f CcnxProducerHelper was refactored by Ilya Moiseenko · 13 years ago
  94. fbd0a8b Setup for packet filtering was added by Ilya Moiseenko · 13 years ago
  95. 9181afd Refactoring of CcnxForwardingHelper by Ilya Moiseenko · 13 years ago
  96. 2a59e0e dummy commit by Ilya Moiseenko · 13 years ago
  97. aa17c8e Serialization for Nack and Congestion fields was added by Ilya Moiseenko · 13 years ago
  98. 0f13db6 NDN_DTAG_Nack and NDN_DTAG_Congested were added by Ilya Moiseenko · 13 years ago
  99. 6851632 Ccnx-test update which includes Producer App by Ilya Moiseenko · 13 years ago
  100. b62c740 GetPrefix was added to Producer app by Ilya Moiseenko · 13 years ago