WIN7 Wireshark: There are no interfaces on which a capture can be done

来源:互联网 发布:电脑写字板软件下载 编辑:程序博客网 时间:2024/05/22 06:23
有的时候我们在Windows7的环境下使用Wireshark的时候,比如点击【Interface List】的时候,出现错误。

错误内容如下:
There are no interfaces on which a capture can be done.

这个错误是因为系统没有启动NPF服务造成的。

解决的办法很简单:
01、在【开始】–>【运行】
02、输入:cmd
03、点击右键,选择【以管理员身份运行】
04、选择【是】,输入【net start npf】
05、系统提示【NetGroup Packet Filter Driver 服务已经启动成功。】
06、至此,Wireshark再点击【Interfaces list】就可以正常选择需要捕捉的接口了。
07、如果需要关闭此服务,是要在命令行输入【net stop npf】即可。
1 0