Vince Lehman | b722b10 | 2014-08-24 16:33:49 -0500 | [diff] [blame] | 1 | Getting Started with NLSR |
| 2 | ========================= |
| 3 | |
| 4 | .. toctree:: |
| 5 | .. |
| 6 | |
| 7 | Getting Source |
| 8 | -------------- |
| 9 | |
Alexander Afanasyev | 7decbbf | 2014-08-24 21:29:01 -0700 | [diff] [blame] | 10 | - `GitHub NLSR repository <https://github.com/named-data/NLSR>`_ |
Vince Lehman | b722b10 | 2014-08-24 16:33:49 -0500 | [diff] [blame] | 11 | |
| 12 | Installation |
| 13 | ------------ |
| 14 | |
| 15 | :doc:`INSTALL` |
| 16 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 17 | |
| 18 | Important Notes About Configuration |
| 19 | ----------------------------------- |
| 20 | |
| 21 | Since v0.4.0, NLSR no longer creates Faces for the neighbors that are |
| 22 | specified in ``nlsr.conf``. Instead, it relies on the pre-existence of |
| 23 | the Faces in NFD. NLSR will obtain this information from NFD, and |
| 24 | configure its neighbors using this information. |
| 25 | |
| 26 | For people who were relying on NLSR to automagically configure their |
| 27 | networks, this must now be done with ``nfdc``. Its documentation can |
| 28 | be found `here |
| 29 | <https://named-data.net/doc/NFD/current/manpages/nfdc.html>`_ |
| 30 | |
Vince Lehman | b722b10 | 2014-08-24 16:33:49 -0500 | [diff] [blame] | 31 | Configuration |
| 32 | ------------- |
| 33 | |
| 34 | After installing NLSR from source, you need to create a configuration file for |
Alexander Afanasyev | 7decbbf | 2014-08-24 21:29:01 -0700 | [diff] [blame] | 35 | NLSR. Please take a look at :doc:`manpages/nlsr.conf` for a sample configuration. For |
| 36 | details on configuring a router, please refer to :doc:`ROUTER-CONFIG`. For details on |
| 37 | security configuration, please refer to :doc:`SECURITY-CONFIG`. |
Vince Lehman | b722b10 | 2014-08-24 16:33:49 -0500 | [diff] [blame] | 38 | |
| 39 | Running |
| 40 | ------- |
| 41 | |
| 42 | Run nlsr with the following command: |
| 43 | |
| 44 | :: |
| 45 | |
| 46 | nlsr |
| 47 | |
Alexander Afanasyev | 7decbbf | 2014-08-24 21:29:01 -0700 | [diff] [blame] | 48 | NLSR will look for the default configuration file, ``nlsr.conf``, in the current directory. |
Vince Lehman | b722b10 | 2014-08-24 16:33:49 -0500 | [diff] [blame] | 49 | |
Alexander Afanasyev | 7decbbf | 2014-08-24 21:29:01 -0700 | [diff] [blame] | 50 | You can also run ``nlsr -f`` with the absolute path of the configuration file: |
Vince Lehman | b722b10 | 2014-08-24 16:33:49 -0500 | [diff] [blame] | 51 | |
| 52 | :: |
| 53 | |
Alexander Afanasyev | 7decbbf | 2014-08-24 21:29:01 -0700 | [diff] [blame] | 54 | nlsr -f /usr/local/etc/ndn/nlsr.conf |
Vince Lehman | b722b10 | 2014-08-24 16:33:49 -0500 | [diff] [blame] | 55 | |
Alexander Afanasyev | 7decbbf | 2014-08-24 21:29:01 -0700 | [diff] [blame] | 56 | To run NLSR as daemon, use the ``-d`` flag: |
Vince Lehman | b722b10 | 2014-08-24 16:33:49 -0500 | [diff] [blame] | 57 | |
| 58 | :: |
| 59 | |
| 60 | nlsr -d |