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. 460f57c docs: Documentation update by Spyridon Mastorakis · 10 years ago
  2. dde1e81 model+helper+examples: Enable configurability of NFD parameters using StackHelper by Alexander Afanasyev · 10 years ago
  3. 60a7b62 docs: Updating copyright notices in files by Alexander Afanasyev · 10 years ago
  4. 89046c1 apps+helper+utils: Fixes of consumer and producer apps to work with the new codebase by Mickey Sweatt · 10 years ago
  5. de1f773 NFD: Keep both the CS of NFD and ndnSIM by Spyridon Mastorakis · 10 years ago
  6. 3f7dd87 helper: Redesigned link control helper by Alexander Afanasyev · 10 years ago
  7. 60f4b99 helper+model: GlobalRoutingHelper now interacts with NFD by Spyridon Mastorakis · 10 years ago
  8. 592fcba helper: StrategyChoiceHelper by Spyridon Mastorakis · 10 years ago
  9. 588fd10 helper: FibHelper to handle all Fib operations by Spyridon Mastorakis · 10 years ago
  10. 9760bd0 model+helper: Converting L3Protocol and StackHelper to use NFD codebase by Spyridon Mastorakis · 10 years ago
  11. 86edf6f utils: Enable use of the simulation time in NFD by Spyridon Mastorakis · 10 years ago
  12. 34e13f3 utils: Enable use of DummyKeychain to avoid crypto overhead by Alexander Afanasyev · 10 years ago
  13. e4f0d3c model: Removing more legacy code and make code to compile by Spyridon Mastorakis · 10 years ago
  14. 53e922f ndnSIM-v2: Initial implementation by Spyridon Mastorakis · 10 years ago
  15. be55cf6 src: Updating code style to conform (more or less) to ndn-cxx style by Alexander Afanasyev · 10 years ago
  16. 0c39537 build: Fixing of includes by Alexander Afanasyev · 10 years ago
  17. 76f8f65 src: Renaming files according to ndn-cxx naming convention by Alexander Afanasyev · 10 years ago
  18. 012760b ndnSIM-v2: Removing old and legacy code by Alexander Afanasyev · 10 years ago
  19. c837263 helper: Commenting out unused local variables in ndn::GlobalRoutingHelper by Zongyi Zhao · 10 years ago
  20. 16d252a helper: ndn::GlobalRoutingHelper extension by Alexander Afanasyev · 11 years ago
  21. 1914d49 Fix route calculation for shared channel by José Quevedo · 11 years ago
  22. 6eba36f src: One more set of renaming: ndn-content-object.h|cc is renamed to ndn-data.h|cc by Alexander Afanasyev · 11 years ago
  23. 772f51b src: Global renaming ContentObject -> Data by Alexander Afanasyev · 11 years ago
  24. 52a09bd helper: Fixing bug with ndn::GlobalRoutingHelper by Alexander Afanasyev · 11 years ago
  25. 7920651 docs: Update documentation and Doxygen documentation generation by Alexander Afanasyev · 11 years ago
  26. 3898e1b build: Adding tricks to suppress unwanted warnings from clang (originated from boost) by Alexander Afanasyev · 11 years ago
  27. 0fb80b9 helper+docs+examples: New helper to simplify link failing by Alexander Afanasyev · 11 years ago
  28. 7960606 model: A basic implementation of ndn::ApiFace that can be used as an NDN handler in any "normal" NS-3 application by Alexander Afanasyev · 11 years ago
  29. faa01f9 model: Another set of refactoring/renaming to make code compile (not tested yet) by Alexander Afanasyev · 11 years ago
  30. 2a269f7 helper: Extending customization of Face creating in ndn::StackHelper by Alexander Afanasyev · 11 years ago
  31. 73f06f6 all: Adding typedefs near forward declarations of Interest/ContentObject/Name by Alexander Afanasyev · 11 years ago
  32. eae83ee all: InterestHeader and ContentObjectHeader refactoring to Interest and ContentObject by Alexander Afanasyev · 11 years ago
  33. cfdc14f all: Replacing deprecated NameComponents class with Name by Alexander Afanasyev · 11 years ago
  34. 07e97d6 helper: Fixing unused variable warning by Alexander Afanasyev · 11 years ago v0.2.6
  35. f484fb9 helper: New experimental CalculateAllPossibleRoutes method in ndn::GlobalRoutingHelper by Alexander Afanasyev · 11 years ago
  36. c17e4bd helper: Fixing a recently introduced bug related to the per-face Interest limits by Alexander Afanasyev · 11 years ago v0.2.5
  37. 122f378 helper: Experimental extension of ndn::StackHelper to enable customization of NetDeviceFace (e.g., creating of custom faces based on different NetDevice's) by Alexander Afanasyev · 11 years ago
  38. c45c4d6 helper: Extending ndn::HeaderHelper with a call to obtain ndn::Name from the raw packet by Alexander Afanasyev · 11 years ago
  39. 4916586 helper+utils: Small extension of global routing helper and restoring several IP-based metric collectors, including Ipv4RateL3Tracer by Alexander Afanasyev · 11 years ago v0.2
  40. b2a11fe model: Multiple uses of boost-graph-ndn-global-routing-helper.h caused compilation failures due to not properly inlined functions by Alexander Afanasyev · 12 years ago
  41. 9c0794a docs: Adding reference to ndnSIM mailing list by Alexander Afanasyev · 12 years ago
  42. 6b0c88f model+helper: Adding new variable (realDelay) which is currently set by the global routing controller. by Alexander Afanasyev · 12 years ago
  43. 7353251 helper: adding small debug info by Alexander Afanasyev · 12 years ago
  44. adcccf4 model: Implementing two more events for forwarding strategy: DidAddFibEntry and WillRemoveFibEntry by Alexander Afanasyev · 12 years ago
  45. fd25826 helper: Extending manual route creating in ndn::StackHelper by Alexander Afanasyev · 12 years ago
  46. 5bcdc99 Small corrections by Alexander Afanasyev · 12 years ago
  47. bd9c18e Solving a couple of bugs resulting from the packet format changes. Code compiles, but haven't fully tested yet by Alexander Afanasyev · 12 years ago
  48. 5d79e68 model: Initial attempt to optimize Interest/Data encoding/decoding via a custom packet format by Alexander Afanasyev · 12 years ago
  49. a8f5d88 limits: Adding ability for GlobalRoutingController to set precise BDP prefix limits using knowledge of RTT for destination by Alexander Afanasyev · 12 years ago
  50. 6f95e70 limits: one more update and small interface changes by Alexander Afanasyev · 12 years ago
  51. f5c0774 limits: Introducing modularity for Interest limits by Alexander Afanasyev · 12 years ago
  52. 0ffa716 One more checkpoint. Now the code seems to work in a basic scenario by Alexander Afanasyev · 12 years ago
  53. 6a3bb13 ForwardingStrategy removes PIT if interest wasn't propagated. Updated by Alexander Afanasyev · 12 years ago
  54. ea9b3e6 Implementing base support for TCP-style window-based limiting on per-FIB-prefix and per-face granularity by Alexander Afanasyev · 12 years ago
  55. f986cde Removing support for LeakyBucket per-face limit by Alexander Afanasyev · 12 years ago
  56. 2b4c947 Another set of refactoring by Alexander Afanasyev · 12 years ago
  57. 4aac557 First step of refactoring code (ccnx prefix => ndn prefix) by Alexander Afanasyev · 12 years ago
  58. 89e02c4 Enable basic support for MPI in CcnxAppHelper by Alexander Afanasyev · 12 years ago
  59. 8bedcaf Adding one more helper to manually create routes on nodes by Alexander Afanasyev · 12 years ago
  60. 996b487 Serious refactoring. Making forwarding strategy really modular by Alexander Afanasyev · 12 years ago
  61. e3d126f Start of serious reorganization by Alexander Afanasyev · 12 years ago
  62. 11f7bb4 First step in reimplementing CcnxPit. Everything is broken as of right now by Alexander Afanasyev · 12 years ago
  63. 95a4fa3 Fighting off python bindings and repairing ccnx_fib visualizer plugin by Alexander Afanasyev · 12 years ago
  64. 44bb6ea New implementation of FIB seems to be working now by Alexander Afanasyev · 12 years ago
  65. 3a4a0b3 Changing internals. PIT, FIB, CS, and ForwardingStrategy now are aggregated onto the node by Alexander Afanasyev · 12 years ago
  66. 39485d8 Adding Hit/Miss trace source by Alexander Afanasyev · 12 years ago
  67. d9fecdd Modularize ContentStore by Alexander Afanasyev · 12 years ago
  68. b4fee8b Adding more doxygen documentation by Alexander Afanasyev · 12 years ago
  69. 8c5046a Adding support of more fields in ContentObject by Alexander Afanasyev · 12 years ago
  70. 6315ef7 Updating documentation by Alexander Afanasyev · 12 years ago
  71. 57bcbc3 Renaming module to ndnSIM by Alexander Afanasyev · 12 years ago
  72. 463fe22 Correcting default route (regression) by Alexander Afanasyev · 12 years ago
  73. a391830 Moving forgotten ccnx-trace-helper.h file to a new right place by Alexander Afanasyev · 12 years ago
  74. c1e33eb Moving helper components to the plugins/ folder. Disabling compilation of these components by Alexander Afanasyev · 12 years ago
  75. d459ec3 Repair serious bug with caching (wrong packet was sent from cache) by Alexander Afanasyev · 12 years ago
  76. 7f3e49e For duplicate interests keep incoming face !!! Need more thinking by Alexander Afanasyev · 12 years ago
  77. 06d3a61 Small extension of CcnxGlobalRoutingHelper. Removing some old examples by Alexander Afanasyev · 12 years ago
  78. ce81014 Rescanned bindings to reflect latest rebase of ns-3-base by Alexander Afanasyev · 12 years ago
  79. 161a5c4 Small file reorganization (moving CCNx-unrelated stuff out of model/) by Alexander Afanasyev · 12 years ago
  80. 8e2f112 Finalizing BGL-implementation of ccnx global routing controller. Also, several extensions in CcnxFib by Alexander Afanasyev · 12 years ago
  81. a5abcd9 BGL implementation for ccnx global routing seems to work. Need more debugging by Alexander Afanasyev · 12 years ago
  82. ad3757f Initial support for route calculations with Boost.Graph library (BGL) by Alexander Afanasyev · 12 years ago
  83. 9568f95 Adding support for Timestamp and Freshness in ContentObject by Alexander Afanasyev · 12 years ago
  84. 42e131e Repair bug with CcnxTraceHelper causing SEGFAULT by Alexander Afanasyev · 12 years ago
  85. 7e71c75 Adding IPv4 rate tracer by Alexander Afanasyev · 12 years ago
  86. 8e0d281 Moving around path weight tagging. Now CcnxFace owns metric field, which is used for tagging. by Alexander Afanasyev · 12 years ago
  87. 3f1c8b0 Repair bug with broken non-p2p-based CcnxNetDeviceFaces (when limits enabled) by Alexander Afanasyev · 12 years ago
  88. 6bff0df Finalizing PathWeight tracing by Alexander Afanasyev · 12 years ago
  89. e9c9d72 Change in CcnxApp API. Now callbacks also contain pointer of original by Alexander Afanasyev · 12 years ago
  90. 94cebd0 CcnxConsumerCbr now is really CBR (no randomization). by Alexander Afanasyev · 12 years ago
  91. b762684 Update of BlackholeSprint scenario. Extending CcnxStackHelper API by Alexander Afanasyev · 12 years ago
  92. 06b42ec Enabling TCP window tracing (there is a trick to do it with by Alexander Afanasyev · 12 years ago
  93. e4c2ece Tracing window size in CcnxConsumerWindow by Alexander Afanasyev · 12 years ago
  94. 33d6231 Reserve bandwidth for backward-direction interests by Alexander Afanasyev · 12 years ago
  95. 8080940 Merge remote-tracking branch 'git.irl/ilya' by Alexander Afanasyev · 13 years ago
  96. c4f8828 Correcting GlobalRouting lookups. Adding Ipv4SeqsAppTracer by Alexander Afanasyev · 13 years ago
  97. 36d5c2a Temp commit by Alexander Afanasyev · 13 years ago
  98. 956d054 documentation by Ilya Moiseenko · 13 years ago
  99. 332add0 documentation by Ilya Moiseenko · 13 years ago
  100. 3183b5a Adding sequence number tracer by Alexander Afanasyev · 13 years ago