Project

General

Profile

Wiki » History » Version 90

Alex Afanasyev, 11/25/2015 04:43 PM

1 4 Junxiao Shi
# NDN Forwarding Daemon (NFD)
2 2
3 51 Alex Afanasyev
**NDN Forwarding Daemon (NFD)** is a new NDN forwarder under active development.
4 69 Anonymous
NFD 0.2.0 was released on August 25, 2014.
5 2
6 40 Beichuan Zhang
NFD implements the following specifications:
7 2
8 85 Junxiao Shi
* [NDN packet format](http://named-data.net/doc/ndn-tlv/)
9 52 Alex Afanasyev
* [[Management|NFD Management protocol]]
10 2
* [[ConfigFileFormat|NFD Configuration file format]]
11 88 Alex Afanasyev
* [[NDNLPv2|NDNLPv2 is a link protocol for Named Data Networking]]
12 65 Junxiao Shi
* [[ScopeControl|Namespace-based Scope Control]]: /localhost and /localhop
13 52 Alex Afanasyev
14
Other specifications:
15
16 40 Beichuan Zhang
* [[HubDiscovery|NDN hub discovery procedure]] to discover hub nodes on the NDN testbed.
17 4 Junxiao Shi
18 46 Alex Afanasyev
## User Knowledge Base
19
20 56 Alex Afanasyev
* [NFD overview](http://named-data.net/doc/NFD/current/README.html)
21 55 Alex Afanasyev
* [NFD FAQ](http://named-data.net/doc/NFD/current/FAQ.html)
22 62 Alex Afanasyev
* [ndn-cxx library](http://named-data.net/doc/ndn-cxx/current/), [application examples using ndn-cxx library](http://named-data.net/doc/ndn-cxx/current/examples.html)
23 83 Alex Afanasyev
* [[NFD autoconfiguration]]
24 46 Alex Afanasyev
25 2
### Installation experiences for selected platforms
26
27 72 Junxiao Shi
* Officially Supported Operating Systems
28 81 Alex Afanasyev
    * [[OS X with Homebrew]]
29 72 Junxiao Shi
    * [OS X with MacPorts](http://named-data.net/doc/NFD/current/INSTALL.html#install-nfd-using-the-ndn-macports-repository-on-os-x)
30
    * [Ubuntu with PPA](http://named-data.net/doc/NFD/current/INSTALL.html#install-nfd-using-the-ndn-ppa-repository-on-ubuntu-linux)
31
    * [Source Installation on OS X or Ubuntu](http://named-data.net/doc/NFD/current/INSTALL.html#building-from-source)
32
* Other Operating Systems
33
    * [[Install-centos|CentOS]]
34
    * [[Install-Fedora|Fedora 20]]
35
    * [[Compiling on FreeBSD 10.0|FreeBSD 10]]
36 89 Alex Afanasyev
    * [[OS X 10.8]]
37 72 Junxiao Shi
* Virtualization Environments
38
    * [Vagrant](https://github.com/named-data-education/ndn-with-vagrant)
39
    * [Docker](https://github.com/named-data-education/ndn-with-docker)
40
* Embedded Devices
41
    * [[ndn-embedded:Cross-compiling NDN projects for home routers|OpenWrt and DD-WRT home routers]]
42
    * [[ndn-embedded:Cross-compiling NDN projects for Raspberry Pi|Raspberry Pi]]
43 82 Alex Afanasyev
    * [NDN on Galileo (Intel's x86 Arduino-certified development board)](http://schwannden.gitbooks.io/ndn-on-galileo/)
44 63 Alex Afanasyev
45 53 Alex Afanasyev
## NFD Developer Resources
46 4 Junxiao Shi
47 90 Alex Afanasyev
<!--
48 11 Beichuan Zhang
### UML diagrams
49 45 Alex Afanasyev
* [NFD-UML](http://named-data.net/doc/nfd-uml/)  (outdated)
50 90 Alex Afanasyev
-->
51
52
[Contributing Code]
53 11 Beichuan Zhang
54 4 Junxiao Shi
### platform and libraries
55 73 Alex Afanasyev
* [C++ 11](http://en.cppreference.com/w/), [[CodeStyle|code style guidelines]]
56 86 Junxiao Shi
* [[Boost|Boost >=1.48.0]]
57 32 Junxiao Shi
* [Boost Unit Test Framework](http://www.boost.org/doc/libs/1_48_0/libs/test/doc/html/index.html), more information on [[UnitTesting|unit testing]]
58 50 Alex Afanasyev
* [ndn-cxx](https://named-data.net/doc/ndn-cxx/), Extended version of NDN C++ client library 
59 49 Alex Afanasyev
* [waf build system](https://code.google.com/p/waf/)
60 2
61 7 Alex Afanasyev
### development process
62 67 Alex Afanasyev
* [Learn Git Branching game](http://pcottle.github.io/learnGitBranching/index.html)
63 2
* [gerrit code review](http://gerrit.named-data.net/), more information:
64 80 Alex Afanasyev
  * [GerritJenkinsGit on OpenStack](https://wiki.openstack.org/wiki/GerritJenkinsGit)
65
  * [Gerrit on MediaWiki](http://www.mediawiki.org/wiki/Gerrit)
66 7 Alex Afanasyev
  * [Git and Gerrit in Action](https://www.jboss.org/dms/judcon/presentations/Boston2011/JUDConBoston2011_day1track2session6.pdf)
67
  * [Using Gerrit Code Review in an Open Source Project](http://redmine.named-data.net/attachments/download/6/gerrit-slides-130203050220-phpapp01.pdf)
68
  * [Gerrit Code Review - A Quick Introduction](https://gerrit-documentation.storage.googleapis.com/Documentation/2.8.1/intro-quick.html)
69 70 Alex Afanasyev
  * [git-review](http://www.mediawiki.org/wiki/Gerrit/git-review)
70 31 Syed Amin
* [[CodeCoverage|gcov code coverage]]
71 84 Junxiao Shi
* [[IntegrationTests]]
72 37 Junxiao Shi
73 5 Junxiao Shi
### background knowledge
74
75
* [[ccndKnowledge|knowledge about ccnd]]
76 40 Beichuan Zhang
* [CCNx protocol](http://www.ccnx.org/releases/ccnx-0.7.2/doc/technical/CCNxProtocol.html)
77 5 Junxiao Shi
* [ndnSIM](http://ndnsim.net/)
78
* [NDNFD](https://github.com/NDN-Routing/NDNFD)
79 74 Alex Afanasyev
80
### misc
81
82 77 Alex Afanasyev
* [[NDN Team License Boilerplate (NFD)]]
83 78 Alex Afanasyev
* [[ndn-cxx:NDN Team License Boilerplate (ndn-cxx)]]
84 79 Alex Afanasyev
* [[nlsr:NDN Team License Boilerplate (NLSR)]]