
powershell - Ping range of IP addresses - Stack Overflow
Dec 20, 2015 · 2 You can't ping range of addresses in single ping request due to ping protocol restrictions. To achieve what you want you need to convert ranges into lists of IP addresses and ping …
ip address - Ping - Request timed out on a local network - Stack …
5 Try to ping another device from your local network (pinging localhost or a website is not the same). Try to ping from target_ip to source_ip (opposite direction). If you have response in any of 2 cases …
How to ping multiple servers and return IP address and Hostnames …
Sep 13, 2012 · ) The outer loop iterates through the hosts and the inner loop parses the ping output. The first two if statements handle the two possible cases of IP address resolution: The host name is the …
windows - Ping IP with source IP? - Stack Overflow
You only need/want the -S flag if you have multiple network interface cards (NICs), and you want the source of the pings to come from a specific NIC; this is seldom needed. Your command ping …
Ping all addresses in network, windows - Stack Overflow
By using -n 1 you are asking for only 1 packet to be sent to each computer instead of the usual 4 packets. The above command will ping all IP Addresses on the 192.168.10.0 network and create a …
network programming - ping response "Request timed out." vs ...
When I ping an IP address, what is the difference between Request timed out and Destination host unreachable returned from the command?
Checking host availability by using ping in bash scripts
Oct 1, 2016 · I want to write a script, that would keep checking if any of the devices in network, that should be online all day long, are really online. I tried to use ping, but if [ "`ping -c 1 some_ip_here`" ]
Fastest way to ping a network range and return responsive hosts?
Dec 26, 2012 · Constraints: 1. Speed matters. 2. I am allowed to ping once. I'm debating whether to use Python or shellscripting. Is there a method faster than bash? Here is the current code, for ip in $(seq...
How could I ping my docker container from my host
Aug 30, 2016 · You will also need to setup routing from your Mac to the container networks via your VM's new IP address. In my case the Docker network range is 172.22.0.0/16 and the Host Only …
Can ping IP but cannot ping hostname - intermittent problem
When the computer can ping with the IP it means there is no connections errors between them , the problem is in the DNS server used by the comupters , DNS ( Domain Name System ) is the protocol …