¡@

Home 

python Programming Glossary: ping

How can I perform a ping or traceroute in python, accessing the output as it is produced?

http://stackoverflow.com/questions/1151897/how-can-i-perform-a-ping-or-traceroute-in-python-accessing-the-output-as-it-is

can I perform a ping or traceroute in python accessing the output as it is produced.. Earlier I asked this question How can I perform a ping or traceroute using native python However because python is.. ability to open the raw ICMP sockets needed to perform the ping traceroute in native python. This brings me back to using the..

Obtain MAC Address from Devices using Python

http://stackoverflow.com/questions/1750803/obtain-mac-address-from-devices-using-python

expression will make it work in OS X. First you must ping the target. That will place the target as long as it's within.. in your system's ARP cache. Observe 13 40 jsmith@undertow ping 97.107.138.15 PING 97.107.138.15 97.107.138.15 56 84 bytes of.. do that from subprocess import Popen PIPE IP 1.2.3.4 # do_ping IP # The time between ping and arp check must be small as ARP..

checksum udp calculation python

http://stackoverflow.com/questions/1767910/checksum-udp-calculation-python

and how it works. I'll give another example with an icmp ping echo v4 packet packet 08 00 d1 15 76 0c 00 07 bf d3 55 4a ad..

Measuring ping latency of a server - Python

http://stackoverflow.com/questions/2525312/measuring-ping-latency-of-a-server-python

ping latency of a server Python I have a list of server IP addresses.. a string like this import subprocess p subprocess.Popen ping.exe www.google.com stdout subprocess.PIPE print p.communicate..

Pinging servers in Python

http://stackoverflow.com/questions/2953462/pinging-servers-in-python

servers in Python 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 python python 3.x ping icmp share improve this question You can look at this recipe..

How to replicate tee behavior in python when using subprocess?

http://stackoverflow.com/questions/2996887/how-to-replicate-tee-behavior-in-python-when-using-subprocess

still searching for a way to do this proc subprocess.Popen ping localhost stdout subprocess.PIPE stderr subprocess.PIPE with..

Ping a site in Python?

http://stackoverflow.com/questions/316866/ping-a-site-in-python

basic code is from Tkinter import import os sys ana Tk def ping1 os.system 'ping' a Button pen ip 192.168.0.1 a.config text.. Tkinter import import os sys ana Tk def ping1 os.system 'ping' a Button pen ip 192.168.0.1 a.config text PING bg white fg.. pen ip 192.168.0.1 a.config text PING bg white fg blue a ping1.ip a.pack ana.mainloop How could I ping a sites or address..

Django and root processes

http://stackoverflow.com/questions/4748971/django-and-root-processes

to check whether a host on the LAN is up using an ICMP ping. I found this SO question which answers how to ping something.. ICMP ping. I found this SO question which answers how to ping something in Python and this SO question which links to resources.. I envisage checking to see if the device responds to a ping using an AJAX call to an API which exposes the capability. The..

How come my program can connect to a nonexistent website?

http://stackoverflow.com/questions/8027158/how-come-my-program-can-connect-to-a-nonexistent-website

instead of an error for nonexistant names. What does a ping Nonexistentsite.com result in on the machine where you tested..