mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
![Richard Gallamore](/assets/img/avatar_default.png)
proxying with many options to handle several use-cases. It replies to a neighbor solicitation with a specific neighbor advertisement, in order to let the PE uplink router send further packets to a CPE downlink router, that may or may not be the same node that the one which runs ndproxy. The main difference with the ndp(8) command-line tool is that, with ndproxy(4), the host running ndp can be used only to redirect packets to another IPv6 internal router, for instance a dedicated one with hardware support of IPv6 routing processes. WWW: http://www.fenyo.net/newweb/ndproxy.html PR: 219622 Submitted by: Alexandre Fenyo (maintainer) Reviewed by: matthew (mentor), mat Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11892
31 lines
625 B
Makefile
31 lines
625 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= ndproxy
|
|
PORTVERSION= 2.0
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= net ipv6
|
|
|
|
MAINTAINER= fbsd.bugzilla@fenyo.net
|
|
COMMENT= Implementation of IPv6 Neighbor Discovery proxy
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
USES= kmod
|
|
USE_RC_SUBR= ndproxy
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= AlexandreFenyo
|
|
|
|
PLIST_FILES= ${KMODDIR}/${PORTNAME}.ko man/man4/${PORTNAME}.4.gz
|
|
|
|
pre-build:
|
|
(cd ${BUILD_WRKSRC}; ${MAKE} depend)
|
|
|
|
do-install:
|
|
${INSTALL_KLD} ${WRKSRC}/${PORTNAME}.ko ${STAGEDIR}${KMODDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.4 ${STAGEDIR}${PREFIX}/man/man4/
|
|
|
|
.include <bsd.port.mk>
|