Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. -n Do not try to map IP addresses to host names when displaying
  2. them.
  3.  
  4. traceroute -n 8.8.8.8 | tail -n+2 | awk '{ print $1 "," $2 }'
  5.  
  6. -d Do not resolve addresses to hostnames.
  7.  
  8. $ tracert -d 8.8.8.8 | tail -n+2 | awk '{ print $8 }'
  9. of
  10.  
  11. 10.7.7.1
  12. 169.57.0.194
  13. 169.57.118.132
  14. 50.97.19.110
  15. 50.97.19.113
  16. 50.97.16.37
  17.  
  18. 108.170.231.15
  19. 8.8.8.8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement