[Midnightbsd-cvs] mports: mports/security: add ipfw and pf variants.

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Tue Apr 29 11:46:49 EDT 2008


Log Message:
-----------
add ipfw and pf variants.  This allows you to block people brute forcing your ssh with the firewall of your choice!

Modified Files:
--------------
    mports/security:
        Makefile (r1.75 -> r1.76)

Added Files:
-----------
    mports/security/sshguard-ipfw:
        Makefile (r1.1)
    mports/security/sshguard-pf:
        Makefile (r1.1)

-------------- next part --------------
--- /dev/null
+++ security/sshguard-ipfw/Makefile
@@ -0,0 +1,16 @@
+# New ports collection makefile for:	sshguard-ipfw
+# Date created:				28 April 2008
+# Whom:					Lucas Holt <luke at midnightbsd.org>
+#
+# $MidnightBSD: mports/security/sshguard-ipfw/Makefile,v 1.1 2008/04/29 15:46:46 laffer1 Exp $
+#
+
+PKGNAMESUFFIX=	-ipfw
+CONFLICTS=	sshguard-1.0* sshguard-pf-1.0*
+
+COMMENT=        Protect hosts from brute force attacks against ssh using ipfw
+
+SSHGUARDFW=	ipfw
+MASTERDIR=	${.CURDIR}/../sshguard
+
+.include "${MASTERDIR}/Makefile"
Index: Makefile
===================================================================
RCS file: /home/cvs/mports/security/Makefile,v
retrieving revision 1.75
retrieving revision 1.76
diff -L security/Makefile -L security/Makefile -u -r1.75 -r1.76
--- security/Makefile
+++ security/Makefile
@@ -71,6 +71,8 @@
     SUBDIR += saint
     SUBDIR += secpwgen
     SUBDIR += sshguard
+    SUBDIR += sshguard-ipfw
+    SUBDIR += sshguard-pf
     SUBDIR += smap
     SUBDIR += sudo
     SUBDIR += tor
--- /dev/null
+++ security/sshguard-pf/Makefile
@@ -0,0 +1,15 @@
+# New ports collection makefile for:	sshguard-pf
+# Date created:				28 April 2008
+# Whom:					Lucas Holt <luke at midnightbsd.org>
+#
+# $MidnightBSD: mports/security/sshguard-pf/Makefile,v 1.1 2008/04/29 15:46:46 laffer1 Exp $
+#
+
+PKGNAMESUFFIX=	-pf
+CONFLICTS=	sshguard-1.0* sshguard-ipfw-1.0*
+COMMENT=	Protect hosts from brute force attacks against ssh using pf
+
+SSHGUARDFW=	pf
+MASTERDIR=	${.CURDIR}/../sshguard
+
+.include "${MASTERDIR}/Makefile"


More information about the Midnightbsd-cvs mailing list