-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
네트워크 프로토콜은 크게 두 가지이다. | ||
|
||
- 실제로 데이터를 실어나르는 데이터 프로토콜 | ||
- 데이터 프로토콜 제어를 도와주는 컨트롤 프로토콜 | ||
|
||
TCP/IP 프로토콜 체계를 유지하기 위한 주요 컨트롤러 프로토콜은 ARP / ICMP / DNS가 있다. | ||
|
||
이 중 DNS(Domain Name System)는 도메인 주소를 IP 주소로 변환하는 역할을 한다. | ||
|
||
1. **DNS 소개** | ||
|
||
|
||
숫자로 구성된 IP 보다 문자열인 도메인 주소가 더 기억하기 쉽다. | ||
|
||
서비스를 도메인 주소로 사용하더라도 실제 패킷을 만들어 통신하기 위해서는 3계층 IP 주소를 알아야 하고, 이를 위해 문자열로 된 도메인 주소를 실제 통신에 필요한 IP 주소로 변환하는 DNS 작업이 필요하다. |