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 |
| 8 | method. In addition to simplifying installation, the binary release also includes |
| 9 | automatic initial configuration and platform-specific tools to automatically start NFD and |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame^] | 10 | related daemons. In particular, on OS X and macOS NFD is controlled using `launchd |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 11 | <https://github.com/named-data/NFD/tree/master/contrib/osx-launchd>`__ and on Ubuntu using |
| 12 | `upstart <https://github.com/named-data/NFD/tree/master/contrib/upstart>`__ mechanisms. |
| 13 | In both cases, `nfd-start` and `nfd-stop` scripts are convenience wrappers for launchd and |
| 14 | upstart. |
| 15 | |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame^] | 16 | On OS X and macOS, NFD can be installed with MacPorts. Refer to :ref:`Install NFD Using the NDN |
| 17 | MacPorts Repository on OS X and macOS` for more details. |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 18 | |
Davide Pesavento | cc7bee7 | 2016-04-22 02:21:13 +0200 | [diff] [blame] | 19 | On Ubuntu 14.04 and 16.04, NFD can be installed from NDN PPA repository. Refer to |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 20 | :ref:`Install NFD Using the NDN PPA Repository on Ubuntu Linux`. |
| 21 | |
| 22 | Future releases could include support for other platforms. Please send us feedback on the |
| 23 | platforms you're using, so we can prioritize our goals. We would also appreciate help |
| 24 | packaging the current NFD release for other platforms. |
| 25 | |
| 26 | |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame^] | 27 | .. _Install NFD Using the NDN MacPorts Repository on OS X and macOS: |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 28 | |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame^] | 29 | Install NFD Using the NDN MacPorts Repository on OS X and macOS |
| 30 | --------------------------------------------------------------- |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 31 | |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame^] | 32 | OS X and macOS users have the opportunity to seamlessly install and run NFD as well as other |
| 33 | related applications via `MacPorts <https://www.macports.org/>`_. If you are not using MacPorts |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 34 | yet, go to the `MacPorts website <https://www.macports.org/install.php>`_ and install the |
| 35 | MacPorts package. |
| 36 | |
| 37 | NFD and related ports are not part of the official MacPorts repository. In order to use |
| 38 | these ports, you will need to add the NDN MacPorts repository to your local configuration. |
| 39 | In particular, you will need to modify the list of source URLs for MacPorts. For example, |
| 40 | if your MacPorts are installed in ``/opt/local``, add the following line to |
| 41 | `/opt/local/etc/macports/sources.conf` before or after the default port repository: |
| 42 | |
| 43 | :: |
| 44 | |
| 45 | rsync://macports.named-data.net/macports/ |
| 46 | |
| 47 | After this step, you can use ``sudo port selfupdate`` to fetch updated port definitions. |
| 48 | |
| 49 | The following command will install NFD using MacPorts: |
| 50 | |
| 51 | :: |
| 52 | |
| 53 | sudo port install nfd |
| 54 | |
| 55 | .. note:: |
| 56 | |
| 57 | You have to have XCode installed on your machine. This can be installed from the |
| 58 | AppStore (free) on OS X 10.7 or later. Older editions of OS X can download an |
| 59 | appropriate version of XCode from http://developer.apple.com. |
| 60 | |
| 61 | |
| 62 | One advantage of using MacPorts is that you can easily upgrade NFD and other packages to |
| 63 | the latest version. The following commands will do this job: |
| 64 | |
| 65 | :: |
| 66 | |
| 67 | sudo port selfupdate |
| 68 | sudo port upgrade nfd |
| 69 | |
| 70 | .. _Install NFD Using the NDN PPA Repository on Ubuntu Linux: |
| 71 | |
| 72 | Install NFD Using the NDN PPA Repository on Ubuntu Linux |
| 73 | -------------------------------------------------------- |
| 74 | |
Davide Pesavento | cc7bee7 | 2016-04-22 02:21:13 +0200 | [diff] [blame] | 75 | 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] | 76 | packages from named-data repository. First, you will need to add ``named-data/ppa`` |
| 77 | repository to binary package sources and update list of available packages. |
| 78 | |
| 79 | Preliminary steps if you haven't used PPA packages before |
| 80 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 81 | |
| 82 | To simplify adding new PPA repositories, Ubuntu provides ``add-apt-repository`` tool, |
Davide Pesavento | cc7bee7 | 2016-04-22 02:21:13 +0200 | [diff] [blame] | 83 | which is not installed by default on some systems. |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 84 | |
| 85 | :: |
| 86 | |
| 87 | sudo apt-get install software-properties-common |
| 88 | |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 89 | Adding NDN PPA |
| 90 | ~~~~~~~~~~~~~~ |
| 91 | |
| 92 | After installing ``add-apt-repository``, run the following command to add `NDN PPA |
| 93 | repository`_. |
| 94 | |
| 95 | :: |
| 96 | |
| 97 | sudo add-apt-repository ppa:named-data/ppa |
| 98 | sudo apt-get update |
| 99 | |
| 100 | Installing NFD and other NDN packages |
| 101 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 102 | |
| 103 | After you have added `NDN PPA repository`_, NFD and other NDN packages can be easily |
| 104 | installed in a standard way, i.e., either using ``apt-get`` as shown below or using any |
| 105 | other package manager, such as Synaptic Package Manager: |
| 106 | |
| 107 | :: |
| 108 | |
| 109 | sudo apt-get install nfd |
| 110 | |
| 111 | For the list of available packages, refer to `NDN PPA repository`_ homepage. |
| 112 | |
| 113 | .. _NDN PPA repository: https://launchpad.net/~named-data/+archive/ppa |
| 114 | |
| 115 | Building from Source |
| 116 | -------------------- |
| 117 | |
| 118 | Downloading from Git |
| 119 | ~~~~~~~~~~~~~~~~~~~~ |
| 120 | |
| 121 | The first step is to obtain the source code for ``NFD`` and, its main dependency, the |
| 122 | ``ndn-cxx`` library. If you are not planning to work with the bleeding edge code, make |
| 123 | sure you checkout the correct release tag (e.g., ``*-0.2.0``) for both repositories: |
| 124 | |
| 125 | :: |
| 126 | |
| 127 | # Download ndn-cxx |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 128 | git clone https://github.com/named-data/ndn-cxx |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 129 | |
| 130 | # Download NFD |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 131 | git clone --recursive https://github.com/named-data/NFD |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 132 | |
| 133 | Prerequisites |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 134 | ~~~~~~~~~~~~~ |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 135 | |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame^] | 136 | - Install the `ndn-cxx library <https://named-data.net/doc/ndn-cxx/current/INSTALL.html>`_ |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 137 | and its requirements |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 138 | |
Junxiao Shi | e5e1e25 | 2014-12-13 22:07:35 -0700 | [diff] [blame] | 139 | - ``pkg-config`` |
| 140 | |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame^] | 141 | On OS X / macOS with MacPorts: |
Junxiao Shi | e5e1e25 | 2014-12-13 22:07:35 -0700 | [diff] [blame] | 142 | |
| 143 | :: |
| 144 | |
| 145 | sudo port install pkgconfig |
| 146 | |
Davide Pesavento | cc7bee7 | 2016-04-22 02:21:13 +0200 | [diff] [blame] | 147 | On Ubuntu: |
Junxiao Shi | e5e1e25 | 2014-12-13 22:07:35 -0700 | [diff] [blame] | 148 | |
| 149 | :: |
| 150 | |
| 151 | sudo apt-get install pkg-config |
| 152 | |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 153 | - ``libpcap`` |
| 154 | |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame^] | 155 | Comes with the base system on OS X / macOS. |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 156 | |
Davide Pesavento | cc7bee7 | 2016-04-22 02:21:13 +0200 | [diff] [blame] | 157 | On Ubuntu: |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 158 | |
| 159 | :: |
| 160 | |
| 161 | sudo apt-get install libpcap-dev |
| 162 | |
| 163 | To build manpages and API documentation: |
| 164 | |
| 165 | - ``doxygen`` |
| 166 | - ``graphviz`` |
| 167 | - ``python-sphinx`` |
| 168 | |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame^] | 169 | On OS X / macOS with MacPorts: |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 170 | |
| 171 | :: |
| 172 | |
| 173 | sudo port install doxygen graphviz py27-sphinx sphinx_select |
| 174 | sudo port select sphinx py27-sphinx |
| 175 | |
Davide Pesavento | cc7bee7 | 2016-04-22 02:21:13 +0200 | [diff] [blame] | 176 | On Ubuntu: |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 177 | |
| 178 | :: |
| 179 | |
| 180 | sudo apt-get install doxygen graphviz python-sphinx |
| 181 | |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 182 | |
Junxiao Shi | e5e1e25 | 2014-12-13 22:07:35 -0700 | [diff] [blame] | 183 | Besides officially supported platforms, NFD is known to work on: Fedora 20, CentOS 6/7, Gentoo Linux, |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 184 | Raspberry Pi, OpenWRT, FreeBSD 10.0, and several other platforms. We are soliciting help |
| 185 | with documenting common problems / pitfalls in installing/using NFD on different platforms |
| 186 | on `NFD Wiki |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame^] | 187 | <https://redmine.named-data.net/projects/nfd/wiki/Wiki#Installation-experiences-for-selected-platforms>`__. |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 188 | |
| 189 | |
| 190 | Build |
| 191 | ~~~~~ |
| 192 | |
| 193 | The following basic commands should be used to build NFD on Ubuntu: |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 194 | |
| 195 | :: |
| 196 | |
| 197 | ./waf configure |
| 198 | ./waf |
| 199 | sudo ./waf install |
| 200 | |
Alexander Afanasyev | 6db058c | 2014-11-13 16:46:25 -0800 | [diff] [blame] | 201 | If you have installed `ndn-cxx` library and/or other dependencies into a non-standard paths, you |
| 202 | may need to modify ``PKG_CONFIG_PATH`` environment variable before running ``./waf configure``. |
| 203 | For example, |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 204 | |
| 205 | :: |
| 206 | |
Alexander Afanasyev | 6db058c | 2014-11-13 16:46:25 -0800 | [diff] [blame] | 207 | export PKG_CONFIG_PATH=/custom/lib/pkgconfig:$PKG_CONFIG_PATH |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 208 | ./waf configure |
| 209 | ./waf |
| 210 | sudo ./waf install |
| 211 | |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 212 | |
| 213 | Refer to ``./waf --help`` for more options that can be used during ``configure`` stage and |
| 214 | how to properly configure and run NFD. |
| 215 | |
Alexander Afanasyev | 508411e | 2014-12-16 13:27:59 -0800 | [diff] [blame] | 216 | .. note:: |
| 217 | If you are working on a source repository that has been compiled before, and you have |
| 218 | upgraded one of the dependencies, please execute ``./waf distclean`` to clear object files |
| 219 | and start over. |
| 220 | |
Alexander Afanasyev | 2618153 | 2014-05-07 23:38:51 -0700 | [diff] [blame] | 221 | Debug symbols |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 222 | ~~~~~~~~~~~~~ |
Alexander Afanasyev | 2618153 | 2014-05-07 23:38:51 -0700 | [diff] [blame] | 223 | |
| 224 | The default compiler flags enable debug symbols to be included in binaries. This |
| 225 | potentially allows more meaningful debugging if NFD or other tools happen to crash. |
| 226 | |
| 227 | If it is undesirable, default flags can be easily overridden. The following example shows |
| 228 | how to completely disable debug symbols and configure NFD to be installed into ``/usr`` |
| 229 | with configuration in ``/etc`` folder. |
| 230 | |
| 231 | :: |
| 232 | |
| 233 | CXXFLAGS="-O2" ./waf configure --prefix=/usr --sysconfdir=/etc |
| 234 | ./waf |
| 235 | sudo ./waf install |
| 236 | |
Alexander Afanasyev | 7c10b3b | 2015-01-20 12:24:27 -0800 | [diff] [blame] | 237 | Customize Compiler |
| 238 | ~~~~~~~~~~~~~~~~~~ |
| 239 | |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame^] | 240 | To choose a custom C++ compiler for building NFD, set the ``CXX`` environment variable |
| 241 | to point to the compiler binary. For example, when using the clang compiler on a Linux |
| 242 | system, use the following: |
Alexander Afanasyev | 7c10b3b | 2015-01-20 12:24:27 -0800 | [diff] [blame] | 243 | |
| 244 | :: |
| 245 | |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame^] | 246 | CXX=clang++ ./waf configure |
Alexander Afanasyev | 7c10b3b | 2015-01-20 12:24:27 -0800 | [diff] [blame] | 247 | |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 248 | Building documentation |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 249 | ~~~~~~~~~~~~~~~~~~~~~~ |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 250 | |
| 251 | NFD tutorials and API documentation can be built using the following commands: |
| 252 | |
| 253 | :: |
| 254 | |
| 255 | # Full set of documentation (tutorials + API) in build/docs |
| 256 | ./waf docs |
| 257 | |
| 258 | # Only tutorials in `build/docs` |
| 259 | ./waf sphinx |
| 260 | |
| 261 | # Only API docs in `build/docs/doxygen` |
| 262 | ./waf doxgyen |
| 263 | |
| 264 | |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 265 | Manpages are automatically created and installed during the normal build process (e.g., |
| 266 | during ``./waf`` and ``./waf install``), if ``python-sphinx`` module is detected during |
| 267 | ``./waf configure`` stage. By default, manpages are installed into |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 268 | ``${PREFIX}/share/man`` (where default value for ``PREFIX`` is ``/usr/local``). This |
| 269 | location can be changed during ``./waf configure`` stage using ``--prefix``, |
| 270 | ``--datarootdir``, or ``--mandir`` options. |
| 271 | |
| 272 | For more details, refer to ``./waf --help``. |
Steve DiBenedetto | 62a9394 | 2014-08-24 17:13:52 -0600 | [diff] [blame] | 273 | |
| 274 | |
| 275 | Initial configuration |
| 276 | --------------------- |
| 277 | |
| 278 | .. note:: |
| 279 | If you have installed NFD from binary packages, the package manager has already |
| 280 | installed initial configuration and you can safely skip this section. |
| 281 | |
| 282 | General |
| 283 | ~~~~~~~ |
| 284 | |
| 285 | After installing NFD from source, you need to create a proper config file. If default |
| 286 | location for ``./waf configure`` was used, this can be accomplished by simply copying the |
| 287 | sample configuration file: |
| 288 | |
| 289 | :: |
| 290 | |
| 291 | sudo cp /usr/local/etc/ndn/nfd.conf.sample /usr/local/etc/ndn/nfd.conf |
| 292 | |
| 293 | NFD Security |
| 294 | ~~~~~~~~~~~~ |
| 295 | |
| 296 | NFD provides mechanisms to enable strict authorization for all management commands. In |
| 297 | particular, one can authorize only specific public keys to create new Faces or change the |
| 298 | forwarding strategy for specific namespaces. For more information about how to generate |
| 299 | private/public key pair, generate self-signed certificate, and use this self-signed |
| 300 | certificate to authorize NFD management commands refer to :ref:`How to configure NFD |
| 301 | security` FAQ question. |
| 302 | |
| 303 | In the sample configuration file, all authorizations are disabled, effectively allowing |
| 304 | anybody on the local machine to issue NFD management commands. **The sample file is |
| 305 | intended only for demo purposes and MUST NOT be used in a production environment.** |
| 306 | |
| 307 | Running |
| 308 | ------- |
| 309 | |
| 310 | **You should not run ndnd or ndnd-tlv, otherwise NFD will not work correctly** |
| 311 | |
| 312 | Starting |
| 313 | ~~~~~~~~ |
| 314 | |
| 315 | In order to use NFD, you need to start two separate daemons: ``nfd`` (the forwarder |
| 316 | itself) and ``nrd`` (RIB manager that will manage all prefix registrations). The |
| 317 | recommended way is to use `nfd-start` script: |
| 318 | |
| 319 | :: |
| 320 | |
| 321 | nfd-start |
| 322 | |
| 323 | On OS X it may ask for your keychain password or ask ``nfd/nrd wants to sign using key in |
| 324 | your keychain.`` Enter your keychain password and click Always Allow. |
| 325 | |
| 326 | Later, you can stop NFD with ``nfd-stop`` or by simply killing the ``nfd`` process. |
| 327 | |
| 328 | |
| 329 | Connecting to remote NFDs |
| 330 | ~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 331 | |
| 332 | To create a UDP or TCP tunnel to remote NFD and create route toward it, use the following |
| 333 | command in terminal: |
| 334 | |
| 335 | :: |
| 336 | |
| 337 | nfdc register /ndn udp://<other host> |
| 338 | |
| 339 | where ``<other host>`` is the name or IP address of the other host (e.g., |
| 340 | ``udp://spurs.cs.ucla.edu``). This outputs: |
| 341 | |
| 342 | :: |
| 343 | |
| 344 | Successful in name registration: ControlParameters(Name: /ndn, FaceId: 260, Origin: 255, Cost: 0, Flags: 1, ) |
| 345 | |
| 346 | The ``/ndn`` means that NFD will forward all Interests that start with ``/ndn`` through |
| 347 | the face to the other host. If you only want to forward Interests with a certain prefix, |
| 348 | use it instead of ``/ndn``. This only forwards Interests to the other host, but there is |
| 349 | no "back route" for the other host to forward Interests to you. For that, you must go to |
| 350 | the other host and use ``nfdc`` to add the route. |
| 351 | |
| 352 | The "back route" can also be automatically configured with ``nfd-autoreg``. For more |
| 353 | information refer to :doc:`manpages/nfd-autoreg`. |
| 354 | |
| 355 | Playing with NFD |
| 356 | ---------------- |
| 357 | |
| 358 | After you haved installed, configured, and started NFD, you can try to install and play |
| 359 | with the following: |
| 360 | |
| 361 | Sample applications: |
| 362 | |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame^] | 363 | - `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] | 364 | |
| 365 | 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] | 366 | |
| 367 | + examples/producer |
| 368 | + examples/consumer |
| 369 | + examples/consumer-with-timer |
| 370 | |
| 371 | + tools/ndncatchunks3 |
| 372 | + tools/ndnputchunks3 |
| 373 | |
Alexander Afanasyev | 7c10b3b | 2015-01-20 12:24:27 -0800 | [diff] [blame] | 374 | - `Introductory examples of NDN-CCL |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame^] | 375 | <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] | 376 | |
| 377 | Real applications and libraries: |
| 378 | |
Junxiao Shi | af9aa36 | 2016-07-13 13:18:07 +0000 | [diff] [blame] | 379 | + `ndn-tools - NDN Essential Tools <https://github.com/named-data/ndn-tools>`_ |
Alexander Afanasyev | 7c10b3b | 2015-01-20 12:24:27 -0800 | [diff] [blame] | 380 | + `ndn-traffic-generator - Traffic Generator For NDN |
| 381 | <https://github.com/named-data/ndn-traffic-generator>`_ |
| 382 | + `repo-ng - Next generation of NDN repository <https://github.com/named-data/repo-ng>`_ |
| 383 | + `ChronoChat - Multi-user NDN chat application <https://github.com/named-data/ChronoChat>`_ |
| 384 | + `ChronoSync - Sync library for multiuser realtime applications for NDN |
| 385 | <https://github.com/named-data/ChronoSync>`_ |