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. afe47fe examples: Restoring old examples that can be restored and fixing existing ones by Alexander Afanasyev · 10 years ago
  3. e316ab2 examples: Add python-based scenario examples by Alexander Afanasyev · 10 years ago
  4. dde1e81 model+helper+examples: Enable configurability of NFD parameters using StackHelper by Alexander Afanasyev · 10 years ago
  5. 60a7b62 docs: Updating copyright notices in files by Alexander Afanasyev · 10 years ago
  6. 4909d0a examples: ndn-different-strategy-per-prefix: New example. by Spyridon Mastorakis · 10 years ago
  7. 41fbfe1 examples: New example to show how to select multiple strategies for different prefixes by Spyridon Mastorakis · 10 years ago
  8. 77b6366 examples: New example with custom strategy "random-load-balancer-strategy" by Spyridon Mastorakis · 10 years ago
  9. db8280f examples: Modifying examples to work with the new codebase by Spyridon Mastorakis · 10 years ago
  10. 53e922f ndnSIM-v2: Initial implementation by Spyridon Mastorakis · 10 years ago
  11. be55cf6 src: Updating code style to conform (more or less) to ndn-cxx style by Alexander Afanasyev · 10 years ago
  12. 0c39537 build: Fixing of includes by Alexander Afanasyev · 10 years ago
  13. 60c0462 build: Updated build scripts by Alexander Afanasyev · 10 years ago
  14. 76f8f65 src: Renaming files according to ndn-cxx naming convention by Alexander Afanasyev · 10 years ago
  15. 012760b ndnSIM-v2: Removing old and legacy code by Alexander Afanasyev · 10 years ago
  16. 0d584e3 examples: Adding an extremely basic WiFi-based ndnSIM scenario by Alexander Afanasyev · 11 years ago
  17. 39314e0 examples: Adding missing command-line processing in pcap example by Alexander Afanasyev · 11 years ago
  18. 3fe94dc utils/tracers: Modifying (simplifying) interface for ndnSIM tracers by Alexander Afanasyev · 11 years ago
  19. 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
  20. 772f51b src: Global renaming ContentObject -> Data by Alexander Afanasyev · 11 years ago
  21. d573af2 plugins/ip-faces: Implementing UdpFace and fixing bugs with TcpFace by Alexander Afanasyev · 11 years ago
  22. aa84fae plugins/ip-faces: Updating TcpFace implementation by Alexander Afanasyev · 11 years ago
  23. f4e2452 plugins/ip-faces: ip-faces plugin, which implements ndn::TcpFace by Alexander Afanasyev · 11 years ago
  24. 0fb80b9 helper+docs+examples: New helper to simplify link failing by Alexander Afanasyev · 11 years ago
  25. eec89ba model: Adding exclude filter processing in all content store implementations by Alexander Afanasyev · 11 years ago
  26. 9213601 model: Another major change: switching to NDN.cxx API for ndn::Name by Alexander Afanasyev · 11 years ago
  27. 7b923f3 model: Updated API for pluggable wire format by Alexander Afanasyev · 11 years ago
  28. 2420762 examples: ndn-simple-with-pcap example now used CCNb packet format by Alexander Afanasyev · 11 years ago
  29. e722148 apps: Adding ability to ndn::Producer to configure desired fake signature and key locator (key name) by Alexander Afanasyev · 11 years ago
  30. a4e7428 model+ndn.cxx+test: Finishing implementation of ApiFace (now timeouts are working as well) by Alexander Afanasyev · 11 years ago
  31. 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
  32. ee76255 model+test: Fixing tests and making sure all tests pass by Alexander Afanasyev · 11 years ago
  33. faa01f9 model: Another set of refactoring/renaming to make code compile (not tested yet) by Alexander Afanasyev · 11 years ago
  34. 5bee19e model: First set of major API changes and reorganizations by Alexander Afanasyev · 11 years ago
  35. 79a5bd6 ndn.cxx: Initial work to introduce full NDN application API to ndnSIM by Alexander Afanasyev · 11 years ago
  36. c9f2e25 src: Adding LICENSE file and updating license statements in several files by Alexander Afanasyev · 11 years ago
  37. 0aa1136 topology-reader: Adding ability to specify custom queue type in topology files (AnnotatedTopologyReader) by Alexander Afanasyev · 11 years ago
  38. c7411ee examples: New example showing how to activate link weights for global routing controller calculations by Alexander Afanasyev · 11 years ago
  39. 8ade0be model: New trivial implementation of ContentStore (ns3::ndn::cs::Nocache) by Alexander Afanasyev · 11 years ago
  40. fff8498 model: Removing assert when interest payload is not zero by Alexander Afanasyev · 11 years ago
  41. e3af7b1 examples: Correcting output header in ndn-simple-with-pit-count-stats by Alexander Afanasyev · 11 years ago
  42. c386644 examples: Make sure that examples are linked against all compiled NS-3 modules by Alexander Afanasyev · 11 years ago
  43. da2f23a topology-reader: Adding support for adding and configuring ErrorModel on each link by Alexander Afanasyev · 11 years ago
  44. b5e77d8 examples+docs: Adding a new example to print out instantaneous PIT sizes periodically by Alexander Afanasyev · 11 years ago
  45. 9fb2e3d docs: Small update of the documentation by Alexander Afanasyev · 11 years ago
  46. 4ebe07e examples: Adding example for the experimental support of PIT aggregate stats by Alexander Afanasyev · 11 years ago
  47. eae83ee all: InterestHeader and ContentObjectHeader refactoring to Interest and ContentObject by Alexander Afanasyev · 11 years ago
  48. cfdc14f all: Replacing deprecated NameComponents class with Name by Alexander Afanasyev · 11 years ago
  49. b99cb6c Merge feature branch 'feature-l2-tracer' by Alexander Afanasyev · 11 years ago
  50. 27370c5 docs: Documenting new L2Tracer with a scenario and graph building example by Alexander Afanasyev · 11 years ago
  51. 8682ae0 examples: Adding new example to illustrate use of L2Tracer to trace aggregate packet drop rate on nodes by Hovaidi Ardestani Mohammad · 11 years ago
  52. 4e48960 Merge feature branch 'feature-trace-value-for-fib-entry' by Alexander Afanasyev · 11 years ago
  53. 1ab1aad examples: Fixing error in ndn-simple-with-pcap by Alexander Afanasyev · 11 years ago
  54. 06dba7c model: replacing direct usage of fib::FaceMetric variables by inline methods by Alexander Afanasyev · 11 years ago
  55. 41684ab examples+utils: Adding example to evaluate memory footprint of ContentStore/Pit by Alexander Afanasyev · 11 years ago
  56. 4c6bc58 examples: Add a new example showing how to set custom size of content store on different nodes by Alexander Afanasyev · 11 years ago
  57. 1fb9fed model+examples: Small corrections with new PIT version, adding an example to use it by Alexander Afanasyev · 11 years ago
  58. 1a0fff6 apps+model+utils: Implementing Interest/Data hop counting using new PacketTag by Alexander Afanasyev · 11 years ago
  59. 27e365b src bug: Adding missing topology files by Alexander Afanasyev · 11 years ago
  60. db64ff1 app+utils+doc: Adding application-level trace helper to record Interest-Data delays by Alexander Afanasyev · 11 years ago
  61. b1d6b03 tracers: simplification of ndn::CsTracer (there no real need for virtual calls) by Alexander Afanasyev · 11 years ago
  62. 1380010 zipf: Small changes (style and small logic correction) and adding documentation section by Alexander Afanasyev · 12 years ago
  63. ebebcda example support. change to master branch by Shock · 12 years ago
  64. b0f8315 add zipf-mandelbrot support to NDN Interest app consumer by Shock · 12 years ago
  65. c3cc0b3 model: New content store variations: support for content freshness by Alexander Afanasyev · 12 years ago
  66. 68de795 examples: adding debugged implementation of a CustomApp, along with an example using it by Alexander Afanasyev · 12 years ago
  67. f4a0359 docs: new example with content store helper, description of special content store implementations that allow tracking of lifetime of cached entries by Alexander Afanasyev · 12 years ago
  68. 932d331 examples: Correcting custom strategy API to reflect latest changes by Alexander Afanasyev · 12 years ago
  69. 5931480 tracers+docs: Correcting compilation and installation of trace helpers by Alexander Afanasyev · 12 years ago
  70. fd25826 helper: Extending manual route creating in ndn::StackHelper by Alexander Afanasyev · 12 years ago
  71. e97c607 docs: New example on how to use custom strategy with 2-bottleneck topology by Alexander Afanasyev · 12 years ago
  72. 674c876 tests: moving trie.cc from examples to test (not really working yet) by Alexander Afanasyev · 12 years ago
  73. e095f0f docs: Restructuring docs and adding new section about customizing Content Store and PIT by Alexander Afanasyev · 12 years ago
  74. aa1c4c3 docs: modifying documentation examples (now code in the documentation is taken from real code in examples/ folder) by Alexander Afanasyev · 12 years ago
  75. 1a2df6a Small reorganization of utils/ folder contents by Alexander Afanasyev · 12 years ago
  76. f6807a5 Final updates and documentation fixes by Alexander Afanasyev · 12 years ago
  77. cf6dc92 Now everything compiles, but not everything is working yet by Alexander Afanasyev · 12 years ago
  78. 2b4c947 Another set of refactoring by Alexander Afanasyev · 12 years ago
  79. 4aac557 First step of refactoring code (ccnx prefix => ndn prefix) by Alexander Afanasyev · 12 years ago
  80. e55d1e3 More corrections. Now everything is ready for real tests by Alexander Afanasyev · 12 years ago
  81. 36b4577 Checkpoint by Alexander Afanasyev · 12 years ago
  82. 44bb6ea New implementation of FIB seems to be working now by Alexander Afanasyev · 12 years ago
  83. 30cb117 Small reoraganization, cleaning 'use namespace' usages by Alexander Afanasyev · 12 years ago
  84. 903062f Now seems that multi-policy container actually works as it should by Alexander Afanasyev · 12 years ago
  85. 051d378 Make code compilable using clang compiler by Alexander Afanasyev · 12 years ago
  86. 9e96e36 Making policy container more flexible by Alexander Afanasyev · 12 years ago
  87. 9a98970 Implementing new cache replacement strategies: Random and FIFO by Alexander Afanasyev · 12 years ago
  88. b6174b9 Modify grid example to work under redesigned content store by Alexander Afanasyev · 12 years ago
  89. b0c4389 Modifying implementation of content store to use new trie by Alexander Afanasyev · 12 years ago
  90. 89fb535 Update trie and adding policy management by Alexander Afanasyev · 12 years ago
  91. fd0c41c Experimental trie implementation by Alexander Afanasyev · 12 years ago
  92. 07b0063 Documentation update by Alexander Afanasyev · 12 years ago
  93. 4885eea Correcting includes in example by Alexander Afanasyev · 12 years ago
  94. d859979 Changing example CcnxGrid to use CcnxGlobalRouting by Alexander Afanasyev · 12 years ago
  95. 06d3a61 Small extension of CcnxGlobalRoutingHelper. Removing some old examples by Alexander Afanasyev · 12 years ago
  96. a514d63 Adding slightly more complicated tutorial example by Alexander Afanasyev · 12 years ago
  97. f04d451 Adding a simple tutorial example by Alexander Afanasyev · 12 years ago
  98. f2e0da1 Removing irrelevant examples by Alexander Afanasyev · 12 years ago
  99. 2188a25 Changes to example, enabling randomization for CcnxConsumerCbr by Alexander Afanasyev · 12 years ago NDN-TR-0002
  100. de00999 Adding options to enable caching of unsolicited (e.g., overheard over broadcast media) data packets by Alexander Afanasyev · 12 years ago