diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2009-08-19 23:46:08 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2009-08-19 23:46:08 +0800 |
commit | 26831e56901e917b7deef8d49e378311deabde27 (patch) | |
tree | 2d1c3eb2dad79c3992278489d5423214e55c872d /net-mgmt/dhcdrop | |
parent | 278b5905fd3932e38f9b010711808bd35b02105f (diff) | |
download | freebsd-ports-gnome-26831e56901e917b7deef8d49e378311deabde27.tar.gz freebsd-ports-gnome-26831e56901e917b7deef8d49e378311deabde27.tar.zst freebsd-ports-gnome-26831e56901e917b7deef8d49e378311deabde27.zip |
DHCDROP - utility for tracing and neutralizing(blocking) fake DHCP
servers in Ethernet. Supports various modes. Theres possibility
to set outgoing MAC addresses and optional settings in generated
DHCP requests. Supports legal DHCP servers list. One can run it
in interactive mode under users control or fully automatic mode for
start up from script.
WWW: http://www.netpatch.ru/en/dhcdrop.html
PR: 137955
Submitted by: Babinski Nick <nick@malbi.dp.ua>
Diffstat (limited to 'net-mgmt/dhcdrop')
-rw-r--r-- | net-mgmt/dhcdrop/Makefile | 32 | ||||
-rw-r--r-- | net-mgmt/dhcdrop/distinfo | 3 | ||||
-rw-r--r-- | net-mgmt/dhcdrop/pkg-descr | 8 |
3 files changed, 43 insertions, 0 deletions
diff --git a/net-mgmt/dhcdrop/Makefile b/net-mgmt/dhcdrop/Makefile new file mode 100644 index 000000000000..799b8a364b8e --- /dev/null +++ b/net-mgmt/dhcdrop/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: dhcdrop +# Date created: Aug 9 2009 +# Whom: Nick F +# +# $FreeBSD$ +# + +PORTNAME= dhcdrop +PORTVERSION= 0.5 +CATEGORIES= net-mgmt sysutils +MASTER_SITES= http://www.netpatch.ru/projects/dhcdrop/ + +MAINTAINER= ffault@gmail.com +COMMENT= Tool for searching and suppressing false DHCP servers + +USE_BZIP2= yes +GNU_CONFIGURE= yes + +MAN8= ${PORTNAME}.8 +MANLANG= "" ru + +PLIST_FILES= sbin/dhcdrop + +OPTIONS= STATIC "Build a static version of dhcdrop" off + +.include <bsd.port.options.mk> + +.if defined(WITH_STATIC) +CONFIGURE_ARGS+=--enable-static-build +.endif + +.include <bsd.port.mk> diff --git a/net-mgmt/dhcdrop/distinfo b/net-mgmt/dhcdrop/distinfo new file mode 100644 index 000000000000..235802aadc3d --- /dev/null +++ b/net-mgmt/dhcdrop/distinfo @@ -0,0 +1,3 @@ +MD5 (dhcdrop-0.5.tar.bz2) = 11a20f399fad60ae0ae68b3df872d8c2 +SHA256 (dhcdrop-0.5.tar.bz2) = 719f83b40a41075b9ef64269ecf03dbfc5d1ba014c0248486e668b087047ae97 +SIZE (dhcdrop-0.5.tar.bz2) = 279218 diff --git a/net-mgmt/dhcdrop/pkg-descr b/net-mgmt/dhcdrop/pkg-descr new file mode 100644 index 000000000000..1179fcf9063e --- /dev/null +++ b/net-mgmt/dhcdrop/pkg-descr @@ -0,0 +1,8 @@ +DHCDROP - utility for tracing and neutralizing(blocking) fake DHCP +servers in Ethernet. Supports various modes. Theres possibility +to set outgoing MAC addresses and optional settings in generated +DHCP requests. Supports legal DHCP servers list. One can run it +in interactive mode under users control or fully automatic mode for +start up from script. + +WWW: http://www.netpatch.ru/en/dhcdrop.html |