无法运行 pcap_open_live()(tcpdump 错误)

无法运行 pcap_open_live()(tcpdump 错误)

我正在运行 ARP 中毒和防御代码。但它总是显示这样的输出。

pcap_open_live(): enp0s8: You don't have permission to capture on that device (socket: Operation not permitted)

我在网上查看并尝试添加此代码,但它不起作用

sudo groupadd pcap
sudo usermod -a -G pcap rishab
chgrp pcap /usr/sbin/tcpdump
chmod 750 /usr/sbin/tcpdump
setcap cap_net_raw,cap_net_admin=eip /usr/sbin/tcpdump

你能告诉我我做错了什么吗

我正在使用 Ubuntu 20.04

rishab 是我在 linux vmware 上的用户名

我的结果

相关内容