Broadcast Domain

  • In Ethernet networks, some messages are meant for every device on the local network.
    These are called broadcast frames, messages that tell all nodes, “listen to me.”

    But how far can such a broadcast actually travel?
    That depends on the broadcast domain, the logical portion of the network where a broadcast frame can reach every other device.

    Think of it as the “shouting range” of your network; everyone within that area hears the same message.

    Let’s take a simple example to visualize it.

    Diagram illustrating the broadcast domain definition with PC1 sending a broadcast frame through switches SW1, SW2, and SW3, reaching PC2 and PC3.

    Figure 1 – PC1 broadcasts an ARP request to all devices

    PC1 sends an ARP request, a broadcast message used to discover another host’s MAC address.
    The frame is sent with the destination MAC address FF:FF:FF:FF:FF:FF, which literally means “to all devices on this LAN.”

    • Since only switches are involved, each one forwards the frame out of all ports except the one it came from.
      This behavior is part of how Layer 2 devices handle broadcast traffic inside a network segment.

    As a result, the message reaches every connected device, even those located behind other switches.
    All these devices share the same broadcast domain, a single Layer 2 boundary where broadcast traffic can flow freely.

    Answer the question below