Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好遇见!
我有两台机器和一台交换机,一台机器的地址为“192.168.233.1”,另一台的地址为“192.168.1.1”。如何使用 nmap 扫描 233.1 机器的 192.168.1.1-254 范围?我希望能够在 Wireshark 中只看到对 192.168.1.1 的请求。
谢谢!
主机必须通过 a 互连gateway(假设它们的子网掩码是 a /24)。
gateway
/24
如果网关存在,则两个子网可以互通,可以正常使用nmap(例如nmap -sP 192.168.1.1-254)
nmap -sP 192.168.1.1-254
然后,如果您只想查看流向主机的流量192.168.1.1,请设置ip.addr == 192.168.1.1为过滤器wireshark
192.168.1.1
ip.addr == 192.168.1.1
wireshark