我正在尝试使用 Python 和 Scapy(使用 ICMP)编写 traceroute 程序。我有一个问题,有时我没有收到目的地的回复,我的程序只是等待它。(在 cmd 上使用 traceroute 时,这相当于“请求超时”的情况)。我认为 sr1 函数正在等待答案,但它永远不会得到它。我该如何解决?
我也不确定我是否处理了到达目的地的情况,我检查了类型是否等于 3 但我不确定它是否正确。我也很乐意得到答案。
import sys
i, o, e = sys.stdin, sys.stdout, sys.stderr
from scapy.all import *
sys.stdin, sys.stdout, sys.stderr = i, o, e
def main():
hostname = input("Enter the destination")
done = False
distance = 1
while not done:
tracert_packet = IP(dst=hostname, ttl=distance)/ICMP()
# Send the packet and get a reply
tracert_resopnse = sr1(tracert_packet, verbose=0)/ICMP()
if tracert_resopnse.type == 3:
# We've reached our destination
print("Done!" + tracert_resopnse[IP].src)
done = True
else:
# We haven't got to the destination yet
print(str(distance) +" hops away: "+ str(tracert_resopnse.src))
distance += 1
if __name__ == '__main__':
main()
开心每一天1111
相关分类