MCPcopy Index your code
hub / github.com/mdlayher/ndp

github.com/mdlayher/ndp @v1.1.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v1.1.0 ↗ · + Follow
172 symbols 464 edges 20 files 79 documented · 46% 9 cross-repo links
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

ndp Test Status Go Reference Go Report Card

Package ndp implements the Neighbor Discovery Protocol, as described in RFC 4861. MIT Licensed.

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

To learn more about NDP, and how to use this package, check out my blog: Network Protocol Breakdown: NDP and Go.

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.

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

Send neighbor solicitations on interface eth0 to a neighbor's link-local address until a neighbor advertisement is received.

$ sudo ndp -i eth0 -a linklocal -t fe80::1 ns

An example of the tool sending a router solicitation and receiving a router advertisement on the WAN interface of a Ubiquiti router:

$ sudo ndp -i eth1 -a linklocal rs
ndp> interface: eth1, link-layer address: 04:18:d6:a1:ce:b8, IPv6 address: fe80::618:d6ff:fea1:ceb8
ndp rs> router solicitation:
    - source link-layer address: 04:18:d6:a1:ce:b8

ndp rs> router advertisement from: fe80::201:5cff:fe69:f246:
    - hop limit:        0
    - flags:            [MO]
    - preference:       0
    - router lifetime:  2h30m0s
    - reachable time:   1h0m0s
    - retransmit timer: 0s
    - options:
        - prefix information: 2600:6c4a:7002:100::/64, flags: [], valid: 720h0m0s, preferred: 168h0m0s

Extension points exported contracts — how you extend this code

Core symbols most depended-on inside this repo

Shape

Function 80
Method 66
Struct 20
TypeAlias 4
Interface 2

Languages

Go100%

Modules by API surface

option.go59 symbols
message.go27 symbols
option_test.go18 symbols
conn.go17 symbols
message_test.go10 symbols
internal/ndpcmd/print.go8 symbols
conn_test.go6 symbols
internal/ndpcmd/transfer.go4 symbols
internal/ndpcmd/run.go4 symbols
conn_setup_test.go3 symbols
cmd/ndp/main.go3 symbols
addr.go3 symbols

For agents

$ claude mcp add ndp \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page