not sure if this is the right forum
anyway
I want to ping say yahoo.com and have each reply wait a minute and see if the Ip address changes between pings
Is this correct
I get a slight pause on the first ping but not a minute and the others come back faster. seems adding -w has no effect
any ideas
DougP
< I Built one
anyway
I want to ping say yahoo.com and have each reply wait a minute and see if the Ip address changes between pings
Is this correct
Code:
ping -w 60000 -n 3 yahoo.com
Code:
C:\Documents and Settings\username>ping -w 60000 -n 3 yahoo.com
Pinging yahoo.com [209.131.36.159] with 32 bytes of data:
Reply from 209.131.36.159: bytes=32 time=152ms TTL=49
Reply from 209.131.36.159: bytes=32 time=215ms TTL=49
Reply from 209.131.36.159: bytes=32 time=167ms TTL=49
Ping statistics for 209.131.36.159:
Packets: Sent = 3, Received = 3, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 152ms, Maximum = 215ms, Average = 178ms
any ideas
DougP
< I Built one