what really happen after i press enter to the web browser after typing google.com. where the first packet go and from there where it go . i want the detail information so some body please help me.
标签:
networking
相关问题
- IPAddress.[Try]Parse parses 192.168 to 192.0.0.168
- What would prevent code running in a Docker contai
- How to run tcp and udp on a single port at same ti
- Docker-Compose: Can't Connect to Mongo
- Make Laravel Homestead Accessible via the Internet
相关文章
- RMI Threads prevent JVM from exiting after main()
- fsc.exe is very slow because it tries to access cr
- How many times will TCP retransmit
- Writing an OS X kernel extension to implement Linu
- Virtual Box limit Bandwith on network [closed]
- Is ICMP a transport layer protocol?
- How to add negative filter in network tab of Chrom
- Chrome failing to connect to websocket server (Opc
Here's a good place to start: http://computer.howstuffworks.com/internet/basics/internet-infrastructure.htm
Take a look at the answer to this question. It has a great explanation!
Have you tried studying the output of
traceroute www.google.com
from the command line? This little utility will show you the exact route, hop by hop, that packets take from your local machine to a remote host. You can get some help understanding the output from this site or this other site.If you're on Windows, the equivalent command line utility is called
tracert
, and run the same way.Or, you could use a similar online service: http://who.is/tools/traceroute/google.com/ if you're unfamiliar or uncomfortable with the command line.