You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using very basic example of traceroute. Following code used:
hops = traceroute(8.8.8.8)
for hop in hops:
print (hop.address)
only thing printed is the last hop of 8.8.8.8. Running tracert from command line provides entire list of hops. Not sure what the issue could be. Multiping works fine in similar command. Using Python 3.9.
The text was updated successfully, but these errors were encountered:
The behavior you are seeing on Windows is most likely related to your firewall. Can you try to temporarily deactivate it during the test and try again? There are other issues on this subject (#7, #8 and #10).
Using very basic example of traceroute. Following code used:
hops = traceroute(8.8.8.8)
for hop in hops:
print (hop.address)
only thing printed is the last hop of 8.8.8.8. Running tracert from command line provides entire list of hops. Not sure what the issue could be. Multiping works fine in similar command. Using Python 3.9.
The text was updated successfully, but these errors were encountered: