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. dc6fae8 model+utils: Enable SatisfiedInterests and TimedOutInterests trace sources in L3Protocol by Alexander Afanasyev · 10 years ago
  2. 6b2a3c0 model: Add method that is necessary for python bindings by Alexander Afanasyev · 10 years ago
  3. dde1e81 model+helper+examples: Enable configurability of NFD parameters using StackHelper by Alexander Afanasyev · 10 years ago
  4. 60a7b62 docs: Updating copyright notices in files by Alexander Afanasyev · 10 years ago
  5. de1f773 NFD: Keep both the CS of NFD and ndnSIM by Spyridon Mastorakis · 10 years ago
  6. 9760bd0 model+helper: Converting L3Protocol and StackHelper to use NFD codebase by Spyridon Mastorakis · 10 years ago
  7. e4f0d3c model: Removing more legacy code and make code to compile by Spyridon Mastorakis · 10 years ago
  8. 53e922f ndnSIM-v2: Initial implementation by Spyridon Mastorakis · 10 years ago
  9. be55cf6 src: Updating code style to conform (more or less) to ndn-cxx style by Alexander Afanasyev · 10 years ago
  10. 0c39537 build: Fixing of includes by Alexander Afanasyev · 10 years ago
  11. 76f8f65 src: Renaming files according to ndn-cxx naming convention by Alexander Afanasyev · 10 years ago[Renamed from model/ndn-l3-protocol.cc]
  12. 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
  13. 016a5d8 plugins/ip-faces: Initial implementation of UdpFace by Alexander Afanasyev · 11 years ago
  14. a4e7428 model+ndn.cxx+test: Finishing implementation of ApiFace (now timeouts are working as well) by Alexander Afanasyev · 11 years ago
  15. faa01f9 model: Another set of refactoring/renaming to make code compile (not tested yet) by Alexander Afanasyev · 11 years ago
  16. b989b12 model: Major API changes by Alexander Afanasyev · 11 years ago
  17. 5bee19e model: First set of major API changes and reorganizations by Alexander Afanasyev · 11 years ago
  18. fff8498 model: Removing assert when interest payload is not zero by Alexander Afanasyev · 11 years ago
  19. eae83ee all: InterestHeader and ContentObjectHeader refactoring to Interest and ContentObject by Alexander Afanasyev · 11 years ago
  20. 06dba7c model: replacing direct usage of fib::FaceMetric variables by inline methods by Alexander Afanasyev · 11 years ago
  21. 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
  22. f5c0774 limits: Introducing modularity for Interest limits by Alexander Afanasyev · 12 years ago
  23. ff22977 Add counter for interest and data packets (for performance evaluations) by Alexander Afanasyev · 12 years ago
  24. aebf5cf L3Protocol::GetFace now returns face by index, not by ID as it was by Alexander Afanasyev · 12 years ago
  25. f6807a5 Final updates and documentation fixes by Alexander Afanasyev · 12 years ago
  26. 2b4c947 Another set of refactoring by Alexander Afanasyev · 12 years ago
  27. 4aac557 First step of refactoring code (ccnx prefix => ndn prefix) by Alexander Afanasyev · 12 years ago[Renamed (75%) from model/ccnx-l3-protocol.cc]
  28. f249a19 Finalizing implementation of almost all events for forwarding strategy. by Alexander Afanasyev · 12 years ago
  29. e3d126f Start of serious reorganization by Alexander Afanasyev · 12 years ago
  30. 36b4577 Checkpoint by Alexander Afanasyev · 12 years ago
  31. 30f60e3 Some progress on CcnxPit. Partially working by Alexander Afanasyev · 12 years ago
  32. 1aa4bbc Simplifying a FIB entry modification (now we can do it directly, without notifying the container) by Alexander Afanasyev · 12 years ago
  33. 11f7bb4 First step in reimplementing CcnxPit. Everything is broken as of right now by Alexander Afanasyev · 12 years ago
  34. 78057c3 Separating interface and implementation of FIB. Right now everything is by Alexander Afanasyev · 12 years ago
  35. f034cbd Initial redesign of internal data structures by Alexander Afanasyev · 12 years ago
  36. 3a4a0b3 Changing internals. PIT, FIB, CS, and ForwardingStrategy now are aggregated onto the node by Alexander Afanasyev · 12 years ago
  37. d9fecdd Modularize ContentStore by Alexander Afanasyev · 12 years ago
  38. d459ec3 Repair serious bug with caching (wrong packet was sent from cache) by Alexander Afanasyev · 12 years ago
  39. 7f3e49e For duplicate interests keep incoming face !!! Need more thinking by Alexander Afanasyev · 12 years ago
  40. ff8c5d6 Several important corrections. Adding option to delay data at every node (random from 0.1 to 2 ms) by Alexander Afanasyev · 12 years ago
  41. 1aeaf92 BUG. (need more corrections) Don't remove PIT if interests has not been by Alexander Afanasyev · 12 years ago
  42. e192a2a ! Changing suppression logic. We will send interests to faces from which we previously received interests by Alexander Afanasyev · 12 years ago
  43. 4e97094 Small change in Interest suppression logic by Alexander Afanasyev · 12 years ago
  44. 082dbca Disabling NACKs by default by Alexander Afanasyev · 12 years ago
  45. de00999 Adding options to enable caching of unsolicited (e.g., overheard over broadcast media) data packets by Alexander Afanasyev · 12 years ago
  46. bab81b1 Adding option to disable NACKs by Alexander Afanasyev · 12 years ago
  47. e9c9d72 Change in CcnxApp API. Now callbacks also contain pointer of original by Alexander Afanasyev · 12 years ago
  48. 1a8be03 path stretch support by Ilya Moiseenko · 12 years ago
  49. 8d11fcc Making optimized version to compile by Alexander Afanasyev · 13 years ago
  50. c86c283 Rate recorder trace helper by Alexander Afanasyev · 13 years ago
  51. 4975f73 Slight API change. Now there is only one CcnxAppHelper that can create all CcnxApps by Alexander Afanasyev · 13 years ago
  52. 120bf31 When giving up PIT entry, remove all outgoing interests. Otherwise, by Alexander Afanasyev · 13 years ago
  53. 8f5a9bb Rescanned bindings. Slight change in input format for AnnotatedTopology by Alexander Afanasyev · 13 years ago
  54. f377b33 Update of tracing by Alexander Afanasyev · 13 years ago
  55. cbe92ae All CCNx faces are now available through FaceList object attribute by Alexander Afanasyev · 13 years ago
  56. bdc0d98 Enabling app-layer tracing by Alexander Afanasyev · 13 years ago
  57. 816de83 Tracing by Ilya Moiseenko · 13 years ago
  58. 0782718 Correcting python bindings (+ rescan) by Alexander Afanasyev · 13 years ago
  59. 4a5c2c1 Implementing notion of default routes (useful for Flooding scenarios) by Alexander Afanasyev · 13 years ago
  60. 23d2b54 Repair two critical bug with Interest/NACK processing by Alexander Afanasyev · 13 years ago
  61. 0a61c34 Several fixes in forwarding strategies and NACK processing by Alexander Afanasyev · 13 years ago
  62. e67a97f Correcting bug with NACK processing by Alexander Afanasyev · 13 years ago
  63. a7a2b8b Small modification regarding suppression by Alexander Afanasyev · 13 years ago
  64. c39f0b4 Finalizing interest limits. Now everything seem to work. by Alexander Afanasyev · 13 years ago
  65. b5703a9 Correction of the leak by Alexander Afanasyev · 13 years ago
  66. 5a59507 Correcting NACK behavior (actually, reaction to NACKs) by Alexander Afanasyev · 13 years ago
  67. 9d313d4 Add NACK processing by Alexander Afanasyev · 13 years ago
  68. 19426ef Making everything compile. Now everything seems to work, but more by Alexander Afanasyev · 13 years ago
  69. 09c7deb Modification of CcnxFace interface and unification of CCNx applications via common CcnxApp class by Alexander Afanasyev · 13 years ago
  70. a5bbe0e Correcting everything to the stage that everything compiles by Alexander Afanasyev · 13 years ago
  71. a46844b Correcting bugs with cleaning timeouts in PIT/RIT/ContentStore by Alexander Afanasyev · 13 years ago
  72. 1825285 Be more careful during final cleanup process (all ccnx objects are now properly destroyed) by Alexander Afanasyev · 13 years ago
  73. d02a5d6 Adding several corrections. Most important is fixing regression in ccnb-parser-block.cc by Alexander Afanasyev · 13 years ago
  74. d83eb0d I think congestion works by Ilya Moiseenko · 13 years ago
  75. a4e3f85 Merge remote-tracking branch 'git.irl/Ilya' by Alexander Afanasyev · 13 years ago
  76. 52e9aa9 Finishing with FIB initialization based on IPv4 global routing controller by Alexander Afanasyev · 13 years ago
  77. 00b3048 pit fib small corrections by Ilya Moiseenko · 13 years ago
  78. c926604 Ccnx-grid example by Ilya Moiseenko · 13 years ago
  79. b405d9b hotfix #1 by Ilya Moiseenko · 13 years ago
  80. 172763c NACK interests support and congestion detection by Ilya Moiseenko · 13 years ago
  81. c5a23e2 Many corrections to face/local-face/net-device-face/fib/pit. Now by Alexander Afanasyev · 13 years ago
  82. cf133f0 Initial steps for Interest packet processing by Alexander Afanasyev · 13 years ago
  83. 78cf0c9 NDN layer now knows how to process ContentObject packets by Alexander Afanasyev · 13 years ago
  84. a67e28c Adding RIT, PIT, FIB, and CS to ccnx-l3-protocol. Some small by Alexander Afanasyev · 13 years ago
  85. 070aa48 Implementing content store using Boost.MultiIndex container by Alexander Afanasyev · 13 years ago
  86. 0ab833e Solving compilation problems, adding more comments. Modified ccnx-test example by Alexander Afanasyev · 13 years ago
  87. 56f79ea Updating code to the state that it compiles by Alexander Afanasyev · 13 years ago
  88. ab1d560 Adding more documentation. Now CcnxFace defines an virtual interface to by Alexander Afanasyev · 13 years ago
  89. 7112f48 Repair bug in ccnb parsing. First steps in adding correct documentation tags by Alexander Afanasyev · 13 years ago
  90. c74a602 First steps in CCNx packet coding. ccnx_encode* routines rewritten in NS3 style (using NS3::Buffer) by Alexander Afanasyev · 13 years ago
  91. 45b92d4 More progress on CCNx stack. Now we have helpers. Everything compiles, but not yet working by Alexander Afanasyev · 13 years ago
  92. 9825610 Adding more components to CCNx stack by Alexander Afanasyev · 13 years ago
  93. 08d984e First approximation of CCNx protocol stack by Alexander Afanasyev · 13 years ago