So scannen Sie ein VPN mit Nmap

15800
user48777

Ich habe Zenmap auf meinem Windows-Rechner installiert. Wie kann ich mein VPN-Netzwerk scannen? Der Befehl, den ich verwende, lautet:

nmap -T4 -A -v 192.168.0.1-255 

Aber es wird mit dem Fehler beendet:

WARNING: Using raw sockets because ppp0 is not an ethernet device. This probably won't work on Windows.  pcap_open_live(ppp0, 100, 0, 2) FAILED. Reported error: Error opening adapter: The system cannot find the device specified. (20). Will wait 5 seconds then retry.  pcap_open_live(ppp0, 100, 0, 2) FAILED. Reported error: Error opening adapter: The system cannot find the device specified. (20). Will wait 25 seconds then retry.  Call to pcap_open_live(ppp0, 100, 0, 2) failed three times. Reported error: Error opening adapter: The system cannot find the device specified. (20)  QUITTING! 
6

2 Antworten auf die Frage

2
CaseyIT

Haben Sie WinPcap installiert ?

Sie benötigen dies möglicherweise unter Windows, da das Betriebssystem rohe Sockets nicht nativ verarbeitet.

2
sylvanas

Sie müssen -e eth0 hinzufügen

das hat für mich funktioniert JumpingJezza vor 8 Jahren 0