three kinds of traffic segmentation functions on a switch

企業在區網內會使用較高階的交換器,主要看重其3種分隔流量的功能:

  1. 針對1對1單播訊框 (unicast frame),可依照訊框的去處網卡住址,又稱媒介存取控制 (mac) 住址,決定訊框將轉送到交換器的哪一個出口,以提升交換器同時間的會談 (session) 數量。
  2. 針對1對多廣播訊框 (broadcast frame),可依照延伸樹 STP 協定,決定交換器的哪一個連接埠 (switch port) 須暫時性開啟或關閉傳送功能,以防止廣播風暴 (broadcast storm)。
  3. 擁有虛擬區網 VLAN 功能,可跨越互連的交換器,將訊框轉送給所有相同 VLAN 的接收者,不擔心資料會外洩給其他 VLAN 用戶看到。

以上相關功能可參考下文進一步說明:

  1. Blogger: why use high-end switches in an enterprise LAN environment?
  2. Blogger: why the spanning tree protocol (STP) is needed in a higher-end switch?
  3. Blogger: why virtual local area networks (VLANs) are often used in an enterprise network?

Linked Lists from C to Java

「 C Pointer Concepts in Java 」一文提到 Java 沒有指標型別 (pointer type) ,但有參照型別 (reference type) 的設計。在遇到須要處理鏈結清單 (linked list)、圖形 (graph) 等資料結構時,Java ...

總網頁瀏覽量