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. dc6fae8 model+utils: Enable SatisfiedInterests and TimedOutInterests trace sources in L3Protocol by Alexander Afanasyev · 9 years ago
  3. 5713e7a bindings: Manually adding some python bindings by Alexander Afanasyev · 10 years ago
  4. 6b2a3c0 model: Add method that is necessary for python bindings by Alexander Afanasyev · 10 years ago
  5. dde1e81 model+helper+examples: Enable configurability of NFD parameters using StackHelper by Alexander Afanasyev · 10 years ago
  6. 60a7b62 docs: Updating copyright notices in files by Alexander Afanasyev · 10 years ago
  7. 89046c1 apps+helper+utils: Fixes of consumer and producer apps to work with the new codebase by Mickey Sweatt · 10 years ago
  8. de1f773 NFD: Keep both the CS of NFD and ndnSIM by Spyridon Mastorakis · 10 years ago
  9. 60f4b99 helper+model: GlobalRoutingHelper now interacts with NFD 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. 82d5ffe model: Enabling face operations based on NFD's face by Alexander Afanasyev · 10 years ago
  13. ded1aa6 model: PacketHeader<T> and interface with NS-3 by Spyridon Mastorakis · 10 years ago
  14. 0717901 model+utils: Replace boost::tuple with std::tuple in trie implementation by Alexander Afanasyev · 10 years ago
  15. 1f1cd5e model: Fix original Contest Store to compile in new environment by Spyridon Mastorakis · 10 years ago
  16. e4f0d3c model: Removing more legacy code and make code to compile by Spyridon Mastorakis · 10 years ago
  17. 53e922f ndnSIM-v2: Initial implementation by Spyridon Mastorakis · 10 years ago
  18. 0b0942b src: Reorganization by Alexander Afanasyev · 10 years ago
  19. be55cf6 src: Updating code style to conform (more or less) to ndn-cxx style by Alexander Afanasyev · 10 years ago
  20. 0c39537 build: Fixing of includes by Alexander Afanasyev · 10 years ago
  21. 76f8f65 src: Renaming files according to ndn-cxx naming convention by Alexander Afanasyev · 10 years ago
  22. 012760b ndnSIM-v2: Removing old and legacy code by Alexander Afanasyev · 10 years ago
  23. db31e7c build: Fixes and disabling PyNDN unless specifically requested by Alexander Afanasyev · 10 years ago
  24. 4a6eccc fw: Fix detection of whether face is towards an application or not by Chaoyi Bian · 10 years ago
  25. 9b7504c pit: Adding missing 'const' markers for comparison operator of PitEntryIncomingFace by Alexander Afanasyev · 10 years ago
  26. e091bea cs: Instantiating ContentStores with AggreageStats policy (e.g., ns3::ndn::cs::Lfu::AggregateStats) by Alexander Afanasyev · 10 years ago
  27. 465f781 model/pit: Fixing implementation bugs in serialized_size_policy_traits by Alexander Afanasyev · 11 years ago
  28. dfa6985 model: Fixing bug with wire format handling by Alexander Afanasyev · 11 years ago
  29. f21bfc1 model: Extending ContentStoreImpl interface to get access to the underlying policy by Alexander Afanasyev · 11 years ago
  30. dc794a3 model: Remove assert in fib::Entry::UpdateFaceRtt and fib::Entry::UpdateStatus by Alexander Afanasyev · 11 years ago
  31. cd31abd model: Adding experimental support for caching policies with probability caching by Alexander Afanasyev · 11 years ago
  32. dfd5249 model: Fixing bug with CCNb name encoding/decoding by Alexander Afanasyev · 11 years ago
  33. 51c9f9b model: Extending ndn::fib::Entry to provide access to RTT estimate by Alexander Afanasyev · 11 years ago
  34. f0bda2f PyNDN: Removing no longer necessary memory cleanup cheatings by Alexander Afanasyev · 11 years ago
  35. fc9d9e1 docs: Documentation update by Alexander Afanasyev · 11 years ago
  36. 208c25d model: Data packet's copy constructor had a bug regarding KeyLocator by Alexander Afanasyev · 11 years ago
  37. 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
  38. 772f51b src: Global renaming ContentObject -> Data by Alexander Afanasyev · 11 years ago
  39. 0aa47bf model-wire: Adding partial compliance to CCNb format in Signature block by Alexander Afanasyev · 11 years ago
  40. b4bf3ef model-wire: Fixing compliance with CCNb format regarding Content tag by Alexander Afanasyev · 11 years ago
  41. 52a09bd helper: Fixing bug with ndn::GlobalRoutingHelper by Alexander Afanasyev · 11 years ago
  42. a8914be model: Fixing bug with redundant adding of FwHopCountTag in fw.Nacks by Alexander Afanasyev · 11 years ago
  43. 7920651 docs: Update documentation and Doxygen documentation generation by Alexander Afanasyev · 11 years ago
  44. 016a5d8 plugins/ip-faces: Initial implementation of UdpFace by Alexander Afanasyev · 11 years ago
  45. 0bb088a model: Fixing warning in ndn-wire.cc by Saran Tarnoi · 11 years ago
  46. 37a6124 model: Fixing warning in ndn-face.cc by Alexander Afanasyev · 11 years ago
  47. eec89ba model: Adding exclude filter processing in all content store implementations by Alexander Afanasyev · 11 years ago
  48. abb493a model: Enabling serialization/deserialization of Exclude filter in ndnSIM wire format by Alexander Afanasyev · 11 years ago
  49. 0a15a2b model: Add ability to print interest to the standard output, so it plays nice with PyNDN by Alexander Afanasyev · 11 years ago
  50. 76b1157 PyNDN: Initial changes of PyNDN emulation in ndnSIM by Alexander Afanasyev · 11 years ago
  51. 157c9e6 model: Bug fixes and small API change in ndn.cxx by Alexander Afanasyev · 11 years ago
  52. 9213601 model: Another major change: switching to NDN.cxx API for ndn::Name by Alexander Afanasyev · 11 years ago
  53. 7b923f3 model: Updated API for pluggable wire format by Alexander Afanasyev · 11 years ago
  54. a89bc10 model: Slight modification with wire format processing by Alexander Afanasyev · 11 years ago
  55. 5ab2bcd model: Adding ability to select desired default wire format by Alexander Afanasyev · 11 years ago
  56. c2b5728 model-wire-ccnb: Fixing a known bug with CCNb parsing by Alexander Afanasyev · 11 years ago
  57. 1043c70 model: Returning back support for CCNb wire format by Alexander Afanasyev · 11 years ago
  58. e4795ae model+ndn.cxx+apps: New application template (CallbackBasedApp) that can be used to prototype NS-3 applications in python by Alexander Afanasyev · 11 years ago
  59. a4e7428 model+ndn.cxx+test: Finishing implementation of ApiFace (now timeouts are working as well) by Alexander Afanasyev · 11 years ago
  60. 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
  61. ee76255 model+test: Fixing tests and making sure all tests pass by Alexander Afanasyev · 11 years ago
  62. faa01f9 model: Another set of refactoring/renaming to make code compile (not tested yet) by Alexander Afanasyev · 11 years ago
  63. b989b12 model: Major API changes by Alexander Afanasyev · 11 years ago
  64. 5bee19e model: First set of major API changes and reorganizations by Alexander Afanasyev · 11 years ago
  65. 8c476bb model: *BUG* Fixing error regarding Freshness by Alexander Afanasyev · 11 years ago
  66. e6bf47e Slight update of packet format: adding overall packet length to the by Alexander Afanasyev · 11 years ago
  67. 17741fd model: fix of a small syntactic error with templates (not all compilers complain) by Alexander Afanasyev · 11 years ago
  68. 8ade0be model: New trivial implementation of ContentStore (ns3::ndn::cs::Nocache) by Alexander Afanasyev · 11 years ago
  69. 431e9c7 model: Fixing segfault resulting from removal of FIB entries via Fib::RemoveFromAll call by Alexander Afanasyev · 11 years ago
  70. fff8498 model: Removing assert when interest payload is not zero by Alexander Afanasyev · 11 years ago
  71. dd9fa4f model: Change default behavior to cache unsolicited data from local applications by Alexander Afanasyev · 11 years ago
  72. 3749fd1 model: Fixing limit borrowing bug in PerOutFaceLimit and PerFibLimit by Alexander Afanasyev · 11 years ago
  73. 2890e57 model: Huge bug with ndn::pit::Entry by Alexander Afanasyev · 11 years ago
  74. cdeefb4 model: Add ns3::ndn::Pit::MaxPitEntryLifetime to configure maximum time for which routers are willing to accept any incoming interest by Alexander Afanasyev · 11 years ago
  75. 37b84c5 model+tracers: Implementing ability to trace satisfied/timed out interests by Alexander Afanasyev · 11 years ago
  76. ff0d9ca model: Add ability to get pointer to Fib from fib::Entry by Alexander Afanasyev · 11 years ago
  77. 6fa950d model: Small modification in BestRoute strategy by Alexander Afanasyev · 11 years ago
  78. ad2c54a model: Add use of "extern template" to prevent duplicate instantiation/initialization of templated classes by Alexander Afanasyev · 11 years ago
  79. be82da5 model: Small extension of printing out entries of the content store by Alexander Afanasyev · 11 years ago
  80. d6e5c5f model: Adding support for "fake" content object signatures by Alexander Afanasyev · 11 years ago
  81. cc50d98 model: Adding one more way to set Name of Interests and ContentObjects using reference to the Name object by Alexander Afanasyev · 11 years ago
  82. 4ebe07e examples: Adding example for the experimental support of PIT aggregate stats by Alexander Afanasyev · 11 years ago
  83. 26719e2 model: Refactoring PIT and adding experimental support for a new policy to count container operations by Alexander Afanasyev · 11 years ago
  84. d088798 model: Changing ForwardingStrategy trace output logic by Alexander Afanasyev · 11 years ago
  85. 8e436fa model: Small extension of Name class by Alexander Afanasyev · 11 years ago
  86. c57a877 model+docs: Small corrections of Doxygen documentation for ndn::Face by Alexander Afanasyev · 11 years ago
  87. e5a8b5a model: Extending FIB and PIT interface to include Find call to search for exact match of FIB and PIT entry by Alexander Afanasyev · 11 years ago
  88. 73f06f6 all: Adding typedefs near forward declarations of Interest/ContentObject/Name by Alexander Afanasyev · 11 years ago
  89. eae83ee all: InterestHeader and ContentObjectHeader refactoring to Interest and ContentObject by Alexander Afanasyev · 11 years ago
  90. cfdc14f all: Replacing deprecated NameComponents class with Name by Alexander Afanasyev · 11 years ago
  91. 0e4ae8e model+cs: Now it is possible to get pointer to ContentStore from cs::Entry by Alexander Afanasyev · 11 years ago
  92. a732541 Issue #27 Fix hop counting bug when NACKs are enabled by Xiaoke Jiang · 11 years ago
  93. 4e48960 Merge feature branch 'feature-trace-value-for-fib-entry' by Alexander Afanasyev · 11 years ago
  94. b14f0bc model: Mark face YELLOW when PIT entry times out in ndn::fw::GreenYellowRed strategy by Alexander Afanasyev · 11 years ago
  95. e6dc0ac model: Finalizing implementation of FaceMetric::Status tracing by Alexander Afanasyev · 11 years ago
  96. 06dba7c model: replacing direct usage of fib::FaceMetric variables by inline methods by Alexander Afanasyev · 11 years ago
  97. e6c07b5 model: small API change with ndn::ForwardingStrategy by Alexander Afanasyev · 11 years ago v0.2.4
  98. eec6629 model: (Re-)Implementing ability to keep PIT records after Interest is getting satisfied by Alexander Afanasyev · 11 years ago
  99. ff4d2ce model: Fixing bug with hop count tag related to caching of unsolicited data by Alexander Afanasyev · 11 years ago
  100. 1fb9fed model+examples: Small corrections with new PIT version, adding an example to use it by Alexander Afanasyev · 11 years ago