Release 0.2.1
This commit is contained in:
parent
65ae331c00
commit
5208248f25
8
Makefile
8
Makefile
@ -1,3 +1,9 @@
|
|||||||
|
ifdef DEBUG
|
||||||
|
MFLAGS = DEBUG=${DEBUG}
|
||||||
|
else
|
||||||
|
MFLAGS =
|
||||||
|
endif
|
||||||
|
|
||||||
MANDIR = ${DESTDIR}/usr/share/man
|
MANDIR = ${DESTDIR}/usr/share/man
|
||||||
SBINDIR = ${DESTDIR}/usr/sbin
|
SBINDIR = ${DESTDIR}/usr/sbin
|
||||||
|
|
||||||
@ -11,7 +17,7 @@ install: all
|
|||||||
cp ndppd.conf.5.gz ${MANDIR}/man5
|
cp ndppd.conf.5.gz ${MANDIR}/man5
|
||||||
|
|
||||||
ndppd:
|
ndppd:
|
||||||
cd src && make all && cp ndppd ..
|
cd src && make ${MFLAGS} all && cp ndppd ..
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f ndppd ndppd.conf.5.gz ndppd.1.gz
|
rm -f ndppd ndppd.conf.5.gz ndppd.1.gz
|
||||||
|
9
README
9
README
@ -1,6 +1,6 @@
|
|||||||
ndppd - NDP Proxy Daemon
|
ndppd - NDP Proxy Daemon
|
||||||
|
|
||||||
Version 0.2-beta
|
Version 0.2.1
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
1. Legal
|
1. Legal
|
||||||
@ -26,8 +26,8 @@
|
|||||||
2. About 'ndppd'
|
2. About 'ndppd'
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
ndppd, or 'NDP Proxy Daemon', is a daemon (!!) that proxies NDP
|
'ndppd', or NDP Proxy Daemon, is a daemon that proxies NDP (Neighbor
|
||||||
(Neighbor Discovery Protocol) messages between interfaces.
|
Discovery Protocol) messages between interfaces.
|
||||||
|
|
||||||
The Neighbor Discovery Protocol (NDP) is a protocol in the Internet
|
The Neighbor Discovery Protocol (NDP) is a protocol in the Internet
|
||||||
Protocol Suite used with Internet Protocol Version 6 (IPv6). It
|
Protocol Suite used with Internet Protocol Version 6 (IPv6). It
|
||||||
@ -39,6 +39,9 @@
|
|||||||
discovery, and maintaining reachability information about the paths
|
discovery, and maintaining reachability information about the paths
|
||||||
to other active neighbor nodes (RFC 4861). (Wikipedia)
|
to other active neighbor nodes (RFC 4861). (Wikipedia)
|
||||||
|
|
||||||
|
'ndppd' currently only supports Neighbor Solicitation Messages and
|
||||||
|
Neighbor Advertisement Messages.
|
||||||
|
|
||||||
Before an IPv6 packet can be sent to a host, that host's link-layer
|
Before an IPv6 packet can be sent to a host, that host's link-layer
|
||||||
address must first be discovered. This is done by sending a Neighbor
|
address must first be discovered. This is done by sending a Neighbor
|
||||||
Solicitation message containing the requested target IPv6 address
|
Solicitation message containing the requested target IPv6 address
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
#define __NDPPD_NS_BEGIN namespace ndppd {
|
#define __NDPPD_NS_BEGIN namespace ndppd {
|
||||||
#define __NDPPD_NS_END }
|
#define __NDPPD_NS_END }
|
||||||
|
|
||||||
#define NDPPD_VERSION "0.2.1~rc1"
|
#define NDPPD_VERSION "0.2.1"
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user