March 22, 2006 at 6:41 pm
How to verify whether OS is running ( I mean to ping the box) using a script
March 22, 2006 at 9:51 pm
Not quite sure what you are after here, but to execute the ping command from QA, try something like this:
EXEC master..xp_cmdshell 'ping 192.168.1.1'
March 23, 2006 at 3:36 am
Thanx.. I got it.
what is this line means:
Reply from 192.168.1.47: bytes=32 time<1ms TTL=128
And why is it done usally?
March 23, 2006 at 4:27 pm
It simply tells you that a packet of information (32 bytes in size) was sent to the target computer, and the response time was less than 1 millisecond.
Each packet has a Time to Live (TTL) attribute, whose value is reduced everytime a router handles the packet. When the TTL reaches zero, then the packet is discarded. When this happens, your ping will echo the failed message.
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply