📔
Today Joonas Learned
  • Home
  • About Me
  • Chrome Extension
    • CSS injection
  • Design Pattern
    • SOLID 원칙
      • 1. SRP
      • 2. OCP
      • 3. LSP
      • 4. ISP
      • 5. DIP
    • 생성 패턴
      • Singleton Pattern
      • Abstract Factory Pattern
      • Factory Method Pattern
    • 구조 패턴
      • Adapter Pattern
      • Bridge Pattern
      • Composite Pattern
      • Decorator Pattern
      • Facade Pattern
      • Proxy Pattern
    • 행위 패턴
      • Command Pattern
      • Observer Pattern
      • State Pattern
      • Strategy Pattern
      • Template Method Pattern
  • Graphics
    • OpenGL ES
      • 파이프라인
      • 삼각형 그리기
      • 삼각형 움직이기
      • 다각형 그리기
      • 정사면체 그리기
      • [WIP] 마인크래프트 블럭 만들기
      • [WIP] Lighting, Normal Mapping
  • Internet
    • iOS/Safari
  • Javascript
    • async, defer 속성
    • 나머지 매개변수 (Rest parameter)
    • 화살표 함수 표현 (arrow function expression)
    • Template Literals
    • TDZ (Temporal Dead Zone)
    • Spread syntax (...)
  • Network
    • OSI 7 계층 모델
  • Uncategorized
    • 2021/12/07
    • 2020/09/03
    • 2020/09/04
    • 2020/08/22
  • git/VCS
    • Merge 커밋 메시지 수정
Powered by GitBook
On this page
  • 7. Application
  • 6. Presentation
  • 5. Session
  • 4. Transport
  • 3. Network
  • 2. Data Link
  • 1. Physical
  • Links

Was this helpful?

  1. Network

OSI 7 계층 모델

7 layers of the OSI Model

PreviousNetworkNextUncategorized

Last updated 4 years ago

Was this helpful?

이 모델은 프로토콜을 기능별로 나눈 것이다. 각 레이어(Layer)는 하위 레이어의 기능을 사용할 수 있다.

레이어를 나눈 이유는 통신의 과정을 단계별로 확인할 수 있기 때문이다.

인터넷 연결이 안될 때 단계별로 어디가 문제인지 파악하는 모습을 떠올리면 된다.

상위 4개 레이어는 Host Layer 라고 불리고, 하위 3개 레이어는 Media Layer 라고 불린다.

7. Application

High-level API's, including resource sharing, remote file access

컴퓨터에서 실행되는 소프트웨어와 네트워크 프로토콜 사이의 인터페이스를 제공한다.

원격 파일 접근, 원격 프린트, 가상 터미널 등 사용자와 가장 닿아있는 영역이다. 응용 서비스나 프로세스가 이 레이어에서 동작한다.

6. Presentation

Translation of data between a networking service and an application. This is the layer where character encoding, data compression and encryption takes place.

5. Session

Managing communication sessions.

4. Transport

Reliable transmission of data segments between nodes on a network, including segmentation, acknowledgment and multiplexing.

3. Network

Structuring and managing a multi-node network, including addressing, routing and traffic control.

2. Data Link

Reliable transmission of data frames between two nodes connected by the physical layer.

1. Physical

Transmission and reception of raw bit streams over a physical medium.

Links

  • 응용 서비스나 프로세스가 바로 응용계층에서 동작

이 레이어에서 사용하는 프로토콜은 , , , , , , , , 등이 있다.

HTTP
FTP
SMTP
DNS
Telnet
SSH
IMAP
POP
SNMP
https://en.wikipedia.org/wiki/OSI_model
https://ko.wikipedia.org/wiki/OSI_모형
https://www.coengoedegebure.com/osi-model/
https://mycodecamp.blogspot.com/2019/10/7-layer-of-osi-model.html