【发布时间】:2023-04-06 19:22:02
【问题描述】:
scapy 是否允许您一次 arping 多个 IP?
我试过 arping(['192.168.192.9','192.168.192.12']) 但得到 TypeError: unhashable type: 'list'
和 arping(('192.168.192.9','192.168.192.12')) 但得到 AttributeError: 'tuple' object has no attribute 'split'
【问题讨论】: