2019年8月26日 星期一

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

沒有留言:

張貼留言

SIP header Via

所有 SIP 訊息 都要有 Via,縮寫 v。一開始的 UAC 和後續途經的每個 proxy 都會疊加一個 Via 放傳送的位址,依序作為回應的路徑。 格式 sent-protocol sent-by [ ;branch= branch ][ ; 參數 ...] s...