当前位置:网站首页>Wireshark网卡无法找到或没有显示的问题
Wireshark网卡无法找到或没有显示的问题
2022-06-25 15:57:00 【InfoQ】
问题背景
故障现象
- 运行环境:Windows11
- 软件版本:Wireshark Version 3.6.5
- Wireshark可以正常显示网卡列表,但缺失深信服的虚拟网卡
解决方案
调整网卡设置
- 参考《解决wireshark抓热点的包,没有虚拟网卡的问题》,查看网卡配置,发现VPN虚拟网卡的连接配置没有勾选NPCAP选项
- 重启Wireshark或者Wireshark界面选择
捕获-刷新接口列表(F5)即可看到网卡
重启npcap
- 管理员运行CMD,不能使用PowerShell,命令在PowerShell会无法显示输出
- 执行
sc query npcap查询npcap状态
C:\Users\Bruce>sc query npcap
SERVICE_NAME: npcap
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
- 执行
sc stop npcap暂停npcap
C:\Users\Bruce>sc stop npcap
SERVICE_NAME: npcap
TYPE : 1 KERNEL_DRIVER
STATE : 1 STOPPED
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
- 执行
sc start npcap启动npcap
C:\Users\Bruce>sc start npcap
SERVICE_NAME: npcap
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 :
边栏推荐
- [untitled]
- Navicat premium 15 for MAC (database development tool) Chinese version
- Understanding of reflection part
- 根据先序遍历和中序遍历生成后序遍历
- 一行代码可以做什么?
- The first day of reading mysql45
- Unity技术手册 - 生命周期旋转RotationOverLifetime-速度旋转RotationBySpeed-外力ExternalForces
- 【蓝桥杯集训100题】scratch指令移动 蓝桥杯scratch比赛专项预测编程题 集训模拟练习题第14题
- Message format of Modbus (PLC)
- Reading mysql45 lecture - index continued
猜你喜欢

Reading mysql45 lecture - index continued

完美洗牌问题

Understanding of reflection part

Precautions for function default parameters (formal parameter angle)

GridLayout evenly allocate space

What can one line of code do?

Navicat premium 15 for MAC (database development tool) Chinese version

Day_ 04

Lifeifei's team applied vit to the robot, increased the maximum speed of planning reasoning by 512 times, and also cued hekaiming's MAE

DINO: DETR with Improved DeNoising Anchor Boxes for End-to-End Object Detection翻译
随机推荐
Day21 multithreading
Understanding of reflection part
This latest research has revealed two secrets of cloudy development
Lifeifei's team applied vit to the robot, increased the maximum speed of planning reasoning by 512 times, and also cued hekaiming's MAE
After flutter was upgraded from 2.2.3 to 2.5, the compilation of mixed projects became slower
Day_ 16 set
White screen, how fouc is formed, and how to avoid it
One minute to familiarize yourself with the meaning of all fluent question marks
Uniapp converts graphic verification codes in the form of file streams into images
The database records are read through the system time under the Android system, causing the problem of incomplete Reading Records!
一个 TDD 示例
Why does golang's modification of slice data affect the data of other slices?
Collection overview, array encapsulation
一文带你搞懂 JWT 常见概念 & 优缺点
Reverse series to obtain any wechat applet code
Bypass technology to talk about 'cross end'
Bombard the headquarters. Don't let a UI framework destroy you
MySQL_ JDBC
What is backbone network
Dart syntax

