Traffic Types and Encapsulation Flow

Key Takeaways

  • Unicast, broadcast, multicast, and anycast describe one-to-one, one-to-all, one-to-subscribers, and one-to-nearest delivery.
  • Broadcast is confined to a broadcast domain and does not cross routers by default; a DHCP relay forwards specific requests.
  • Multicast (224.0.0.0/4) targets only subscribed receivers and uses IGMP to manage group membership.
  • Encapsulation turns application data into segments, packets, frames, and bits; de-encapsulation reverses it.
  • For remote traffic the frame's destination MAC is the gateway, but the packet's destination IP stays the final host (unless NAT changes it).
Last updated: June 2026

Traffic Delivery Types

Networks move traffic in four delivery patterns, and the pattern changes addressing, switching, routing, bandwidth use, and how far a fault spreads. The N10-009 blueprint lists all four under Networking Concepts.

TypePatternExamplesBoundary behavior
UnicastOne sender to one receiverWeb, SSH, file transferRouted normally between networks
BroadcastOne sender to all hosts in a domainARP request, DHCP discoverStops at the router, stays in the VLAN
MulticastOne sender to subscribed receiversStreaming, OSPF, EIGRP, imagingNeeds IGMP and multicast-aware routing
AnycastOne address, served by the nearest nodePublic DNS (e.g., 8.8.8.8), CDNRouting picks the closest instance

Broadcast uses the all-ones destination (255.255.255.255 or MAC ff:ff:ff:ff:ff:ff). Multicast uses the 224.0.0.0/4 IPv4 range and relies on IGMP (Internet Group Management Protocol) so switches and routers only forward streams to ports with interested subscribers. IPv6 drops broadcast entirely and uses multicast instead, which is why ARP (a broadcast protocol) is replaced by Neighbor Discovery in IPv6.

The practical reason these distinctions matter is bandwidth and fault scope. A unicast video stream to 100 viewers sends 100 copies and saturates the source link, whereas a single multicast stream sends one copy that the network replicates only where subscribers exist, which is why live streaming, IP television, and ghost/imaging deployments rely on it. Broadcast is the bluntest pattern: every host must process the frame up to at least Layer 2, so a broadcast storm, a runaway loop flooding broadcasts, can paralyze an entire flat network and is a classic argument for segmenting with VLANs.

Anycast is subtler: many geographically separate servers share one IP, and routing simply delivers each client to the nearest instance, giving public DNS resolvers like 8.8.8.8 and content delivery networks their resilience and low latency.

Broadcast Domains and VLANs

A VLAN is one Layer 2 broadcast domain. Hosts in the same VLAN hear each other's broadcasts; hosts in different VLANs need a Layer 3 device (router or Layer 3 switch) for inter-VLAN routing.

DesignBroadcast impact
One flat LANBroadcasts reach every host; a storm hits everyone
Multiple VLANsEach broadcast is contained per VLAN
Router / L3 switch between VLANsRoutes unicast, blocks ordinary broadcast
DHCP relay (IP helper)Forwards specific DHCP broadcasts across the boundary

Encapsulation Flow, Step by Step

When a client opens an HTTPS site, the data is wrapped layer by layer for transit. Each layer adds its own header (Layer 2 also adds a trailer, the FCS).

StepActionInformation added
1Application creates dataHTTP request inside a TLS session
2Transport adds TCP headerSource port, destination port 443, sequence numbers
3Network adds IP headerSource IP, destination IP, TTL
4Data link adds frame header + trailerSource MAC, destination MAC, FCS
5Physical transmitsElectrical, optical, or radio symbols

The receiver reverses this (de-encapsulation): each layer reads its header, validates (for example, checks the FCS), and passes the payload up.

Local vs. Remote Delivery (High Yield)

This distinction trips up many candidates. The Layer 2 frame is rewritten at every hop, but the Layer 3 packet's destination IP stays the final host unless NAT rewrites it.

DestinationDestination MAC in frameDestination IP in packet
Same subnetThe receiver's own MACThe receiver's IP
Different subnetThe default gateway's MACThe final host's IP

Worked Scenario: ARP and Remote Traffic

A client at 192.168.10.25 wants to reach a server at 192.168.50.20. It compares the destination to its subnet mask, sees the server is remote, and uses ARP to learn the default gateway's MAC. It sends the frame to the gateway MAC, but the IP packet still names 192.168.50.20. The router strips the incoming frame, checks the packet, chooses a route, and builds a brand-new frame for the next hop, repeating until delivery.

Common Exam Traps

TrapCorrect reasoning
Broadcasts cross routers automaticallyRouters stop broadcasts; relays forward specific requests
MACs identify hosts end to endMACs are local to each Layer 2 segment and change per hop
Multicast equals broadcastMulticast reaches only subscribed receivers via IGMP
NAT rewrites every headerNAT rewrites addressing as configured, not the whole stack
A VLAN is a Layer 3 subnet by itselfA VLAN is Layer 2, usually paired with one IP subnet

Traffic type plus encapsulation explains why a host with a perfectly correct IP can still fail because of ARP, VLAN, gateway, ACL, NAT, or routing behavior.

Tie the concepts together with one mental model: the IP packet is the end-to-end "envelope" that survives the whole journey, while each frame is a "local courier" that exists only for one hop. At every router the courier is discarded and a new one created for the next segment, but the envelope's source and destination IPs stay constant. NAT is the one common exception, it rewrites the source IP (and often the source port) as traffic leaves a private network so return traffic can find its way back, and Port Address Translation lets an entire LAN share one public IP by tracking the unique source-port-to-internal-host mapping.

Layering this on top of the delivery types completes the picture the exam tests: knowing whether traffic is unicast, broadcast, or multicast tells you how far it spreads, while knowing the encapsulation flow tells you which header to inspect when it breaks. Together they let you reason from a symptom, "I can ping by IP but not by name," or "two VLANs cannot talk," straight to the responsible layer and the right tool.

Test Your Knowledge

A video server streams one feed that should reach only the dozen workstations that requested it, without flooding every host on the subnet. Which delivery type and helper protocol apply?

A
B
C
D
Test Your Knowledge

A host at 10.1.10.5 sends a packet to a server at 10.1.50.9 on a different subnet. What does the host place in the frame's destination MAC and the packet's destination IP?

A
B
C
D
Test Your KnowledgeOrdering

Order the encapsulation steps for a client sending HTTPS traffic, from top of the stack downward.

Arrange the items in the correct order

1
Transport layer adds TCP port information
2
Application creates data
3
Data link layer adds source and destination MAC
4
Physical layer transmits signals
5
Network layer adds source and destination IP
Test Your KnowledgeMulti-Select

Which statements about traffic and encapsulation are correct? Select all that apply.

Select all that apply

Broadcast traffic is normally contained within a broadcast domain
A router forwards ordinary Layer 2 broadcasts by default
For remote IP traffic, the frame destination is usually the default gateway MAC
The destination IP in the packet remains the final host unless changed by NAT
A VLAN is a Layer 2 broadcast domain