NetBSD/usr.sbin/npf/npftest
2013-11-23 19:40:11 +00:00
..
libnpftest npftest: adjust for the npf_bpf_filter() change. 2013-11-23 19:40:11 +00:00
Makefile Add bsd.own.mk for MKSLJIT, reorder some vars. 2013-11-16 17:12:35 +00:00
npfstream.c NPF: add support for specifying the interfaces before they are attached. 2013-11-08 00:38:26 +00:00
npftest.c NPF: add support for specifying the interfaces before they are attached. 2013-11-08 00:38:26 +00:00
npftest.conf Update npftest.conf for the recent syntax adjustments. 2013-09-23 15:30:32 +00:00
npftest.h NPF: add support for specifying the interfaces before they are attached. 2013-11-08 00:38:26 +00:00
README NPF: 2013-02-09 03:35:31 +00:00

$NetBSD: README,v 1.4 2013/02/09 03:35:33 rmind Exp $

npftest - a tool for regression testing and debugging NPF.
It uses RUMP framework to run NPF kernel module in the userspace.

---

Test:

npfctl debug npftest.conf /tmp/npf.plist
npftest -c /tmp/npf.plist -t

Stream:

tcpdump -w stream.pcap -i $INTERFACE "host $HOST and tcp"
npfctl debug
npftest -c /tmp/npf.plist -s stream.pcap -o stream_npf_data.txt

Preferably, use MALLOC_OPTIONS="AJ" and/or other facilities.

---

Update RUMP libraries once the kernel side has been changed.  Hint:

cd src/sys/net/npf
sudo make includes

cd src/sys/rump/net/lib/libnpf
make distclean
MKDEBUG=yes MKDEBUGLIB=yes DBG="-g -O2" make -j8
sudo MKDEBUG=yes MKDEBUGLIB=yes DBG="-g -O2" make install