为啥sniffer、ethereal抓不到本地回环路的数据包?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为啥sniffer、ethereal抓不到本地回环路的数据包?相关的知识,希望对你有一定的参考价值。
为什么sniffer、ethereal抓不到本地回环路(127.0.0.1——>127.0.0.1)的数据包?有哪些软件可以抓取?请对比分析。
谢谢 回答好的话追加200
Interface
该字段指定你想用于进行捕捉的借口。一次只能使用一个接口。这是一个下拉列表,简单点击右侧的按钮,选择你想要使用的接口。默认第一是支持捕捉的non- loopback(非环回)接口,如果没有这样的接口,第一个将是环回接口。在某些系统中,回借口不支持捕捉包(windows平台下的环回接口就不支持。)
粘贴来源:Wiresahrk用户手册(Ethereal前身)
python scapy 网卡抓包
首先需要安装scapy包,点击下载
1 from scapy.all import * 2 3 def pack_callback(packet): 4 print packet.show() 5 if packet[‘Ether‘].payload: 6 print packet[‘Ether‘].src 7 print packet[‘Ether‘].dst 8 print packet[‘Ether‘].type 9 10 if packet[‘ARP‘].payload: 11 print packet[‘ARP‘].psrc 12 print packet[‘ARP‘].pdst 13 print packet[‘ARP‘].hwsrc 14 print packet[‘ARP‘].hwdst 15 16 filterstr="arp" 17 18 sniff(filter=filterstr,prn=pack_callback, iface=‘enp7s0f1‘, count=0)
以上是关于为啥sniffer、ethereal抓不到本地回环路的数据包?的主要内容,如果未能解决你的问题,请参考以下文章