当前位置:脚本大全 > > 正文

python获取网络数据tcp(Python选择网卡发包及接收数据包)

时间:2021-10-21 07:16:21类别:脚本大全

python获取网络数据tcp

Python选择网卡发包及接收数据包

当一台计算机上有多个网卡时,需要选择对应ip地址的网卡进行发送数据包或者接受数据包。

1、选择网卡发包(应用scapy):

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • plface=conf.route.route("××.××.××.××")[0]
  • #××.××.××.××为对应网卡网络中存在设备的ip地址。不能是需要发送数据包的网卡的ip地址(会报“result too large”)
  • pkt=conf.l2socket(plface)
  • pack_ip,pack_udp,pack_ether=self.udp_pack()
  • t= str(pack_ether/pack_ip/pack_udp/udp_packdata)
  • udp_pack = ether(t)
  • pkt.send(udp_pack)
  • 2、选择网卡进行包的接收

    1)如下方法,只能获得一个网卡的ip地址(选择哪个网卡,优先级未知)

  • ?
  • 1
  • socket.getaddrinfo(socket.gethostname(),none)[-1][4][0]
  • 2)如下方法,可根据ip地址确定网卡:

  • ?
  • 1
  • 2
  • 3
  • host = socket.gethostbyname(socket.gethostname())
  • s=socket.socket(socket.af_inet,socket.sock_raw,socket.ipproto_ip)
  • s.bind((host,0))
  • host可以直接用网卡ip地址代替,这样就可以选择网卡进行包的接受了

    总结

    以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对开心学习网的支持。如果你想了解更多相关内容请查看下面相关链接

    原文链接:https://blog.csdn.net/hzliyaya/article/details/52045615

    上一篇下一篇

    猜您喜欢

    热门推荐