diff options
author | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2007-06-12 20:10:34 +0000 |
---|---|---|
committer | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2007-06-12 20:10:34 +0000 |
commit | 63a94afab914592fb2bd17415cd928dfaed4952d (patch) | |
tree | debb0ad9426b8684e85ea4726dccd007a5024cdc | |
parent | - upgrade to version 1.0 (diff) |
Add slave port sshguard-pf, protect networked hosts from brute force attacks
against ssh usinh pf
PR: ports/112759
Submitted by: Mij <mij at bitchx.it>
Notes
Notes:
svn path=/head/; revision=193357
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/sshguard-pf/Makefile | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index d1b4dcf8e5cf..e8ff39573eea 100644 --- a/security/Makefile +++ b/security/Makefile @@ -692,6 +692,7 @@ SUBDIR += ssh_askpass_gtk2 SUBDIR += sshblock SUBDIR += sshguard + SUBDIR += sshguard-pf SUBDIR += sshit SUBDIR += sslproxy SUBDIR += sslsniffer diff --git a/security/sshguard-pf/Makefile b/security/sshguard-pf/Makefile new file mode 100644 index 000000000000..e7336fa68e2a --- /dev/null +++ b/security/sshguard-pf/Makefile @@ -0,0 +1,15 @@ +# New ports collection makefile for: sshguard-pf +# Date created: 17 May 2007 +# Whom: Mij <mij@bitchx.it> +# +# $FreeBSD$ +# + +PKGNAMESUFFIX= -pf +CONFLICTS= sshguard-1.0* sshguard-ipfw-1.0* +COMMENT= Protect networked hosts from brute force attacks against ssh using pf + +SSHGUARDFW= pf +MASTERDIR= ${PORTSDIR}/security/sshguard + +.include "${MASTERDIR}/Makefile" |