Chapter 2 of 520% of exam

Network Implementation

Implementation turns designs into working infrastructure. This chapter covers switching features like VLANs and trunking, routing protocols and static routes, wireless deployment, and address translation. It emphasizes the configuration choices that produce reliable, scalable networks.

Switching and VLANs

A switch builds a MAC address table by learning the source MAC of every frame it receives, then forwards frames only out the port toward the destination, which eliminates the collisions and wasted bandwidth of old hubs. Each switch port is its own collision domain, while by default all ports share one broadcast domain. A virtual LAN (VLAN) subdivides that single broadcast domain into many logical segments, so hosts in VLAN 10 cannot reach hosts in VLAN 20 without a router or Layer 3 switch, even though they share the same physical hardware. VLANs improve security, contain broadcast traffic, and group users by function rather than location. Ports come in two roles: access ports carry a single VLAN to an end device, while trunk ports carry many VLANs between switches. Trunks tag each frame with the IEEE 802.1Q header, inserting a 4-byte tag that records the VLAN ID; the one exception is the native VLAN, whose frames cross the trunk untagged. Both ends of a trunk must agree on the native VLAN or traffic leaks between segments, a common misconfiguration and a security risk. Inter-VLAN routing is achieved with a router-on-a-stick using subinterfaces, or more commonly with a Layer 3 switch that has a switched virtual interface (SVI) per VLAN. Because redundant links between switches would otherwise create bridging loops that flood the network, the Spanning Tree Protocol (STP, IEEE 802.1D and its faster successor RSTP 802.1w) elects a root bridge, calculates the lowest-cost path, and blocks redundant links until they are needed. PortFast moves edge ports connecting a single host straight to forwarding, skipping listening and learning, while BPDU Guard protects those ports by shutting them down if they receive spanning-tree messages, defending against rogue switches. Additional features such as voice VLANs, VLAN Trunking Protocol for VLAN propagation, and jumbo frames round out practical switch deployment.

Tag trunks with 802.1Q
Trunk ports carry many VLANs, adding a VLAN tag to each frame except the native VLAN.
Change the native VLAN
Move untagged traffic off VLAN 1 and match the native VLAN on both trunk ends.
Prevent loops with STP
Spanning Tree blocks redundant paths and reactivates them if the primary link fails.
Use PortFast on edge ports
Edge ports connecting a single host can skip listening and learning to forward immediately.

Routing Fundamentals

Routers connect different IP networks and decide where to send each packet by consulting a routing table, choosing the most specific matching entry, known as the longest prefix match. Entries arrive three ways: directly connected networks the router knows from its own interfaces, static routes an administrator configures by hand, and dynamic routes learned from a routing protocol. The default route, written 0.0.0.0/0, is the catch-all used when no more specific route matches, and it typically points toward the internet edge. When multiple sources offer a route to the same network, administrative distance breaks the tie by trusting some sources over others; within a single protocol, a metric such as cost or hop count selects the best path. Dynamic routing protocols fall into families. Distance-vector protocols like RIP share their whole table with neighbors and pick paths by hop count, which is simple but limited to 15 hops and slow to converge. Link-state protocols like OSPF flood information about every link, build a full topology map, and compute shortest paths using cost based on bandwidth, converging quickly and scaling well within an organization. EIGRP is an advanced hybrid using a composite metric. These interior gateway protocols run inside one administrative domain, whereas the Border Gateway Protocol (BGP) is the path-vector protocol that stitches the entire internet together by exchanging routes between autonomous systems and applying policy. For N10-009 you should also understand first-hop redundancy: HSRP, VRRP, and GLBP let two or more routers share a single virtual gateway IP and MAC so clients keep a working default gateway if one router fails. Concepts like route summarization, which condenses many subnets into one advertisement, and asymmetric routing, where traffic takes different paths each direction, help explain real-world behavior. Understanding how the table is built and evaluated lets you predict the exact path a packet will take.

Understand the default route
0.0.0.0/0 matches any destination not covered by a more specific route.
Compare routing protocols
OSPF is link-state using cost, RIP is distance-vector using hop count, and BGP is path-vector.
Provide gateway redundancy
HSRP, VRRP, and GLBP present a virtual gateway IP for automatic failover.

Wireless Deployment

Wireless LANs extend the network over shared radio spectrum using access points (APs) that bridge Wi-Fi clients onto the wired network. Because radio is a shared, half-duplex medium, planning frequency, channels, and coverage is essential. Wi-Fi operates in three bands: 2.4 GHz offers the greatest range and best wall penetration but only three non-overlapping channels (1, 6, and 11) and heavy interference from other devices; 5 GHz offers many more channels and higher throughput with shorter range; and 6 GHz, added by Wi-Fi 6E, provides wide, clean spectrum for the newest devices. Standards to know include 802.11n (Wi-Fi 4), 802.11ac (Wi-Fi 5), and 802.11ax (Wi-Fi 6 and 6E), each raising throughput through wider channels, more spatial streams via MIMO and MU-MIMO, and better efficiency. Channel bonding combines adjacent channels for speed but consumes spectrum, so dense deployments often keep 2.4 GHz channels at 20 MHz. Coverage design balances AP placement, transmit power, and antenna type: omnidirectional antennas radiate in all directions for general coverage, while directional (yagi or parabolic) antennas focus energy for point-to-point links or long halls. A site survey and heat map reveal dead zones, co-channel interference, and overlap; the goal is roughly 15 to 20 percent cell overlap so clients roam smoothly. Security is non-negotiable. WPA2 uses AES-CCMP and a four-way handshake but is vulnerable to offline dictionary attacks on weak passphrases. WPA3 replaces the pre-shared key exchange with SAE (Simultaneous Authentication of Equals), resisting those attacks and adding forward secrecy. Enterprise mode pairs either with 802.1X and a RADIUS server for per-user credentials instead of a shared passphrase. Deployment models range from autonomous (standalone) APs to controller-based architectures where lightweight APs are managed centrally, and cloud-managed wireless that configures and monitors APs from a hosted dashboard. Guest isolation, captive portals, and band steering further tune real deployments.

