PracticeBlogFlashcardsEspañol

Traffic Types and Encapsulation Flow

Key Takeaways

  • Unicast, broadcast, multicast, and anycast describe different delivery patterns.
  • Broadcast stays within a broadcast domain and is controlled by routers and VLAN boundaries.
  • Multicast sends one stream to interested receivers and is common in efficient one-to-many designs.
  • Encapsulation explains how application data becomes transport segments, IP packets, frames, and physical signals.
  • Traffic type and encapsulation knowledge helps with VLAN, routing, wireless, and troubleshooting questions.
Last updated: April 2026

Traffic Delivery Types

Networks move traffic in different patterns. The delivery type affects addressing, switching, routing, bandwidth use, and troubleshooting scope.

Traffic typePatternCommon examplesImportant boundary
UnicastOne sender to one receiverWeb browsing, SSH, file transferRouted normally between networks
BroadcastOne sender to all hosts in local broadcast domainARP request, DHCP discoveryDoes not cross routers by default
MulticastOne sender to subscribed receiversStreaming, routing protocols, imaging, conferencingRequires multicast-aware design when routed
AnycastOne address served by multiple nodes, nearest/best path winsPublic DNS, CDN-style servicesRouting determines destination instance

Broadcast Domains and VLANs

A VLAN is a Layer 2 broadcast domain. Hosts in the same VLAN receive each other's broadcasts. Hosts in different VLANs need a Layer 3 device or service for inter-VLAN communication.

DesignBroadcast impact
One large flat LANBroadcasts reach many hosts and failures can have wide impact
Multiple VLANsBroadcasts are contained within each VLAN
Router or Layer 3 switch between VLANsRoutes unicast traffic but does not forward normal broadcasts
DHCP relayHelps DHCP cross a Layer 3 boundary in a controlled way

Encapsulation Flow

When a client opens an HTTPS site, the data is wrapped for transport across the network.

StepEncapsulation actionExample information added
1Application creates dataHTTP request inside TLS session
2Transport adds TCP headerSource port, destination port 443, sequence data
3Network adds IP headerSource IP, destination IP, TTL
4Data link adds frame header/trailerSource MAC, destination MAC, FCS
5Physical transmits signalsElectrical, optical, or radio symbols

On the receiving side, the process reverses. Each layer reads its header, validates what it needs, and passes the payload up.

Local Versus Remote Delivery

DestinationDestination MAC in the frameDestination IP in the packet
Same subnetReceiver host MACReceiver host IP
Different subnetDefault gateway MACFinal destination IP

This distinction is high yield. For remote traffic, the frame changes at each hop, but the packet destination IP remains the final host unless NAT changes it.

Scenario: ARP and Remote Traffic

A client at 192.168.10.25 wants to reach a server at 192.168.50.20. The client determines the server is not local, so it sends the frame to the default gateway's MAC address. The IP packet still names 192.168.50.20 as the destination. The router removes the incoming frame, checks the packet, chooses a route, and builds a new outgoing frame for the next hop.

Common Exam Traps

TrapBetter reasoning
Broadcasts cross routers automaticallyRouters stop normal broadcasts; relay services can forward specific requests
MAC addresses identify end-to-end remote hostsMAC addresses are local to each Layer 2 segment
Multicast is the same as broadcastMulticast targets subscribed receivers, not every host
NAT changes every headerNAT changes addressing information as configured, but not the basic encapsulation model
VLANs are Layer 3 subnets by themselvesVLANs are Layer 2 segments often paired with IP subnets

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

Test Your Knowledge

Which traffic type sends one stream to subscribed receivers rather than every host on the local network?

A
B
C
D
Test Your KnowledgeOrdering

Order the encapsulation process for a client sending HTTPS traffic.

Arrange the items in the correct order

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

Which statements 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 packet field remains the final remote host unless changed by NAT
A VLAN is a Layer 2 broadcast domain