Ping all addresses in network, windows

前端 未结 11 1508
庸人自扰
庸人自扰 2021-01-30 00:14

Is it possible in windows cmd line to check all of the network addresses (with ping or similar) to see which ones are taken/ have active devices:

ie. something that does

11条回答
  •  后悔当初
    2021-01-30 00:45

    An expansion and useful addition to egmackenzie's "arp -a" solution for Windows -

    Windows Example searching for my iPhone on the WiFi network

    (pre: iPhone WiFi disabled)

    • Open Command Prompt in Admin mode (R.C. Start & look in menu)
    • arp -d <- clear the arp listing!
    • ping 10.1.10.255 <- take your subnet, and ping '255', everyone
    • arp -a
    • iPhone WiFi on
    • ping 10.1.10.255
    • arp -a

    See below for example:

    Here is a nice writeup on the use of 'arp -d' here if interested -

    • TechRepublic - Quick Tips Flush the ARP cache in Windows 7

提交回复
热议问题