星期一, 8月 26, 2019

SMDS

有人尋問支援的 SNMP MIB 檔案,應該是依照 RFC 1213 的網路界面 MIB,看到裡面界面類型有 sip,註解 SMDS....

          ifType OBJECT-TYPE
              SYNTAX  INTEGER {
                          other(1),          -- none of the following
                          regular1822(2),
                          hdh1822(3),
                          ddn-x25(4),
                          rfc877-x25(5),
                          ethernet-csmacd(6),
                          iso88023-csmacd(7),
                          iso88024-tokenBus(8),
                          iso88025-tokenRing(9),
                          iso88026-man(10),
                          starLan(11),
                          proteon-10Mbit(12),
                          proteon-80Mbit(13),
                          hyperchannel(14),
                          fddi(15),
                          lapb(16),
                          sdlc(17),
                          ds1(18),           -- T-1
                          e1(19),            -- european equiv. of T-1
                          basicISDN(20),
                          primaryISDN(21),   -- proprietary serial
                          propPointToPointSerial(22),
                          ppp(23),
                          softwareLoopback(24),
                          eon(25),            -- CLNP over IP
                          ethernet-3Mbit(26),
                          nsip(27),           -- XNS over IP
                          slip(28),           -- generic SLIP
                          ultra(29),          -- ULTRA technologies
                          ds3(30),            -- T-3
                          sip(31),            -- SMDS
                          frame-relay(32)
                      }

原來這裡的 sip 是 SMDS (Switched Multimegabit Data Service) Interface Protocol。SMDS 是一種分封交換的資料服務,大多用在 DS-1 或 DS-3。SMDS 有一系列 Bellcore 的規範,其中 SIP 是 SMDS 網路設備和 CPE 間的協定,基於 IEEE metropolitan-area networks (MANs),也就是 IEEE 802.6 Distributed Queue Dual Bus (DQDB),橫跨 OSI 網路層以下 3 層。SIP Level 3 屬於網路層,最多可傳送 9188 位元組上層資料,加上信頭和信尾。SIP Level 2 屬於資料連接層,將 Level 3 封包切成多個 44 位元組片段,加上信頭和信尾組合成固定 53 位元組的封包 (跟 B-ISDN ATM Cell 長度一樣,格式不同)。SIP Level 1 屬於實體層,包含子層 PLCP 和 physical transmission medium,實際傳送 Level 2 封包。
參考:
  1. https://pdfs.semanticscholar.org/7f14/7740144de2b4db212707411d72b6eac33b6a.pdf
  2. http://92.61.226.39/pbook/smds.htm

星期日, 8月 25, 2019

OSI Reference Model

OSI (Open-data System Interface Reference Model) 把網路通訊的各種功能分為七個層級,由上而下分別為:
LayerOSIInternet Protocol Suit
7Application應用層ApplicationHTTP, FTP, ...
6Presentation表現層 (表達層)
5Session會談層 (會議層)
4Transport傳輸層 (傳送層)TransportTCP, UDP
3Network網路層NetworkIP, ICMP
2Data Link資料連結層LinkEthernet, ARP, Serial, ATM
1Physical實體層
作用:
  • 將網路功能模組化,便於說明以及元件開發。
  • 其它
Physical Layer:
Data Link Layer:
Network Layer:
Transport Layer:
Session Layer:
Presentation Layer:
Application Layer:
參考
  1. http://www.wunan.com.tw/www2/download/2S63_2版1刷_試閱_100.11.8.PDF 
  2. https://www.pcnet.idv.tw/pcnet/network/network_ip_model.htm 
  3. http://linux.vbird.org/linux_server/0110network_basic.php
  4. TCP/IP 分層協定參考 RFC-791 和 RFC-817  
  5. List of IP protocol numbers