0

I've executed Wireshark and I tried to capture packets.

I got the following error which shows up after clicking "start capturing":

error message

Yaron
  • 13,453

1 Answers1

1

The error says:

You don't have permissions to capture on that device

wireshark require root access in order to capture data on a network device, as it uses Promiscuous mode

Executing wireshark using sudo should solve the problem (by execution the program as root)

sudo wireshark
Yaron
  • 13,453