我决定尝试使用 scapy 请求 IP。我能够在变量 ansD 中发送发现并接收报价。不幸的是,我无法访问包含提供的 IP 地址的字段,该地址应该是 ansD[BOOTP].yiaddr 。它告诉我该字段不存在。我环顾四周,看到了类似的问题,但似乎无法理解为什么我可以访问正常的数据包字段,但无法使用 BOOTP 字段。
receivedIP = 0
conf.checkIPaddr = False
fam,hw = get_if_raw_hwaddr(conf.iface)
dhcp_discover = Ether(dst="ff:ff:ff:ff:ff:ff")/IP(src="0.0.0.0",dst="255.255.255.255")/UDP(sport=68,dport=67)/BOOTP(chaddr=hw)/DHCP(options=[("message-type","discover"),"end"])
ansD,unans = srp(dhcp_discover, multi=True)
if True:
dhcp_request=Ether(dst="ff:ff:ff:ff:ff:ff")/IP(src="0.0.0.0",dst="255.255.255.255")/UDP(sport=68,dport=67)/BOOTP(chaddr=hw,yiaddr=ansD[BOOTP].yiaddr)/DHCP(options=[("message-type","request"),"end"])
ansR, unans = srp(dhcp_request,multi=True)
对象错误“列表”对象没有属性“yiaddr”