Tech24 Deals Web Search

Search results

  1. Results from the Tech24 Deals Content Network
  2. Pinging servers in Python - Stack Overflow

    stackoverflow.com/questions/2953462

    Learn how to ping servers in Python using various methods and modules. Find answers and solutions from other Stack Overflow users.

  3. FYI, I just did some test using the method above and if we use multi ping (10 requests) ping -c10 8.8.8.8 &> /dev/null ; echo $? the result of multi ping command will be "0" if at least one of ping result reachable, and "1" in case where all ping requests are unreachable.

  4. You can add your own options to the ping command based on your requirements. This doesn't put the time stamp on the same line as the ping, but it still gets you the info you need.

  5. Python Function to test ping - Stack Overflow

    stackoverflow.com/questions/26468640

    This function will test ping for given number of retry attempts and will return True if reachable else False - """Returns True if host (str) responds to a ping request.""" # Option for the number of packets as a function of param = '-n' if platform.system().lower() == 'windows' else '-c' # Building the command.

  6. Using ping in c# - Stack Overflow

    stackoverflow.com/questions/11800958

    Using ping in C# is achieved by using the method Ping.Send(System.Net.IPAddress), which runs a ping request to the provided (valid) IP address or URL and gets a response which is called an Internet Control Message Protocol (ICMP) Packet. The packet contains a header of 20 bytes which contains the response data from the server which received the ...

  7. I have some visual basic code (see below) that tests an IP connection in column B (of an excel spreadsheet) and puts whether or not it is connected or un-reachable in column c, I was just wondering...

  8. Ping all addresses in network, windows - Stack Overflow

    stackoverflow.com/questions/13713318

    Is it possible in windows cmd line to check all of the network addresses (with ping or similar) to see which ones are taken/ have active devices: ie. something that does something like the followi...

  9. How to check if ping responded or not in a batch file

    stackoverflow.com/questions/3050898

    The question was to see if ping responded which this script does. However this will not work if you get the Host Unreachable message as this returns ERRORLEVEL 0 and passes the check for Received = 1 used in this script, returning Link is UP from the script.

  10. Please define "ping". Do you mean to use the ICMP ping protocol, or see if a web server is running? Or something else?

  11. Send a ping to each IP on a subnet - Stack Overflow

    stackoverflow.com/questions/503171

    fping differs from ping in that you can specify any number of targets on the command line, or specify a file containing the lists of targets to ping. Instead of sending to one target until it times out or replies, fping will send out a ping packet and move on to the next target in a round-robin fashion.