NetBSD/usr.sbin/npf/npftest
2017-01-29 04:12:52 +00:00
..
libnpftest fix function argument. 2017-01-29 04:12:52 +00:00
Makefile Yet another -lrumpdev 2016-08-08 16:31:53 +00:00
npfstream.c Sync NPF with the version on github: backport standalone NPF changes, 2016-12-26 23:05:05 +00:00
npftest.c Sync NPF with the version on github: backport standalone NPF changes, 2016-12-26 23:05:05 +00:00
npftest.conf NPF: add support for IPv6-to-IPv6 Network Prefix Translation (NPTv6), 2014-02-13 03:34:40 +00:00
npftest.h Sync NPF with the version on github: backport standalone NPF changes, 2016-12-26 23:05:05 +00:00
README npftest: add an example in the README, fix the total in npf_test_conc(). 2014-06-25 00:21:42 +00:00

$NetBSD: README,v 1.6 2014/06/25 00:21:42 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.conf /tmp/npf.plist
npftest -c /tmp/npf.plist -s stream.pcap > stream_npf_data.txt

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

Benchmark:

npftest -b rule -c /tmp/npf.plist -p $ncpu

---

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