Hi I am trying to find a way to calculate the round trip time for a specific IP using python. All i can find is using a url but thats not the way I would like it to work and so far no information was helpful
I only found this code:
import time
import requests
# Function to calculate the RTT
def RTT(url):
# time when the signal is sent
t1 = time.time()
r = requests.get(url)
# time when acknowledgement of signal
# is received
t2 = time.time()
# total time taken
tim = str(t2-t1)
print("Time in seconds :" + tim)
# driver program
# url address
url = "http://www.google.com"
RTT(url)
Can anyone please tell me how I can adjust this code to take an IP address rather than a URL ? Thanks
A URL follows a specific format: protocol + subdomain + domain + path + filename. The domain portion of the URL is essentially a user-friendly ip address, meaning that the DNS will/can resolve it to an exact IP address. This should mean that we can replace the domain portion of our url with our Ip address/port and this code should work fine. Using the HTTP protocol with our local IP address, we would make the following changes:
url = "http://127.0.0.1"
Here we are using port 80, the default for the HTTP protocol, but we can add a custom port number to the url as well:
url = "http://127.0.0.1:8000"
The other option would be to open a socket, send data and wait for a response. Here is an example using a TCP connection: