Z
Z
Zheka2015-01-12 20:07:19
Computer networks
Zheka, 2015-01-12 20:07:19

How to ping multiple IP addresses at once?

Please tell me, there is a patch panel, a switch, a bunch of wires, none of them signed, here's the question:
if, for example, pull one of the plugs out of the switch, and ping everyone to see which computer is not responding, to mark the cord ..
Sobsno question: how to ping right away multiple addresses?

Answer the question

In order to leave comments, you need to log in

6 answer(s)
A
Armenian Radio, 2015-01-12
@gbg

Correct solution:
connect to the switch console, issue the show mac address table command,
get a list on which port of which mac
next match these addresses with the computers themselves, for example, using the arp cache

I
Igor, 2015-01-13
@fredyk

nmap -sP 10.10.10.0/24
nmap -sP 10.10.10.1-15

C
Cool Admin, 2015-01-12
@ifaustrue

An IP address scanner will help.
But the solution with poppy addresses for a managed switch is better and more accurate.
You can also disable the patch from the computer and see which port is off.

A
Andrew, 2015-01-12
@OLS

Create a list of IPs of interest, one per line, for example, let's call it "ips.txt".
Then
FOR /F %%A IN (ips.txt) DO ping -n 1 %%A | FIND /i "Answer"
PS If you will create a CMD file, then the encoding must be DOS (CP866)
PPS If the CLI is in English, then search accordingly for "Reply" and the encoding is indifferent

I
Ivan, 2015-01-13
@LiguidCool

This is a crutch, because. pings can kill firewalls.
The easiest way is to pull the patch and see where the link went out.
Well, or an option with arp on the switch, but this is if it has a console.

V
vreitech, 2015-01-13
@fzfx

if linux - fping.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question