Ethernet Bridge Function and Operation | Generated by AI

Home 2025.12

Question: What is an Ethernet bridge? How does it work?

Answer:

An Ethernet bridge (also known as a network bridge) is a Layer 2 (Data Link layer) networking device that connects multiple Ethernet network segments into a single logical network. It filters and forwards Ethernet frames based on MAC addresses, reducing unnecessary traffic and collisions compared to hubs or repeaters.

Key Characteristics

How It Works

Ethernet bridges use a process called transparent bridging (IEEE 802.1D standard), involving learning, forwarding, filtering, and flooding:

  1. Learning:
    • The bridge maintains a forwarding table (MAC address table or CAM table).
    • When a frame arrives on a port, the bridge records the source MAC address and the incoming port in its table.
    • Entries age out after a timeout (typically 300 seconds) if not refreshed.
  2. Forwarding/Filtering:
    • For an incoming frame, the bridge checks the destination MAC address.
    • If the destination MAC is in the table and on a different port, it forwards the frame only to that port.
    • If the destination MAC is on the same incoming port, it filters (drops) the frame—no need to forward.
    • This reduces network congestion by sending traffic only where needed.
  3. Flooding:
    • If the destination MAC is unknown, a broadcast, or multicast, the bridge floods the frame to all ports except the incoming one.
  4. Loop Prevention:
    • Uses Spanning Tree Protocol (STP) to detect and block redundant paths, preventing broadcast storms in looped topologies.

Example

In practice, bridges were common in early Ethernet networks but have been largely replaced by switches, which perform the same functions faster and with more ports.

References:


Back

x-ai/grok-4.1-fast

Donate