diff options
author | Kjell Wooding <kjell@cvs.openbsd.org> | 1999-12-16 07:38:46 +0000 |
---|---|---|
committer | Kjell Wooding <kjell@cvs.openbsd.org> | 1999-12-16 07:38:46 +0000 |
commit | 4f440c694f2d8c97f3ea6413d87298acf9dede02 (patch) | |
tree | 2de13d91a5cc205cd9adb0c66b417e8d05904689 /usr.sbin/ipftest | |
parent | e5dff6f25f2c2c0db9a353f6ae9c9b19adc5b953 (diff) |
Add the ability to use interface names in place of addresses
in firewall rules. i.e.
block return-rst in quick on fxp0 proto tcp from any to fxp0 port = 9999
This will make things like DHCP much easier to deal with in the future.
Diffstat (limited to 'usr.sbin/ipftest')
-rw-r--r-- | usr.sbin/ipftest/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ipftest/Makefile b/usr.sbin/ipftest/Makefile index c70bce0dd64..786be621aca 100644 --- a/usr.sbin/ipftest/Makefile +++ b/usr.sbin/ipftest/Makefile @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile,v 1.7 1999/12/15 05:20:26 kjell Exp $ +# $OpenBSD: Makefile,v 1.8 1999/12/16 07:38:45 kjell Exp $ PROG= ipftest MAN= ipftest.1 SRCS= ipt.c fil.c ipft_hx.c ipft_sn.c ipft_ef.c ipft_td.c ipft_pc.c \ ipft_tx.c misc.c parse.c opt.c ip_frag.c ip_nat.c ip_state.c \ - ip_auth.c ip_fil.c ip_proxy.c facpri.c natparse.c + ip_auth.c ip_fil.c ip_proxy.c facpri.c natparse.c ifaddr.c .PATH: ${.CURDIR}/../../sbin/ipf ${.CURDIR}/../../sbin/ipfstat \ ${.CURDIR}/../../sys/netinet ${.CURDIR}/../../sbin/ipnat |