Wireshark OS X can't detect interface

原因是权限问题.

sudeMacBook-Pro-3:dev sujian$ ls -la | grep bp

crw-------   1 root    wheel      23,   0  4  8 13:25 bpf0

crw-------   1 root    wheel      23,   1  4  8 13:25 bpf1

crw-------   1 root    wheel      23,   2  4  8 13:25 bpf2

crw-------   1 root    wheel      23,   3  4  8 13:25 bpf3

sudeMacBook-Pro-3:dev sujian$ sudo chown sujian:wheel bp*

sudeMacBook-Pro-3:dev sujian$ ls -la | grep bp

crw-------   1 sujian  wheel      23,   0  4  8 13:25 bpf0

crw-------   1 sujian  wheel      23,   1  4  8 13:25 bpf1

crw-------   1 sujian  wheel      23,   2  4  8 13:25 bpf2

crw-------   1 sujian  wheel      23,   3  4  8 13:25 bpf3



再次启动,就可以看到所有的Interface了.

你可能感兴趣的:(Mac,os)