Network+ Network Infrastructure Study Guide
Overview
This study guide covers the core components of network infrastructure as tested on the CompTIA Network+ exam. Topics include network devices and their OSI layer functions, physical and logical topologies, cabling standards, network design models, and VLAN/switching concepts. Mastering these fundamentals is essential for understanding how modern networks are built, segmented, and managed.
---
Network Devices
Summary
Network devices operate at specific OSI layers and perform distinct functions. Understanding which layer a device operates at and how it makes forwarding decisions is critical for both the exam and real-world troubleshooting.
Key Concepts
How a CAM Table Works
1. Frame arrives on a switch port.
2. Switch records the source MAC address and port in the CAM table.
3. Switch looks up the destination MAC address.
4. If found: Forwards the frame only to that port.
5. If not found: Floods the frame to all ports except the ingress port (unknown unicast flooding).
Key Terms
Watch Out For
> ⚠️ Hub vs. Switch confusion: Hubs are Layer 1 and create ONE collision domain for all ports. Switches are Layer 2 and give EACH port its own collision domain — this is a very common exam trick.
> ⚠️ Switch vs. Router: Switches use MAC addresses (Layer 2); routers use IP addresses (Layer 3). A multilayer switch can do both — don't confuse it with a plain Layer 2 switch.
> ⚠️ CAM table flooding is normal behavior for unknown destinations, but it is also exploited in MAC flooding attacks to force a switch to act like a hub.
---
Network Topologies
Summary
Topology describes how network devices are connected. The exam distinguishes between physical topology (actual wiring) and logical topology (how data flows). Modern enterprise designs have evolved toward spine-and-leaf architectures for data centers.
Physical vs. Logical Topology
| Concept | Description |
|---|---|
| Physical Topology | The actual physical layout and cable runs |
| Logical Topology | How data actually flows, regardless of physical layout |
> Classic Example: Modern Ethernet LANs use a physical star (devices connect to a central switch) but function as a logical bus (all devices share the same broadcast domain).
Topology Types
Spine-and-Leaf Architecture
Key Terms
Watch Out For
> ⚠️ Physical star ≠ logical star. Most Ethernet networks are physical star but logical bus. Know both for any given scenario.
> ⚠️ Spine-and-leaf vs. hierarchical model: Spine-and-leaf is a data center architecture. The three-tier hierarchical model (Access/Distribution/Core) is for campus/enterprise networks. Don't mix them up.
---
Cabling and Physical Media
Summary
Physical media defines the maximum distance, speed, and interference characteristics of a network connection. The exam tests specific cable standards, distances, connector types, and cable ratings.
Copper Cabling Standards
| Standard | Cable Type | Max Distance |
|---|---|---|
| 1000BASE-T (Gigabit Ethernet) | Cat5e or higher UTP | 100 meters |
| 100BASE-TX (Fast Ethernet) | Cat5 or higher UTP | 100 meters |
| 10GBASE-T | Cat6a UTP | 100 meters |
Fiber Optic Cabling
| Feature | Single-Mode Fiber (SMF) | Multimode Fiber (MMF) |
|---|---|---|
| Core size | 8–10 microns | 50–62.5 microns |
| Light paths | One (single beam) | Multiple (bouncing light) |
| Distance | Up to 100km+ | Up to ~2km |
| Cost | Higher | Lower |
| Use case | Long-haul, WAN, campus backbone | Short distances, within buildings |
Fiber Connectors
Crosstalk Types
| Type | Definition |
|---|---|
| NEXT (Near-End Crosstalk) | Interference at the transmitting end — strong signal bleeds into adjacent pairs |
| FEXT (Far-End Crosstalk) | Interference measured at the far end of the cable |
| ALIEN Crosstalk | Interference between adjacent cables (not pairs within the same cable) |
Plenum vs. Non-Plenum Cable
Key Terms
Watch Out For
> ⚠️ 100-meter rule: The 100m maximum applies to copper UTP Ethernet segments regardless of speed (100M, 1G, or 10G with Cat6a). This includes up to 90m of permanent link + 10m of patch cables.
> ⚠️ SMF vs. MMF: SMF = smaller core = LONGER distance. Students often assume bigger core = longer distance. Think of it as: one focused beam (SMF) travels farther than multiple scattered beams (MMF).
> ⚠️ Plenum vs. Riser: Plenum is required for horizontal air-handling spaces. Riser is for vertical runs between floors. Plenum cable CAN substitute for riser; riser cable CANNOT substitute for plenum.
---
Network Design and Architecture
Summary
Network design follows structured models that separate functions into layers or zones. Understanding the three-tier hierarchical model, DMZ placement, segmentation benefits, and out-of-band management are all exam-tested concepts.
Three-Tier Hierarchical Design Model
```
[ Core Layer ] — High-speed backbone; connects distribution layers
|
[ Distribution Layer ] — Aggregates access traffic; enforces routing policies, ACLs, QoS
|
[ Access Layer ] — Connects end devices (PCs, phones, printers) to the network
```
| Layer | Primary Function | Typical Devices |
|---|---|---|
| Core | Fast backbone transport | High-speed routers, multilayer switches |
| Distribution | Policy enforcement, aggregation | Multilayer switches, routers |
| Access | End-device connectivity | Layer 2 switches, WAPs |
DMZ Architecture
```
Internet → [Firewall 1] → [DMZ: Web/Email Servers] → [Firewall 2] → Internal LAN
```
Network Segmentation
Out-of-Band Management
Key Terms
Watch Out For
> ⚠️ Distribution layer responsibilities: This layer is commonly tested. It handles routing between VLANs, policy enforcement (ACLs), and traffic aggregation — not just "connecting to the core."
> ⚠️ DMZ misconception: The DMZ does not protect the internet from your network. It protects your internal network from compromised DMZ servers. Servers in the DMZ should never have direct access to the internal LAN.
---
VLANs and Switching Concepts
Summary
VLANs logically segment a physical network, and understanding how frames are tagged, how ports are configured, and how loops are prevented is essential for the Network+ exam. This is one of the highest-density topic areas on the exam.
VLANs Fundamentals
- Reduces broadcast domain size (less broadcast overhead)
- Improves security through segmentation
- Enables logical grouping by department or function without physical recabling
Access Ports vs. Trunk Ports
| Feature | Access Port | Trunk Port |
|---|---|---|
| VLANs carried | Single VLAN | Multiple VLANs |
| Frame tagging | Untagged | 802.1Q tagged |
| Typical connection | End devices (PCs, printers) | Switch-to-switch, switch-to-router |
802.1Q VLAN Tagging
Native VLAN
Spanning Tree Protocol (STP)
#### The Problem STP Solves
Redundant links between switches create switching loops, causing:
#### STP Operation (802.1D)
1. Elect a Root Bridge (switch with lowest Bridge ID).
2. Each non-root switch finds its Root Port (best path to root bridge).
3. Each network segment selects a Designated Port (best port for that segment).
4. All remaining redundant ports are placed in Blocking state.
#### STP vs. RSTP
| Feature | STP (802.1D) | RSTP (802.1w) |
|---|---|---|
| Convergence time | Up to 50 seconds | ~1–6 seconds |
| Method | Fixed timers | Active negotiation between switches |
| Port states | 5 states | 3 states (Discarding, Learning, Forwarding) |
Key Terms
Watch Out For
> ⚠️ Native VLAN = security risk. Any scenario involving VLAN 1 as native on a trunk port is a red flag. Best practice is to change it to an unused VLAN.
> ⚠️ STP convergence time: STP (802.1D) can take up to 50 seconds to converge. RSTP (802.1w) converges in seconds. Know which is which — the exam will test this difference.
> ⚠️ 4094 VLANs, not 4096: The 12-bit VLAN ID field theoretically allows 4096 values, but VLAN 0 and VLAN 4095 are reserved. **Usable VLANs = 1–4094