Project

General

Profile

Actions

Step-By-Step - Common Client Libraries » History » Revision 17

« Previous | Revision 17/40 (diff) | Next »
Anonymous, 12/17/2015 04:18 PM


Step-By-Step - Common Client Libraries

This document step-by-step how to get a minimal NFD running so you can start writing applications to use the NDN Common Client Libraries (NDN-CPP, NDN-JS, PyNDN, jNDN).

Prerequisites

OS X 10.9, OS X 10.10.2, OS X 10.11

In a new terminal, enter:

sudo port install pkgconfig boost sqlite3 libcryptopp libpcap

To build NFD, we need /usr/local/lib/pkgconfig in the environment variable PKG_CONFIG_PATH, so we set it here. If you close your terminal before building NFD, you should set this again.

export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig

Ubuntu 12.04

In a terminal, enter:

sudo apt-get install build-essential git libssl-dev libsqlite3-dev libcrypto++-dev libpcap-dev libboost1.48-all-dev

Ubuntu 13.10, Ubuntu 14.04, Ubuntu 15.04, Raspbian Wheezy and Raspbian Jessie (Rapberry Pi)

In a terminal, enter:

sudo apt-get install build-essential git libssl-dev libsqlite3-dev libcrypto++-dev libpcap-dev libboost-all-dev

Raspbian Wheezy and Raspbian Jessie

To run NFD on the Raspberry Pi, you need to enable IPv6 support. Enter sudo nano /etc/modules (or use your favorite editor). Add the following line to /etc/modules:

ipv6

Reboot your Raspberry Pi.

(If you don't want to enable IPv6 support on the Raspberry Pi, you can disable IPv6 in NFD. After installing NFD, replace enable_v6 yes with enable_v6 no in the tcp and udp sections of /usr/local/etc/ndn/nfd.conf .)

Build/Install NFD

These are steps to build/install NFD which works with NFD. In a terminal, enter:

git clone https://github.com/named-data/ndn-cxx
git clone --recursive https://github.com/named-data/NFD
cd ndn-cxx
./waf configure

If waf says "program doxygen not found", "program sphinx-build not found" or "library rt not found", it is OK.

./waf
sudo ./waf install
cd ..
cd NFD
./waf configure

If waf says "libndn-cxx not found", then set PKG_CONFIG_PATH as shown in the Prerequisites above.

./waf
sudo ./waf install
cd ..

The NFD programs are installed in /usr/local/bin . The NFD configuration file is in /usr/local/etc/ndn . Copy the sample configuration file to make it the default:

sudo cp /usr/local/etc/ndn/nfd.conf.sample /usr/local/etc/ndn/nfd.conf

Ubuntu

[Ubuntu only] Update the path to the shared libraries:

sudo /sbin/ldconfig

Configure NFD

NFD provides mechanisms to enable strict authorization for all management commands. In particular, one can authorize only a specific public key to create new Faces or to change the strategy choice for specific namespaces.
For more information about how to generate a private/public key pair, generate a self-signed certificate, and use this self-signed certificate to authorize NFD management commands, refer to NFD Configuration Tips.

In the sample configuration file, all authorization is disabled, effectively allowing anybody on the local machine to issue NFD management commands. The sample file is intended only for demo purposes and MUST NOT be used in a production environment.

Start NFD

Open a new terminal window (so you can watch the NFD messages) and enter:

nfd-start

On OS X it may ask for your keychain password or ask "nfd wants to sign using key in your keychain." Enter your keychain password and click Always Allow.

Later, you can stop NFD with nfd-stop .

Add a route to another NFD host (optional)

The previous instructions are good for testing on the local host. If you want to route an interest to another NFD host, in a terminal enter:

nfdc register /ndn udp://<other host>

where <other host> is the name or IP address of the other host (e.g., spurs.cs.ucla.edu). The "/ndn" means that NFD will forward all interests that start with /ndn through the face to the other host. If you only want to forward interests with a certain prefix then use it instead of "/ndn".

This only forwards interests to the other host, but there is no "back route" for the other host to forward interests to you. For that, you must go to the other host and use nfdc to add the route. (The "back route" can also be automatically configured with nfd-autoreg. For more information refer to nfd-autoreg manpage.)

Install the Common Client Library

If you haven't done so, get the library from GitHub and follow the INSTALL instructions for your language:

Send an Interest to receive a Data packet

The example program "test get async" is a simple program to send some interests and get a data packet. Here they are on the various languages:

The main calls to the API are (using Python for example):

Call the Face constructor and specify the host.

face = Face("aleph.ndn.ucla.edu")

Create a Name for the Interest, using a Name URI.

name1 = Name("/ndn/edu/ucla/remap/ndn-js-test/howdy.txt")

Call expressInterest, passing in the callbacks for onData and onTimeout.

face.expressInterest(name1, counter.onData, counter.onTimeout)

Start an event loop to keep calling processEvents until the application is finished.
Your application should make sure that it calls processEvents in the same thread as expressInterest (which also modifies the pending interest table).

while counter._callbackCount < 3:
    face.processEvents()
    # We need to sleep for a few milliseconds so we don't use 100% of the CPU.
    time.sleep(0.01)

Updated by Anonymous over 8 years ago · 17 revisions