브라우저에 'google.com'을 입력한 후 익숙한 검색 페이지가 나타나는 사이에 1초도 안 되는 순간에 발생하는 복잡한 일련의 이벤트에 대해 궁금한 적이 있습니까? 이 상세한 탐구에서 우리는 온라인 경험을 가능하게 하는 웹 기술, 네트워킹 프로토콜 및 복잡한 데이터 댄스의 매혹적인 세계를 발견할 것입니다.
'google.com'을 입력하고 Enter 키를 누르면 브라우저가 다음과 같이 작동합니다.
URL 구문 분석: 브라우저는 먼저 입력한 URL을 분석합니다. 이는 프로토콜(이 경우 'http://' 또는 'https://'로 암시됨), 도메인 이름('google.com') 및 추가 경로 또는 쿼리 매개변수(이 간단한 예에서는 없음)를 식별합니다. .
HSTS 확인: Google과 같이 보안에 민감한 웹사이트의 경우 브라우저는 HSTS(HTTP Strict Transport Security) 목록을 확인합니다. google.com이 이 목록에 있으면 브라우저는 자동으로 요청을 HTTPS로 업그레이드합니다.
캐시 확인: 네트워크에 연결하기 전에 브라우저는 로컬 캐시를 확인합니다. 이 캐시는 다음을 포함하여 이전 방문 정보를 저장합니다.
이 중 하나라도 발견되고 여전히 유효한(만료되지 않음) 경우 브라우저는 다음 단계 중 일부를 건너뛸 수 있습니다.
브라우저가 캐시에서 필요한 정보를 찾을 수 없으면 운영 체제(OS)에 도움을 요청합니다.
호스트 파일 검사: OS는 먼저 로컬 "호스트" 파일을 찾습니다. 이 파일은 도메인 이름을 IP 주소에 매핑하여 잠재적으로 DNS 조회를 우회할 수 있습니다. 그러나 대부분의 사용자의 경우 google.com은 이 파일에 없습니다.
DNS 클라이언트 캐시: OS는 브라우저와 별도로 자체 DNS 캐시를 유지합니다. 다음은 여기서 확인합니다.
Resolver 구성: IP가 로컬 캐시에 없으면 OS는 DNS 서버에 요청할 준비를 합니다. 네트워크 구성을 읽어 쿼리할 DNS 서버를 찾습니다(일반적으로 인터넷 서비스 공급자가 제공하거나 수동으로 설정).
google.com의 IP 주소가 캐시되지 않은 경우 DNS(Domain Name System)에 사람이 읽을 수 있는 "google.com"을 컴퓨터에서 사용할 수 있는 IP 주소로 변환하도록 요청해야 합니다.
DNS는 계층 구조로 구성됩니다.
루트 서버: 계층 구조의 최상위에 있습니다. 그들은 .com, .org, .net 등과 같은 최상위 도메인(TLD)에 대한 권한 있는 서버를 어디에서 찾을 수 있는지 알고 있습니다.
TLD 서버: 이 서버는 TLD에 등록된 모든 도메인에 대해 알고 있습니다. .com TLD 서버는 google.com에 대해 알고 있습니다.
신뢰할 수 있는 네임 서버: 이는 IP 주소를 포함하여 특정 도메인에 대한 모든 것을 아는 역할을 담당합니다.
캐싱: 이 프로세스의 각 단계에는 캐싱이 포함될 수 있으므로 전체 과정이 항상 필요한 것은 아닙니다. 확인자는 일반적으로 Google에서 지정한 시간(TTL, TTL) 동안 최종 결과를 캐시합니다.
로드 밸런싱: Google과 같은 대규모 서비스는 종종 여러 IP 주소를 반환합니다. 이를 통해 로드 밸런싱이 가능하고 안정성이 향상됩니다.
DNS 조회가 다음과 같은(간소화된) 결과를 반환한다고 가정해 보겠습니다.
google.com. 300 IN A 172.217.167.78
즉,
이제 Google의 IP 주소가 있으므로 연결을 설정할 차례입니다.
Application Layer: Your browser operates here, using HTTP(S) to communicate.
Transport Layer: TCP is used here to ensure reliable, ordered delivery of data.
Internet Layer: IP is used to route packets between networks.
Link Layer: This handles the physical transmission of data, whether over Ethernet, Wi-Fi, cellular networks, etc.
To establish a connection, a three-way handshake occurs:
This process establishes sequence numbers for the conversation, ensuring packets can be properly ordered and any lost packets can be detected and retransmitted.
For HTTPS connections (which Google uses), an additional TLS (Transport Layer Security) handshake occurs:
With a secure connection established, your browser sends an HTTP GET request for the Google homepage.
GET / HTTP/2 Host: www.google.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8 Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate, br Connection: keep-alive Upgrade-Insecure-Requests: 1
This request includes:
Google's servers receive this request and process it. This might involve:
Google's server sends back an HTTP response, which might look something like this:
HTTP/2 200 OK Content-Type: text/html; charset=UTF-8 Date: Sat, 21 Sep 2024 12:00:00 GMT Expires: Sat, 21 Sep 2024 12:00:00 GMT Cache-Control: private, max-age=0 Server: gws X-XSS-Protection: 0 X-Frame-Options: SAMEORIGIN [... other headers ...] <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Google</title> [... rest of the HTML ...] </head> <body> [... body content ...] </body> </html>
This response includes:
Your browser now has the HTML content and begins rendering the page:
Parsing HTML: The browser parses the HTML, creating the Document Object Model (DOM).
Requesting Additional Resources: As it encounters links to CSS, JavaScript, images, etc., it sends additional HTTP requests for these resources.
Parsing CSS: The browser parses CSS and applies styles to the DOM elements, creating the CSS Object Model (CSSOM).
Executing JavaScript: The browser executes JavaScript, which can modify the DOM and CSSOM.
Rendering: The browser uses the final DOM and CSSOM to render the page on your screen.
What seems like a simple action—typing "google.com" and pressing Enter—actually involves a complex series of steps, from DNS lookups and network protocols to server-side processing and client-side rendering. This intricate dance happens in mere milliseconds, showcasing the incredible engineering that powers our online experiences.
Understanding these processes not only satisfies our curiosity but also helps web developers and IT professionals optimize websites, troubleshoot issues, and build more efficient and secure web applications. The next time you navigate to a website, take a moment to appreciate the technological marvels working behind the scenes to bring the web to your screen!
Images in this blog are AI generated.
Also read HTTP vs HTTPS what is difference between them
위 내용은 google.com을 입력하면 어떻게 되나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!