3 Installing Wireshark on FreeBSD/OpenBSD/NetBSD/DragonFly BSD
4 ========================================================================
6 1. Extra packages required
8 3. Berkeley Packet Filter (BPF) requirement
9 4. Running Wireshark as a non-root user
12 1. Extra packages required
13 ---------------------------
14 Wireshark requires a number of additional programs to function.
15 Install the latest versions of the following programs before compiling:
30 The easiest way to install these is by using your operating system's
31 ports or packages system.
34 2. Compiling Wireshark
35 -----------------------
36 To compile Wireshark with the default options, run configure, make and
37 make install (you may have to run "autogen.sh" first):
42 The configure and make steps can be run as a non-root user and you can
43 run Wireshark from the compilation directory itself. You must run make
44 install as root in order to copy the program to the proper directories.
47 3. Berkeley Packet Filter (BPF) requirement
48 --------------------------------------------
49 In order to capture packets (with Wireshark/TShark, tcpdump, or any
50 other packet capture program) on a BSD system, your kernel must have the
51 Berkeley Packet Filter mechanism enabled. The default kernel
52 configurations in recent versions of BSD systems have this enabled
53 already. To verify the bpf device is present, look in the /dev
58 You should see one or more bpf devices listed similar to this:
60 crw------- 1 root wheel 0, 90 Aug 10 21:05 /dev/bpf0
61 crw------- 1 root wheel 0, 91 Aug 10 21:05 /dev/bpf1
63 Packet-capturing programs will pick the first bpf device that's not in
64 use. Recent versions of most BSDs will create bpf devices as needed, so
65 you don't have to configure the number of devices that will be
68 4. Running wireshark as a non-root user
69 -------------------------------------------
70 Since the bpf devices are read-only by the owner (root), you normally
71 have to run packet capturing programs such as Wireshark as root. It is
72 safer to run programs as a non-root user if possible. To run Wireshark
73 as a non-root user, you must change the permissions on the bpf device(s).
74 If you are the only user that needs to use Wireshark, the easiest way
75 is to change the owner of each bpf device to your username. You can also
76 add the read/write ability to the group (typically wheel) and add users
77 that need to use Wireshark to the wheel group. Check your operating
78 system's documentation on how to make permanent these changes as they
79 are often reset upon reboot; if /dev is implemented with devfs, it might
80 be possible to configure devfs to create all bpf devices owned by a
81 particular user and/or group and with particular permissions. In
82 FreeBSD 6.0 and later this can be done by creating an /etc/devfs.rules
83 file with content such as
86 add path 'bpf*' {mode and permissions}
88 where "mode and permissions" can include clauses such as
90 mode {octal permissions}
92 to set the permissions on the device (e.g., "mode 0660" to set the
93 permissions to rw-rw-r--),
97 to set the user who owns the device, or
101 to set the group that owns the device and adding a line such as
103 devfs_system_ruleset=localrules
105 to /etc/rc.conf. For example, an /etc/devfs.rules file with
108 add path 'bpf*' mode 0660 group wheel
110 will grant read and write permissions on all BPF devices to all users in