mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
42525c026c
Added #!/bin/sh to two shellscripts in the distribution. PR: 14520 Submitted by: maintainer adding the following functionality to trafd: -D run in foregroud -I don't distinguish ports/protocols (count only by IP) -S count only IP from this range(s) (all other IP accounted AS 255.255.255.255) -A aggregate IP-addresses in given network(s) PR: 14521 Submitted by: maintainer
22 lines
782 B
Plaintext
22 lines
782 B
Plaintext
bpft is a superset of trafshow, and extends it by adding a daemon
|
|
which collects data about network connections (src, dst, protocol
|
|
and length). The resulting data can be dumped to a file for later
|
|
processing.
|
|
|
|
Read /usr/local/share/doc/bpft/README after installation for more
|
|
information.
|
|
|
|
To use bpft, your kernel must be rebuilt with the following line
|
|
added to your kernel config file (/sys/i386/conf/<YourMachine>):
|
|
|
|
pseudo-device bpfilter 4 # Berkeley packet filter
|
|
|
|
The number after bpfilter is the number of interfaces that can be
|
|
examined simultaneously. See section 6.1 of the Handbook for details.
|
|
|
|
On FreeBSD 4.0 or later versions, use the following line instead:
|
|
|
|
pseudo-device bpf 4 # Berkeley packet filter
|
|
|
|
- oddbjorn <oddbjorn@tricknology.org>
|