Line 0
Link Here
|
|
|
1 |
=============================================================================== |
2 |
|
3 |
In order for wireshark be able to capture packets when used by unprivileged |
4 |
user, /dev/bpf should be in network group and have read-write permissions. |
5 |
For example: |
6 |
|
7 |
# chgrp network /dev/bpf* |
8 |
# chmod g+r /dev/bpf* |
9 |
# chmod g+w /dev/bpf* |
10 |
|
11 |
In order for this to persist across reboots, add the following to |
12 |
/etc/devfs.conf: |
13 |
|
14 |
own bpf* root:network |
15 |
perm bpf* 0660 |
16 |
|
17 |
=============================================================================== |