목록CS (35)
CS log
IPv4 datagram format What is a role of TTL (Time-To-Live)? 데이터 패킷이 네트워크를 돌고 라우팅이 되면서 산 채로 돌아다니는 시간 Why is ToS (Type of Service) field not used in the Internet? 초기에는 서비스 유형에 따라 데이터 패킷을 구분하기 위해 고안되었지만, 현재 대부분의 네트워크 장비는 다른 기술들을 사용하여 트래픽 관리하고 있다. 예를들어 QoS 기술은 네트워크에서 특정 유형의 트래픽 관리에 대한 우선순위를 지정하는 데에 사용된다. When is "upper-layer protocol" used? 하나의 protocol이 여러개의 protocol를 support할 때. 상위 계층 프로토콜은 데이터 전송을..
Why each port has a FIB? -- In order to implement line speed forwarding Decentralized switching means FIB lookup is done using FIB stored in input port memory. Router architecture includes control plane (routing protocol and middleboxes)
4장에서는 (네트워크 엣지에 있는 호스트) 와 (코어에 있는 라우터)에 모두 존재하는 3계층 (Network layer) 동작에 관해서 공부하게 됩니다. 가장 복잡도가 높은 인터넷 기술의 꽃에 해당하는 계층입니다. 3계층의 기능은 다음과 같이 2가지로 나눠집니다. (1) 네트워크 가입자의 데이터(IP 패킷)를 처리(포워딩)하는 "Data plane" (4장)과 (2) 라우터들간에 주고 받는 라우팅프로토콜 메세지(이것도 IP패킷임)를 처리하고 라우팅테이블을 만드는 "Control plane" (5장) => (2)번 기능은 (1)번 기능을 수행하기 위해 필요한 것입니다. Network service model (required by Transport layer) no loss, max. e2e-delay, ..
1. push protocol vs pull protocol Push protocol : a client who initiates a connection to a server wants to send(push) data to the server (ex: SMTP, etc) Pull protocol : a client who initiates a connection to a server wants to receive(pull) data to the server (ex: HTTP, DNS, IMAP, POP3 etc) 2. Protocols SMTP (push protocol) : used for sending(pushing)/delivering (NOT retrieving) emails IMAP or PO..
질문 : How many sockets are open at the same time in a client/server host when using each of three HTTP types above? 답? 1. Addressing processes A process in the Internet can be identified by IP address of the host where the process is running, commany address 집주소 OS가 sw적으로 세팅한 주소. IP layer. 타고 나가는 건 nw interface 카드 (IP:카드 = 다대일) port number , URL = nw를 다니는 parameter, well-known // client는 그 때 그 때 ..