Use non-overlapping 2.4 GHz channels
Channels 1, 6, and 11 avoid overlap and reduce interference in dense deployments.
Prefer WPA3 for security
WPA3 uses SAE to resist offline dictionary attacks better than WPA2.
Balance band selection
5 GHz offers speed and less congestion, while 2.4 GHz offers greater range.

Address Translation and DHCP

Because public IPv4 addresses are scarce, Network Address Translation (NAT) lets many hosts on private RFC 1918 space share public addresses at the network edge. Static NAT maps one private address to one public address, useful for a server that must be reachable from outside. Dynamic NAT draws from a pool of public addresses as hosts need them. Port Address Translation (PAT), also called NAT overload, is the most common form: it maps many private hosts to a single public IP by giving each conversation a unique source port, so the router can demultiplex return traffic back to the right inside host. NAT conserves addresses and hides internal structure, but it breaks protocols that embed IP addresses in their payload unless helpers or ALGs are used. The Dynamic Host Configuration Protocol (DHCP) automates client addressing through the DORA exchange: Discover, Offer, Request, and Acknowledge. A DHCP scope defines the pool of addresses a server can lease along with options such as default gateway, DNS servers, domain name, and lease duration. Administrators refine scopes with exclusions that hold back addresses for static assignment and reservations that always give a specific device the same address based on its MAC. Leases are temporary and renew at set intervals, and returning the address to the pool when a device leaves keeps utilization efficient. Because DHCP relies on broadcasts and routers do not forward broadcasts, clients on a remote subnet cannot reach a central DHCP server directly. A DHCP relay agent, configured as an IP helper address on the router interface, captures those broadcasts and forwards them as unicast to the server, then relays the reply back, letting one server address many subnets. Related services include DHCP snooping, a switch security feature that trusts only authorized ports to send DHCP offers and blocks rogue servers, protecting clients from receiving malicious gateway or DNS settings.

Use PAT to share one public IP
Port Address Translation distinguishes many private hosts by unique port numbers.
Define DHCP scopes carefully
Scopes set the lease pool, while reservations and exclusions refine assignments.
Deploy DHCP relays across subnets
IP helper addresses forward client broadcasts to a central DHCP server.

Physical and Software-Defined Infrastructure

Solid implementation still rests on disciplined physical infrastructure. Structured cabling organizes runs from work-area outlets through horizontal cabling to patch panels in a telecommunications room, then up backbone cabling to the main distribution frame, keeping moves and changes manageable. Power over Ethernet (PoE) delivers electrical power and data over the same twisted-pair cable, energizing IP phones, wireless access points, and cameras without a nearby outlet; the standards scale from 802.3af (about 15 W) to 802.3at PoE+ (about 30 W) to 802.3bt PoE++ (up to about 90 W), and power budgets on the switch must be planned so total draw does not exceed supply. Link aggregation, standardized as IEEE 802.3ad using the LACP control protocol, bundles several physical ports into one logical link, adding bandwidth and providing redundancy so a single member failure does not drop the connection. Environmental controls, labeling, cable management, and grounding all reduce the physical-layer faults that cause a surprising share of outages. Software-defined networking (SDN) reshapes how large networks are controlled by separating the control plane, which decides how traffic should flow, from the data plane, which actually forwards packets. A centralized controller holds a global view and programs the forwarding devices through southbound interfaces such as OpenFlow, while applications and orchestration systems talk to the controller through northbound APIs. This centralization enables rapid, consistent, policy-driven changes and underpins software-defined WAN (SD-WAN), which intelligently steers traffic across multiple transport links (MPLS, broadband, LTE) based on application requirements and real-time link quality. Related concepts include network function virtualization, which runs firewalls, load balancers, and routers as software on standard servers, and infrastructure as code, which provisions and versions the whole environment from templates. Together, robust hardware and programmable control give modern networks capacity, resilience, and manageability that manual per-device configuration cannot match.

Deliver power with PoE
Power over Ethernet feeds phones, cameras, and APs over the data cable.
Aggregate links with LACP
Bundling ports increases bandwidth and provides redundancy if a member fails.
Separate control and data planes
SDN centralizes forwarding decisions in a controller that programs the data plane.
Test your knowledge
Practice questions on Network Implementation
Practice now →

Last updated: September 2026

Studying in order?

Practice stays free. The full CompTIA Network+ (N10-009) study guide is the material itself, taught start to finish — a downloadable PDF + EPUB you keep.

Get the book — $14.99
Report