Add arprelease 1.0, a Libnet tool to flush arp cache entries from
devices (eg. routers)
This commit is contained in:
parent
4ece3e0cb0
commit
613aec541b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=45740
6 changed files with 36 additions and 0 deletions
|
@ -16,6 +16,7 @@
|
|||
SUBDIR += argus
|
||||
SUBDIR += arla
|
||||
SUBDIR += arping
|
||||
SUBDIR += arprelease
|
||||
SUBDIR += arpwatch
|
||||
SUBDIR += arts++
|
||||
SUBDIR += ascend-radius
|
||||
|
|
29
net/arprelease/Makefile
Normal file
29
net/arprelease/Makefile
Normal file
|
@ -0,0 +1,29 @@
|
|||
# New ports collection makefile for: arprelease
|
||||
# Date created: 02 Aug 2001
|
||||
# Whom: nbm
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= arprelease
|
||||
PORTVERSION= 1.0
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= arprelease
|
||||
|
||||
MAINTAINER= nbm@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= libnet-config:${PORTSDIR}/net/libnet
|
||||
|
||||
LIBNET_CONFIG= libnet-config
|
||||
|
||||
do-build:
|
||||
(cd ${WRKSRC} && \
|
||||
${CC} ${CFLAGS} -I${LOCALBASE}/include -L${LOCALBASE}/lib \
|
||||
-o arprelease arprelease.c \
|
||||
`${LIBNET_CONFIG} --defines` `${LIBNET_CONFIG} --libs`)
|
||||
|
||||
do-install:
|
||||
@${INSTALL_PROGRAM} ${WRKSRC}/arprelease ${PREFIX}/bin
|
||||
|
||||
.include <bsd.port.mk>
|
1
net/arprelease/distinfo
Normal file
1
net/arprelease/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (arprelease-1.0.tar.gz) = e9156537a8deb2a481333f7f7c31707f
|
1
net/arprelease/pkg-comment
Normal file
1
net/arprelease/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Libnet tool to flush arp cache entries from devices (eg. routers)
|
3
net/arprelease/pkg-descr
Normal file
3
net/arprelease/pkg-descr
Normal file
|
@ -0,0 +1,3 @@
|
|||
This program sends out a custom ARP REQUEST packet with the hardware and
|
||||
protocol address information of the sending host to flush the arp cache
|
||||
for a given IP on Cisco routers.
|
1
net/arprelease/pkg-plist
Normal file
1
net/arprelease/pkg-plist
Normal file
|
@ -0,0 +1 @@
|
|||
bin/arprelease
|
Loading…
Reference in a new issue