【scapy】发送原始以太网数据包

组包

构建二层包,以Ether开头

Ether()/IP()/xx

构建三层包,以IP开头

IP()/xx/xx

ep:

# 三层数据包
IP(dst='www.baidu.com') / ICMP()
IP(src='xx.xx.xx.xx', dst='1.2.3.4') / TCP()

# 二层数据包
Ether

你可能感兴趣的:(scapy,网络)