프로그래밍공부(Programming Study)/네트워크(Network)

[컴퓨터네트워크]2. Network edge, Network core

Chaany 2023. 3. 25.
728x90

Host

  • 네트워크 애플리케이션을 호스트하고 있기 때문에 호스트라고 함
  • application 메시지 발생
  • packet이라는 덩어리로 자름
  • L(bits) / R(second) = 비트당 전송속도

Physical media

  • guided media
    • copper : Ethernet
    • fiber : HFC
    • coax : HFC
  • unguided media
    • radio, WiFi, Cellular
  • twisted pair(TP)=copper
    • category 5 : 100Mbps, 1Gpbs
    • category 6 : 10Gbps
  • coaxial cable
    • broadband
      • multiple channels on cable
      • HFC
  • fiber optic cable
    • light pulses
    • transmission rate가 높음(10's ~ 100's Gpbs)
    • low error rate(transmission bit error가 낮음)
  • radio
    • no physical "wire"
    • 환경 종속적
      • reflection
      • obstruction by objects
      • interference
    • link type
      • terrestrial microwave : 45 Mbps 
      • LAN(WiFi = Wireless LAN) : 802.11b(11Mbps), 802.11g(54Mbps)
      • wide-area(cellular) : 3G(~ few Mbps), LTE(10Mbps)
      • satelite
        • 270msec delay 
        • geostationary 
        • low-earth obiting(LEO) 

Network Core

  • Circuit switching
    • call set up : 경로 설정(라우터, 스위치 경로할지)
    • resource reservation : 자원 예약
    • 네트워크를 분할할 수 있어야 함
      • FDM(frequency division)
        • 각기 다른 Frequency를 나눠서 할당
      • TDM(time division)
        • 시간을 나눠서 할당
  • Packet Switching
    • 컴퓨터간 통신은 연속적이지 않은 경우가 존재하여 circuit switching 부적합
    • no call set up
    • no resource reservation
    • full link capacity를 패킷이 차지함
    • application에서 만들어내는 메시지를 패킷 청크로 잘라줌(edge host의 기본 역할)
      • 고정적으로 링크를 차지함
    • 목적지 주소가 명시되어 있어야 함
    • 온전히 패킷 전부를 받아야하므로 받는 작업 다 하고 주소 파싱하고 또 링크 뽑아내서 포워드(store and forward)
    • end-end delay = 2L/R(assuming zero propagation delay)
    • (-) Queueing delay, loss = congestion
  • Internet structure : network of networks
    • multi-tier hierarchy!
    • peer
      • 같은 계층에 있는 ISP끼리 연결 가능 
      • settlement-free
    • Internet Exchange Point(IXP)
    • content provider network(e.g., Google)
      • reduce payemnt to upper-tier ISPs
      • or through IXPs

728x90

댓글