Things look quiet here. But I've been doing a lot of blogging at
dan.langille.org because I prefer WordPress now.
Not all my posts there are FreeBSD related.
I am in the midst of migrating The FreeBSD Diary over to WordPress
(and you can read about that here).
Once the migration is completed, I'll move the FreeBSD posts into the
new FreeBSD Diary website.
IP Filter 3.3.4 was released today. This article merely documents that
fact and describes how I installed it under FreeBSD 3.3-release. These instructions
should work for all subsequent versions of IP Filter. If they do not, please add your comments.
NOTE:
version 3.3.4 is no longer available. At the time of writing, I was on 3.4.1.
Instructions for disabling ipfw/natd are also available here.
Getting IP Filter
NOTE: IP Filter version 3.3.3 has been added to 3.3-stable I believe.
It's in the ports under /src/contrib I think. I've tried the port and it
fails. Feel free to give it a go. You may have to update
your ports in order to get the correct version. If it fails for you, try the
steps in this article.
Remember, I have the entire ports
tree installed. If you use the port, you may be able to skip to Configuration. Please note that I have not installed IP
Filter from the ports, so I'm not sure the following notes will work or not.
cd /usr/ports/net
fetch ftp://coombs.anu.edu.au/pub/net/ip-filter/ip_fil3.3.4.tar.gz
tar xvfz ip_fil3.3.4.tar.gz
NOTE: version 3.3.4 is no longer available. At the time of writing, I was on
3.3.6.
Installing
To use ipf, you first compile ipf, and then create a new kernel
which includes the ipf options. In addition, I always use ipnat in
conjunction with ipf. In order for ipnat to work, you must include
the kernel options for ipnat. Be sure to do this
before you recompile the kernel to include ipf.
To compile ipf 3.3.4,
follow the instructions included with the tarball. Here's what they look like:
# cd /usr/ports/net/ip_fil3.3.4/
# more FreeBSD-3/INST.FreeBSD-3
To build a kernel with the IP filter, follow these steps:
1. do "make freebsd3"
2. do "make install-bsd"
(probably has to be done as root)
3. run "FreeBSD-3/kinstall" as root
4. build a new kernel
5. install the new kernel
6. If not using DEVFS, create devices for IP Filter as follows:
mknod /dev/ipl c 79 0
mknod /dev/ipnat c 79 1
mknod /dev/ipstate c 79 2
mknod /dev/ipauth c 79 3
7. reboot
Darren Reed
darrenr@pobox.com
I did not do step 6.
Remember to add kernel support for ipnat before
recompiling.