WireShark: “No interfaces found” on Microsoft Windows

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/TStana/article/details/75275995

WireShark: “No interfaces found” on Microsoft Windows

origin url:
WireShark: “No interfaces found” on Microsoft Windows
http://dynamic-datacenter.be/?p=1279
Windows 7下WireShark 解决NPF驱动没有运行问题
http://jingyan.baidu.com/article/fec4bce22d4a6bf2618d8bcd.html


System:
win 10 / x64 / thinkpad T460



When I start Wireshark, sometimes I’m unable to select the network interface to be used to analyze network traffic. I was able to resolve this by restarting a service called “NetGroup Packet Filter Driver“. Please note, this service can not be found in “Computer Management > Services“.

The procedure below can be followed to resolve this:
Open a Command Prompt with administrative privileges.



Execute the command: “sc query npf” and verify if the service is running.
Execute the command: “sc stop npf” followed by the command: “sc start npf“.

Open WireShark and press “F5“
Hope this helps!
C:\Windows\system32>sc query npf
 SERVICE_NAME: npf
 TYPE : 1 KERNEL_DRIVER
 STATE : 4 RUNNING
 (STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN)
 WIN32_EXIT_CODE : 0 (0x0)
 SERVICE_EXIT_CODE : 0 (0x0)
 CHECKPOINT : 0x0
 WAIT_HINT : 0x0
C:\Windows\system32>sc stop npf
 SERVICE_NAME: npf
 TYPE : 1 KERNEL_DRIVER
 STATE : 1 STOPPED
 WIN32_EXIT_CODE : 0 (0x0)
 SERVICE_EXIT_CODE : 0 (0x0)
 CHECKPOINT : 0x0
 WAIT_HINT : 0x0
C:\Windows\system32>sc start npf
 SERVICE_NAME: npf
 TYPE : 1 KERNEL_DRIVER
 STATE : 4 RUNNING
 (STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN)
 WIN32_EXIT_CODE : 0 (0x0)
 SERVICE_EXIT_CODE : 0 (0x0)
 CHECKPOINT : 0x0
 WAIT_HINT : 0x0
 PID : 0
 FLAGS :
This entry was posted in Network Analysis, Security and tagged WireShark by Ruben Renders. Bookmark the permalink. 

猜你喜欢

转载自blog.csdn.net/TStana/article/details/75275995