Skip to content

Commit

Permalink
Merge pull request #7 from vielmetti/patch-1
Browse files Browse the repository at this point in the history
README updates
  • Loading branch information
mdlayher committed May 21, 2018
2 parents 277ca81 + 2d58878 commit c8aac9c
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,23 @@ ndp [![Build Status](https://travis-ci.org/mdlayher/ndp.svg?branch=master)](http
===

Package `ndp` implements the Neighbor Discovery Protocol, as described in
[RFC 4861](https://tools.ietf.org/html/rfc4861). MIT Licensed.
[RFC 4861](https://tools.ietf.org/html/rfc4861). MIT Licensed.

The command `ndp` is a utility for working with the Neighbor Discovery Protocol.

## Examples

Listen for incoming NDP messages on interface eth0 to one of the interface's
global unicast addresses.

```
$ sudo ndp -i eth0 -a global listen
$ sudo ndp -i eth0 -a 2001:db8::1 listen
````

Send router solicitations on interface eth0 from the interface's link-local
address until a router advertisement is received.

```
$ sudo ndp -i eth0 -a linklocal rs
```

0 comments on commit c8aac9c

Please sign in to comment.