Cara memindai VPN dengan Nmap

6

Saya sudah menginstal Zenmap di mesin Windows saya. Bagaimana saya bisa memindai jaringan VPN saya? Perintah yang saya gunakan adalah:

nmap -T4 -A -v 192.168.0.1-255

Tapi itu berhenti dengan kesalahan:

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!
user48777
sumber

Jawaban:

2

Sudahkah anda menginstal WinPcap ?

Anda mungkin memerlukan ini di Windows karena OS tidak menangani soket yang asli.

CaseyIT
sumber
2

Anda harus menambahkan -e eth0

sylvanas
sumber
ini bekerja untuk saya
JumpingJezza