akmhoque | cc82753 | 2014-07-09 08:48:49 -0500 | [diff] [blame] | 1 | NLSR - Named Data Link State Routing Protocol |
| 2 | ============================================= |
akmhoque | dbfd791 | 2014-01-31 20:15:39 -0600 | [diff] [blame] | 3 | |
Junxiao Shi | f09e263 | 2015-01-02 18:15:01 -0700 | [diff] [blame] | 4 | For complete documentation and more extensive information, |
| 5 | please visit the [NLSR homepage](http://named-data.net/doc/NLSR/current/). |
| 6 | |
Nick Gordon | ed473c6 | 2017-12-21 14:02:30 -0600 | [diff] [blame] | 7 | If you are new to the NDN community of software generally, read the |
| 8 | [Contributor's Guide](https://github.com/named-data/NFD/blob/master/CONTRIBUTING.md). |
| 9 | |
akmhoque | cc82753 | 2014-07-09 08:48:49 -0500 | [diff] [blame] | 10 | ## Overview |
akmhoque | dbfd791 | 2014-01-31 20:15:39 -0600 | [diff] [blame] | 11 | |
Alexander Afanasyev | 7decbbf | 2014-08-24 21:29:01 -0700 | [diff] [blame] | 12 | NLSR is a routing protocol in NDN that populates NDN's Routing Information Base. NLSR |
akmhoque | cc82753 | 2014-07-09 08:48:49 -0500 | [diff] [blame] | 13 | will continue to evolve alongside the Named Data Networking [protocol](http://named-data.net/doc/ndn-tlv/). |
akmhoque | dbfd791 | 2014-01-31 20:15:39 -0600 | [diff] [blame] | 14 | |
akmhoque | cc82753 | 2014-07-09 08:48:49 -0500 | [diff] [blame] | 15 | NLSR is an open and free software package licensed under the GPL 3.0 license and free to all |
| 16 | Internet users and developers. For more information about the licensing details and |
| 17 | limitations, refer to [COPYING.md](https://github.com/named-data/NLSR/blob/master/COPYING.md). |
akmhoque | dbfd791 | 2014-01-31 20:15:39 -0600 | [diff] [blame] | 18 | |
Ashlesh Gawande | 39cf81a | 2018-02-22 13:37:07 -0600 | [diff] [blame^] | 19 | NLSR is developed by the members of the [NSF-sponsored NDN project team](https://named-data.net/project/participants/). |
akmhoque | cc82753 | 2014-07-09 08:48:49 -0500 | [diff] [blame] | 20 | For more details, please refer to [AUTHORS.md](https://github.com/named-data/NLSR/blob/master/AUTHORS.md). |
| 21 | Bug reports and feedback are highly appreciated and can be made through the |
Ashlesh Gawande | 39cf81a | 2018-02-22 13:37:07 -0600 | [diff] [blame^] | 22 | [Redmine site](https://redmine.named-data.net/projects/nlsr). |
akmhoque | dbfd791 | 2014-01-31 20:15:39 -0600 | [diff] [blame] | 23 | |
akmhoque | cc82753 | 2014-07-09 08:48:49 -0500 | [diff] [blame] | 24 | The main design goal of NLSR is to provide a routing protocol to populate NDN's FIB. |
| 25 | NLSR calculates the routing table using link-state or hyperbolic routing and produces |
| 26 | multiple faces for each reachable name prefix in a single authoritative domain. NLSR |
| 27 | will continue to evolve over time to include neighbor discovery and to become a full |
| 28 | fledged inter-domain routing protocol for NDN. |
akmhoque | dbfd791 | 2014-01-31 20:15:39 -0600 | [diff] [blame] | 29 | |
| 30 | |
akmhoque | cc82753 | 2014-07-09 08:48:49 -0500 | [diff] [blame] | 31 | Source releases |
| 32 | --------------- |
akmhoque | dbfd791 | 2014-01-31 20:15:39 -0600 | [diff] [blame] | 33 | |
akmhoque | cc82753 | 2014-07-09 08:48:49 -0500 | [diff] [blame] | 34 | The source code and source-code installation instructions are always available at |
| 35 | the following links: |
akmhoque | dbfd791 | 2014-01-31 20:15:39 -0600 | [diff] [blame] | 36 | |
Ashlesh Gawande | 39cf81a | 2018-02-22 13:37:07 -0600 | [diff] [blame^] | 37 | - [Installation](https://named-data.net/doc/NLSR/current/INSTALL.html) |
| 38 | - [Getting Started with NLSR](https://named-data.net/doc/NLSR/current/GETTING-STARTED.html) |
Junxiao Shi | f09e263 | 2015-01-02 18:15:01 -0700 | [diff] [blame] | 39 | - [GitHub NLSR repository](https://github.com/named-data/NLSR) |
akmhoque | dbfd791 | 2014-01-31 20:15:39 -0600 | [diff] [blame] | 40 | |
akmhoque | cc82753 | 2014-07-09 08:48:49 -0500 | [diff] [blame] | 41 | Additional information |
| 42 | ---------------------- |
akmhoque | dbfd791 | 2014-01-31 20:15:39 -0600 | [diff] [blame] | 43 | |
Nick Gordon | ed473c6 | 2017-12-21 14:02:30 -0600 | [diff] [blame] | 44 | - [Contributor's Guide](https://github.com/named-data/NFD/blob/master/CONTRIBUTING.md) |
Ashlesh Gawande | 39cf81a | 2018-02-22 13:37:07 -0600 | [diff] [blame^] | 45 | - [NLSR Wiki](https://redmine.named-data.net/projects/nlsr/wiki/) |
akmhoque | cc82753 | 2014-07-09 08:48:49 -0500 | [diff] [blame] | 46 | - Feature requests and bug reports are welcome on our |
Ashlesh Gawande | 39cf81a | 2018-02-22 13:37:07 -0600 | [diff] [blame^] | 47 | [NLSR on NDN Redmine](https://redmine.named-data.net/projects/nlsr) |
Ashlesh Gawande | b4567f4 | 2017-04-28 14:40:39 -0500 | [diff] [blame] | 48 | - [NLSR Mailing List Sign Up](https://listserv.memphis.edu/scripts/wa.exe?GETPW1) |
| 49 | - [NLSR Mailing List](https://listserv.memphis.edu/scripts/wa.exe?SUBED1=NLSR-HELP-L&A=1) |
| 50 | - [NLSR Mailing List Archives](https://listserv.memphis.edu/scripts/wa.exe?A0=NLSR-HELP-L) |
dmcoomes | a47255c | 2017-09-29 16:08:32 -0500 | [diff] [blame] | 51 | - [NLSR Developer's guide](https://github.com/named-data/NLSR/blob/developers-guide/NLSR-Developers-Guide.pdf) |