Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 1 | Getting Started with NFD |
| 2 | ======================== |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 3 | |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 4 | Installing NFD from Binaries |
| 5 | ---------------------------- |
| 6 | |
| 7 | We provide NFD binaries for the supported platforms, which are the preferred installation |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 8 | method. In addition to simplifying installation, the binary release also includes automatic |
| 9 | initial configuration and platform-specific tools to automatically start NFD and related |
| 10 | daemons. In particular, on macOS the binary release of NFD comes as part of `NDN Control |
| 11 | Center <https://named-data.net/codebase/applications/ndn-control-center/>`__ and provides a |
| 12 | convenient way to configure and launch NFD daemon. :ref:`PPA packages for Ubuntu <Install NFD |
| 13 | Using the NDN PPA Repository on Ubuntu Linux>` include ``upstart`` and ``systemd`` |
| 14 | configuration to automatically start daemon after boot. |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 15 | |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 16 | Besides officially supported platforms, NFD is known to work on: Fedora 20+, CentOS 6+, Gentoo |
| 17 | Linux, Raspberry Pi, OpenWRT, FreeBSD 10+, and several `other platforms |
| 18 | <https://redmine.named-data.net/projects/nfd/wiki/Wiki#Installation-experiences-for-selected-platforms>`__. |
| 19 | We would also appreciate feedback and help packaging NDN releases for other platforms. |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 20 | |
| 21 | .. _Install NFD Using the NDN PPA Repository on Ubuntu Linux: |
| 22 | |
| 23 | Install NFD Using the NDN PPA Repository on Ubuntu Linux |
| 24 | -------------------------------------------------------- |
| 25 | |
Davide Pesavento | cc7bee7 | 2016-04-22 02:21:13 +0200 | [diff] [blame] | 26 | NFD binaries and related tools for Ubuntu 14.04 and 16.04 can be installed using PPA |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 27 | packages from named-data repository. First, you will need to add ``named-data/ppa`` |
| 28 | repository to binary package sources and update list of available packages. |
| 29 | |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 30 | Preliminary steps if you have not used PPA packages before |
| 31 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 32 | |
| 33 | To simplify adding new PPA repositories, Ubuntu provides ``add-apt-repository`` tool, |
Davide Pesavento | cc7bee7 | 2016-04-22 02:21:13 +0200 | [diff] [blame] | 34 | which is not installed by default on some systems. |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 35 | |
| 36 | :: |
| 37 | |
| 38 | sudo apt-get install software-properties-common |
| 39 | |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 40 | Adding NDN PPA |
| 41 | ~~~~~~~~~~~~~~ |
| 42 | |
| 43 | After installing ``add-apt-repository``, run the following command to add `NDN PPA |
| 44 | repository`_. |
| 45 | |
| 46 | :: |
| 47 | |
| 48 | sudo add-apt-repository ppa:named-data/ppa |
| 49 | sudo apt-get update |
| 50 | |
| 51 | Installing NFD and other NDN packages |
| 52 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 53 | |
| 54 | After you have added `NDN PPA repository`_, NFD and other NDN packages can be easily |
| 55 | installed in a standard way, i.e., either using ``apt-get`` as shown below or using any |
| 56 | other package manager, such as Synaptic Package Manager: |
| 57 | |
| 58 | :: |
| 59 | |
| 60 | sudo apt-get install nfd |
| 61 | |
| 62 | For the list of available packages, refer to `NDN PPA repository`_ homepage. |
| 63 | |
| 64 | .. _NDN PPA repository: https://launchpad.net/~named-data/+archive/ppa |
| 65 | |
| 66 | Building from Source |
| 67 | -------------------- |
| 68 | |
| 69 | Downloading from Git |
| 70 | ~~~~~~~~~~~~~~~~~~~~ |
| 71 | |
| 72 | The first step is to obtain the source code for ``NFD`` and, its main dependency, the |
| 73 | ``ndn-cxx`` library. If you are not planning to work with the bleeding edge code, make |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 74 | sure you checkout the correct release tag (e.g., ``*-0.6.0``) for both repositories: |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 75 | |
| 76 | :: |
| 77 | |
| 78 | # Download ndn-cxx |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 79 | git clone https://github.com/named-data/ndn-cxx |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 80 | |
| 81 | # Download NFD |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 82 | git clone --recursive https://github.com/named-data/NFD |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 83 | |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 84 | .. note:: |
| 85 | While we strive to ensure that the latest version (master branch) of NFD and ndn-cxx |
| 86 | always properly compiles and works, sometimes there could be problems. In these cases, use |
| 87 | the latest released version. |
| 88 | |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 89 | Prerequisites |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 90 | ~~~~~~~~~~~~~ |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 91 | |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 92 | Install the `ndn-cxx library <https://named-data.net/doc/ndn-cxx/current/INSTALL.html>`__ and its requirements |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 93 | |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 94 | - On macOS with Homebrew: |
Junxiao Shi | e5e1e25 | 2014-12-13 22:07:35 -0700 | [diff] [blame] | 95 | |
| 96 | :: |
| 97 | |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 98 | brew install boost openssl pkg-config |
Junxiao Shi | e5e1e25 | 2014-12-13 22:07:35 -0700 | [diff] [blame] | 99 | |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 100 | - On Ubuntu: |
Junxiao Shi | e5e1e25 | 2014-12-13 22:07:35 -0700 | [diff] [blame] | 101 | |
| 102 | :: |
| 103 | |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 104 | sudo apt-get install build-essential pkg-config libboost-all-dev \ |
| 105 | libsqlite3-dev libssl-dev libpcap-dev |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 106 | |
| 107 | To build manpages and API documentation: |
| 108 | |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 109 | - On macOS with Homebrew: |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 110 | |
| 111 | :: |
| 112 | |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 113 | brew install doxygen graphviz |
| 114 | sudo easy_install pip |
| 115 | sudo pip Sphinx |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 116 | |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 117 | - On Ubuntu: |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 118 | |
| 119 | :: |
| 120 | |
| 121 | sudo apt-get install doxygen graphviz python-sphinx |
| 122 | |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 123 | Build |
| 124 | ~~~~~ |
| 125 | |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 126 | The following basic commands should be used to build NFD on Ubuntu and macOS with Homebrew: |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 127 | |
| 128 | :: |
| 129 | |
| 130 | ./waf configure |
| 131 | ./waf |
| 132 | sudo ./waf install |
| 133 | |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 134 | If you have installed ``ndn-cxx`` library and/or other dependencies into a non-standard path, you |
Alexander Afanasyev | 6db058c | 2014-11-13 16:46:25 -0800 | [diff] [blame] | 135 | may need to modify ``PKG_CONFIG_PATH`` environment variable before running ``./waf configure``. |
| 136 | For example, |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 137 | |
| 138 | :: |
| 139 | |
Alexander Afanasyev | 6db058c | 2014-11-13 16:46:25 -0800 | [diff] [blame] | 140 | export PKG_CONFIG_PATH=/custom/lib/pkgconfig:$PKG_CONFIG_PATH |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 141 | ./waf configure |
| 142 | ./waf |
| 143 | sudo ./waf install |
| 144 | |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 145 | Refer to ``./waf --help`` for more options that can be used during ``configure`` stage and |
| 146 | how to properly configure and run NFD. |
| 147 | |
Alexander Afanasyev | 508411e | 2014-12-16 13:27:59 -0800 | [diff] [blame] | 148 | .. note:: |
| 149 | If you are working on a source repository that has been compiled before, and you have |
| 150 | upgraded one of the dependencies, please execute ``./waf distclean`` to clear object files |
| 151 | and start over. |
| 152 | |
Alexander Afanasyev | 2618153 | 2014-05-07 23:38:51 -0700 | [diff] [blame] | 153 | Debug symbols |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 154 | ~~~~~~~~~~~~~ |
Alexander Afanasyev | 2618153 | 2014-05-07 23:38:51 -0700 | [diff] [blame] | 155 | |
| 156 | The default compiler flags enable debug symbols to be included in binaries. This |
| 157 | potentially allows more meaningful debugging if NFD or other tools happen to crash. |
| 158 | |
| 159 | If it is undesirable, default flags can be easily overridden. The following example shows |
| 160 | how to completely disable debug symbols and configure NFD to be installed into ``/usr`` |
| 161 | with configuration in ``/etc`` folder. |
| 162 | |
| 163 | :: |
| 164 | |
| 165 | CXXFLAGS="-O2" ./waf configure --prefix=/usr --sysconfdir=/etc |
| 166 | ./waf |
| 167 | sudo ./waf install |
| 168 | |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 169 | .. note:: |
| 170 | For Ubuntu PPA packages debug symbols are available in ``*-dbg`` packages. |
| 171 | |
Alexander Afanasyev | 7c10b3b | 2015-01-20 12:24:27 -0800 | [diff] [blame] | 172 | Customize Compiler |
| 173 | ~~~~~~~~~~~~~~~~~~ |
| 174 | |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame] | 175 | To choose a custom C++ compiler for building NFD, set the ``CXX`` environment variable |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 176 | to point to the compiler binary. For example, to select the clang compiler on a Linux |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame] | 177 | system, use the following: |
Alexander Afanasyev | 7c10b3b | 2015-01-20 12:24:27 -0800 | [diff] [blame] | 178 | |
| 179 | :: |
| 180 | |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame] | 181 | CXX=clang++ ./waf configure |
Alexander Afanasyev | 7c10b3b | 2015-01-20 12:24:27 -0800 | [diff] [blame] | 182 | |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 183 | Building documentation |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 184 | ~~~~~~~~~~~~~~~~~~~~~~ |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 185 | |
| 186 | NFD tutorials and API documentation can be built using the following commands: |
| 187 | |
| 188 | :: |
| 189 | |
| 190 | # Full set of documentation (tutorials + API) in build/docs |
| 191 | ./waf docs |
| 192 | |
| 193 | # Only tutorials in `build/docs` |
| 194 | ./waf sphinx |
| 195 | |
| 196 | # Only API docs in `build/docs/doxygen` |
| 197 | ./waf doxgyen |
| 198 | |
| 199 | |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 200 | Manpages are automatically created and installed during the normal build process (e.g., |
| 201 | during ``./waf`` and ``./waf install``), if ``python-sphinx`` module is detected during |
| 202 | ``./waf configure`` stage. By default, manpages are installed into |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 203 | ``${PREFIX}/share/man`` (where default value for ``PREFIX`` is ``/usr/local``). This |
| 204 | location can be changed during ``./waf configure`` stage using ``--prefix``, |
| 205 | ``--datarootdir``, or ``--mandir`` options. |
| 206 | |
| 207 | For more details, refer to ``./waf --help``. |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 208 | |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 209 | Initial configuration |
| 210 | --------------------- |
| 211 | |
| 212 | .. note:: |
| 213 | If you have installed NFD from binary packages, the package manager has already |
| 214 | installed initial configuration and you can safely skip this section. |
| 215 | |
| 216 | General |
| 217 | ~~~~~~~ |
| 218 | |
| 219 | After installing NFD from source, you need to create a proper config file. If default |
| 220 | location for ``./waf configure`` was used, this can be accomplished by simply copying the |
| 221 | sample configuration file: |
| 222 | |
| 223 | :: |
| 224 | |
| 225 | sudo cp /usr/local/etc/ndn/nfd.conf.sample /usr/local/etc/ndn/nfd.conf |
| 226 | |
| 227 | NFD Security |
| 228 | ~~~~~~~~~~~~ |
| 229 | |
| 230 | NFD provides mechanisms to enable strict authorization for all management commands. In |
| 231 | particular, one can authorize only specific public keys to create new Faces or change the |
| 232 | forwarding strategy for specific namespaces. For more information about how to generate |
| 233 | private/public key pair, generate self-signed certificate, and use this self-signed |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 234 | certificate to authorize NFD management commands, refer to :ref:`How to configure NFD |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 235 | security` FAQ question. |
| 236 | |
| 237 | In the sample configuration file, all authorizations are disabled, effectively allowing |
| 238 | anybody on the local machine to issue NFD management commands. **The sample file is |
| 239 | intended only for demo purposes and MUST NOT be used in a production environment.** |
| 240 | |
| 241 | Running |
| 242 | ------- |
| 243 | |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 244 | Starting |
| 245 | ~~~~~~~~ |
| 246 | |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 247 | If you have installed NFD from source code, it is recommended to start NFD with the |
| 248 | ``nfd-start`` script: |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 249 | |
| 250 | :: |
| 251 | |
| 252 | nfd-start |
| 253 | |
Junxiao Shi | 849e12a | 2017-08-02 00:14:57 +0000 | [diff] [blame] | 254 | On macOS it may ask for your keychain password or ask ``nfd wants to sign using key in |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 255 | your keychain.`` Enter your keychain password and click Always Allow. |
| 256 | |
| 257 | Later, you can stop NFD with ``nfd-stop`` or by simply killing the ``nfd`` process. |
| 258 | |
Junxiao Shi | 849e12a | 2017-08-02 00:14:57 +0000 | [diff] [blame] | 259 | If you have installed NFD using a package manager, you can start and stop NFD service using the |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 260 | operating system's service manager (such as Upstart, systemd, or launchd) or using |
| 261 | "Automatically start NFD" option in NDN Control Center app. |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 262 | |
| 263 | Connecting to remote NFDs |
| 264 | ~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 265 | |
Junxiao Shi | 849e12a | 2017-08-02 00:14:57 +0000 | [diff] [blame] | 266 | To create a UDP tunnel to a remote NFD, execute the following command in terminal: |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 267 | |
| 268 | :: |
| 269 | |
Junxiao Shi | 849e12a | 2017-08-02 00:14:57 +0000 | [diff] [blame] | 270 | nfdc face create udp://<other host> |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 271 | |
| 272 | where ``<other host>`` is the name or IP address of the other host (e.g., |
| 273 | ``udp://spurs.cs.ucla.edu``). This outputs: |
| 274 | |
| 275 | :: |
| 276 | |
Junxiao Shi | 849e12a | 2017-08-02 00:14:57 +0000 | [diff] [blame] | 277 | face-created id=308 local=udp4://10.0.2.15:6363 remote=udp4://131.179.196.46:6363 persistency=persistent |
| 278 | |
| 279 | To add a route ``/ndn`` toward the remote NFD, execute the following command in terminal: |
| 280 | |
| 281 | :: |
| 282 | |
| 283 | nfdc route add /ndn udp://<other host> |
| 284 | |
| 285 | This outputs: |
| 286 | |
| 287 | :: |
| 288 | |
| 289 | route-add-accepted prefix=/ndn nexthop=308 origin=static cost=0 flags=child-inherit expires=never |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 290 | |
Alexander Afanasyev | 84dd4ca | 2017-10-15 14:56:08 -0400 | [diff] [blame^] | 291 | The ``/ndn`` means that NFD will forward all Interests that start with ``/ndn`` through the |
| 292 | face to the other host. If you only want to forward Interests with a certain prefix, use it |
| 293 | instead of ``/ndn``. This only forwards Interests to the other host, but there is no "back |
| 294 | route" for the other host to forward Interests to you. For that, you can rely on automatic |
| 295 | prefix propagation feature of NFD or go to the other host and use ``nfdc`` to add the route. |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 296 | |
| 297 | Playing with NFD |
| 298 | ---------------- |
| 299 | |
| 300 | After you haved installed, configured, and started NFD, you can try to install and play |
| 301 | with the following: |
| 302 | |
| 303 | Sample applications: |
| 304 | |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame] | 305 | - `Simple examples in ndn-cxx library <https://named-data.net/doc/ndn-cxx/current/examples.html>`_ |
Alexander Afanasyev | 7c10b3b | 2015-01-20 12:24:27 -0800 | [diff] [blame] | 306 | |
| 307 | If you have installed ndn-cxx from source, you already have compiled these: |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 308 | |
| 309 | + examples/producer |
| 310 | + examples/consumer |
| 311 | + examples/consumer-with-timer |
| 312 | |
Alexander Afanasyev | 7c10b3b | 2015-01-20 12:24:27 -0800 | [diff] [blame] | 313 | - `Introductory examples of NDN-CCL |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame] | 314 | <https://redmine.named-data.net/projects/application-development-documentation-guides/wiki/Step-By-Step_-_Common_Client_Libraries>`_ |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 315 | |
| 316 | Real applications and libraries: |
| 317 | |
Junxiao Shi | af9aa36 | 2016-07-13 13:18:07 +0000 | [diff] [blame] | 318 | + `ndn-tools - NDN Essential Tools <https://github.com/named-data/ndn-tools>`_ |
Alexander Afanasyev | 7c10b3b | 2015-01-20 12:24:27 -0800 | [diff] [blame] | 319 | + `ndn-traffic-generator - Traffic Generator For NDN |
| 320 | <https://github.com/named-data/ndn-traffic-generator>`_ |
| 321 | + `repo-ng - Next generation of NDN repository <https://github.com/named-data/repo-ng>`_ |
| 322 | + `ChronoChat - Multi-user NDN chat application <https://github.com/named-data/ChronoChat>`_ |
| 323 | + `ChronoSync - Sync library for multiuser realtime applications for NDN |
| 324 | <https://github.com/named-data/ChronoSync>`_ |