0
votes
1answer
47 views
How can my Ruby “Time.now” timings be so low when my “ping” timings are so high?
I'm using MongoDB for the first time and trying to time its performance. I'm running ruby on a VirtualBox Ubuntu 9.10 guest with a Windows 7 64-bit host. MongoDB is on a remote …
1
vote
3answers
48 views
Translating a Windows batch file into a Linux shell script
I have a batch file that I use to check whether my sites react to a ping.
If a site doesn't react, the script writes the output into a text file.
I wanted to use the same kind of …
1
vote
4answers
61 views
how to use ping in a script
I want a bash script that'll do:
for c in computers:
do
ping $c
if ping is sucessfull:
ssh $c 'check something'
done
If I only do ssh and the computer is iresponsive …
0
votes
1answer
43 views
Server application have to make pings to N clients. Is there way to make it multithreaded?
I write server application (Windows Server 2003) making upto 1000 ping calls to clients and waiting for receive responses. As ping uses ICMP connection, I've found no way to define …
3
votes
7answers
288 views
Ping a Specific Port
Hi,
Just a quick Sanity check here.
Can you ping a specific port of a machine and if so in the answer can you provide an example?
Im a looking for something likeping ip address …
0
votes
2answers
23 views
Viewing incoming ping on windows server
I'm trying to see the results of an incoming ping on a target windows machine. This is needed to verify that the ping, which is running in a background thread, is being sent from t …
0
votes
2answers
33 views
.NET My.Computer.Network.Ping & PadLeft
Following code snippet throws an error when padding the last part with 0, and the last part is 008, 009, 018, 019, 028, 029 etc.
Anyone got an idea why?
Sub Main()
Dim fixed A …
0
votes
10answers
758 views
Ping always succeeds, cant easily check uptime using ping on a url
Im getting frustrated because of OpenDNS and other services (ie: roadrunner) that now always returns a ping even if you type any invalid url ie: lkjsdaflkjdsjf.com --- I had create …
6
votes
11answers
2k views
How can I write a linux bash script, that tells me which computer are on in my LAN ?
How can I write a linux bash script, that tells me which computers are ON in my LAN ?
It would help if I could give it as input a range of IP's.
0
votes
2answers
51 views
Is there a way to treat Ping-Host as a boolean in PowerShell?
I'd like to do something like this:
if (Ping-Host server1) { blah }
Anyone know of a simple way?
1
vote
3answers
156 views
Why is this running like it isn’t threaded?
I'm writing a script that will ping my ip range. Here's what I have so far:
lines = `ipconfig`.split("\n")
thr = []
ip_line = lines.detect { |l| l=~/Ip Address/i }
matcher = /\d+\ …
3
votes
2answers
133 views
disabling windows ability to respond to ping request
im writing an application destined to accept icmp echo request, and respond icmp echo reply by its criteria.
problem is, windows xp takes over the received ping, and quickly replie …
0
votes
3answers
54 views
Is there a simple app for pinging a list of websites?
Basically, I just need a simple app that frequently pings external IP Addresses and web addresses to make sure the sites are up. Does anyone know of a good one of these?
I starte …
1
vote
2answers
230 views
Leave only two decimal places after the dot.
public void LoadAveragePingTime()
{
try
{
PingReply pingReply = pingClass.Send("logon.chronic-domination.com");
double AveragePing = (pi …
2
votes
2answers
191 views
Making a “ping” inside of my C# application.
I need my application to ping an address I'll specify later on and just simply copy the Average Ping Time to a .Text of a Label.
Any help?
EDIT:
I found the solution in case any …
