1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Add a man page for mkfilters(1) and put the corrected perl script in the

ipfilter usr/share directory

PR:     docs/26879
This commit is contained in:
Darren Reed 2006-02-27 11:22:20 +00:00
parent e8a71dcc2f
commit 94341e74d5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=156061
3 changed files with 10 additions and 1 deletions

View File

@ -3,10 +3,13 @@
#
# See the IPFILTER.LICENCE file for details on licencing.
#
# $FreeBSD$
#
all:
install:
$(INSTALL) -m 0644 -c -o root -g bin mkfilters.1 $(MANDIR)/man1
$(INSTALL) -m 0644 -c -o root -g bin ipftest.1 $(MANDIR)/man1
$(INSTALL) -m 0644 -c -o root -g bin ipnat.8 $(MANDIR)/man8
$(INSTALL) -m 0644 -c -o root -g bin ipf.4 $(MANDIR)/man4

View File

@ -5,6 +5,8 @@
mkfilters \- generate a minimal firewall ruleset for ipfilter
.SH SYNOPSIS
.B mkfilters
.SH FILES
/usr/share/examples/ipf/mkfilters
.SH DESCRIPTION
.PP
\fBmkfilters\fP is a perl script that generates a minimal filter rule set for

View File

@ -5,7 +5,8 @@ NO_OBJ=
FILES= README
# dist sample files
.PATH: ${.CURDIR}/../../../contrib/ipfilter/rules
.PATH: ${.CURDIR}/../../../contrib/ipfilter/rules \
${.CURDIR}/../../../contrib/ipfilter
FILES+= BASIC.NAT BASIC_1.FW BASIC_2.FW \
example.1 example.2 example.3 example.4 example.5 \
example.6 example.7 example.8 example.9 example.10 \
@ -23,6 +24,9 @@ FILES+= ipf-howto.txt
# http://coombs.anu.edu.au/~avalon/ sample files
FILES+= examples.txt rules.txt
BINMODE=0755
PROG= mkfilters
FILESDIR= ${SHAREDIR}/examples/ipfilter
.include <bsd.prog.mk>