我正在寻找在路由器上测试 mac 地址学习的解决方案。 为此,我计划在 src 处发送带有随机 mac 地址的 256 ping。
我在 Python 中使用 Scapy,效果很好:
from scapy.all import *
my_frame = Ether(src="50:eb:71:xx:xx:xx")/IP(dst="8.8.8.8")/ICMP()
sendp(my_frame, "WiFi", verbose=True)
我可以在 Wireshark 上看到离开接口的 ICMP 消息。
我怎样才能得到回复?