ping Questions
5
I recently finished a script to ping every computer/workstation on a list and output it in a nice format.
There are thousands of computers to ping on the next list so it would take a while to run...
Tirade asked 21/6, 2016 at 20:29
2
Using sudo ping -f (URL) on a Mac gives the message:
Request timeout for icmp_seq as a reply.
How can I fix this?
5
Solved
Just as you'd ping an IP of to a server to check if it is up, can we also check if, on that running server, a port is active/open?
this just comes from my head,but can you be more specific in your...
Historical asked 4/6, 2015 at 5:3
11
Solved
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 ...
Frigg asked 26/12, 2012 at 9:37
16
Solved
Is there a command line based way to send pings to each computer in a subnet?
Like
for(int i = 1; i < 254; i++)
ping(192.168.1.i);
to enforce arp resolution?
Eurythermal asked 2/2, 2009 at 13:16
6
When I Ping a remote system with Windows it says there is no reply, but when I ping with c# it says success. Windows is correct, the device is not connected. Why is my code able to successfully pin...
24
How can an internet connection be tested without pinging some website?
I mean, what if there is a connection but the site is down? Is there a check for a connection with the world?
Pentachlorophenol asked 30/5, 2009 at 8:45
4
Solved
I am making an application which will implement some features of the "ping" command.The problem is, I have no idea of which library/libraries to use in ANDROID.
anyone have any idea for it?
I hav...
19
Solved
On the Windows command prompt cmd, I use ping -t to 10.21.11.81
Reply from 10.21.11.81: bytes=32 time=3889ms TTL=238
Reply from 10.21.11.81: bytes=32 time=3738ms TTL=238
Reply from 10.21.11.81: by...
9
Solved
I have created a piece of code which takes an IP address (from main method in another class) and then loops through a range of IP addresses pinging each one as it goes. I have a GUI front end on th...
Cioffred asked 3/4, 2012 at 12:11
4
Solved
I just want to ping a host(DNS host) to check reachability. Looks there is no proper way to do this? I'm not sure. Below is my playbook with net_ping
---
- name: Set User
hosts: web_servers
gath...
9
How can i check if a method in a web service is working fine or not ? I cannot use ping. I still want to check any kind of method being invoked from the web service by the client. I know it is diff...
Torrens asked 18/4, 2012 at 9:51
33
Solved
In Python, is there a way to ping a server through ICMP and return TRUE if the server responds, or FALSE if there is no response?
Nerine asked 1/6, 2010 at 21:27
3
I understand the Ping is to help prevent proxies from closing idle connections. Is there any guidelines w.r.t. how often to ping? Once every second? 10 seconds? Minute? Does it even matter? A preli...
4
I am trying to send ping, but using with a source Ip. Tried this,
ping example.org -i 88.65.48.77
It pings without any errors, but I am confused. In the manual, it says -S is a source operator. ...
Slinkman asked 21/11, 2014 at 16:1
14
Solved
I want to learn how to write batch scripts and tried to create a script which automatically runs this command in the command line once:
ping www.google.de -t
and displays the ping, so it would l...
Antemeridian asked 3/8, 2014 at 17:47
17
Solved
I am using this part of code to ping an ip address in java but only pinging localhost is successful and for the other hosts the program says the host is unreachable.
I disabled my firewall but stil...
4
We've been experiencing a long-standing networking issue. In short, one container cannot ping (or ssh) another. Does anybody have an extra moment to think along with me?
Our setup:
Docker CE 18....
Headwater asked 11/12, 2019 at 1:16
2
I have a nexus 7 running CM10.1 . For some reason i cannot reach it from my laptop on the same wifi network. I cannot ping in either direction. In the past i have been only able to ping one way.
J...
Cereal asked 24/4, 2013 at 14:43
4
Solved
I know the ICMP request contains the IP address. Is the client MAC address included in an ICMP request? What other info (if any) is included in a ping request?
8
Solved
I want to migrate my local mysql database to Amazon RDS. But first I want to test to see if it is receiving communication. So I try to ping it. But the attempt timeout.
ping -c 5 myfishdb.blackOut...
Return asked 24/3, 2014 at 0:36
1
Solved
When consulting network tabs I saw some Google analytics calls:
Some have the type "ping".
I know the ping attribute but it's when a link is clicked and the payload is "PING".
...
Lanugo asked 7/3, 2023 at 19:31
7
I'm trying to ping another computer that is connected to the same Wi-Fi network. Pinging to anything else (localhost, website, etc.) works fine. But when I try to ping to the local ip address of my...
Elanorelapid asked 19/3, 2019 at 2:55
8
Solved
I want to run a JavaScript code to ping 4 different IP addresses and then retrieve the packet loss and latency of these ping requests and display them on the page.
How do I do this?
Telophase asked 10/2, 2011 at 8:14
5
Solved
I want to check internet connection, when it fails I want to set %internet% to not connected. And if it works to connected.
echo checking internet connection
Ping www.google.nl -n 1 -w 1000
cls
if...
Hormone asked 21/12, 2014 at 13:43
1 Next >
© 2022 - 2024 — McMap. All rights reserved.