diff options
author | lwhsu <lwhsu@FreeBSD.org> | 2008-07-26 21:54:03 +0800 |
---|---|---|
committer | lwhsu <lwhsu@FreeBSD.org> | 2008-07-26 21:54:03 +0800 |
commit | c5046a912ad7597f8c8cbd407868fafca20c31c2 (patch) | |
tree | 5b61eafdec9a96167fe1fea1d0fa95ba1da33b49 | |
parent | 7ea38b43cba5544a7491fe6214bddcc3e6dbef09 (diff) | |
download | freebsd-ports-gnome-c5046a912ad7597f8c8cbd407868fafca20c31c2.tar.gz freebsd-ports-gnome-c5046a912ad7597f8c8cbd407868fafca20c31c2.tar.zst freebsd-ports-gnome-c5046a912ad7597f8c8cbd407868fafca20c31c2.zip |
Add sshguard-ipfilter, protect hosts from brute force attacks against
ssh and other services using ipfilter.
PR: ports/125975
Submitted by: Mij <mij at bitchx.it>
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/sshguard-ipfilter/Makefile | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 9896974d88ef..ddbc5e8e227a 100644 --- a/security/Makefile +++ b/security/Makefile @@ -739,6 +739,7 @@ SUBDIR += ssh_askpass_gtk2 SUBDIR += sshblock SUBDIR += sshguard + SUBDIR += sshguard-ipfilter SUBDIR += sshguard-ipfw SUBDIR += sshguard-pf SUBDIR += sshit diff --git a/security/sshguard-ipfilter/Makefile b/security/sshguard-ipfilter/Makefile new file mode 100644 index 000000000000..72d72a4764dc --- /dev/null +++ b/security/sshguard-ipfilter/Makefile @@ -0,0 +1,16 @@ +# New ports collection makefile for: sshguard-ipfilter +# Date created: 26 Jul 2008 +# Whom: Mij <mij@bitchx.it> +# +# $FreeBSD$ +# + +PKGNAMESUFFIX= -ipfilter +CONFLICTS= sshguard-1.* sshguard-ipfw-1.* sshguard-pf-1.* + +COMMENT= Protect hosts from brute force attacks against ssh and other services using ipfilter + +SSHGUARDFW= ipfilter +MASTERDIR= ${.CURDIR}/../sshguard + +.include "${MASTERDIR}/Makefile" |