Sections
Network+ covers the knowledge to set up, manage, and troubleshoot networks — from understanding IP addresses to configuring wireless security to knowing how the internet works. This section builds from absolute zero.
The OSI (Open Systems Interconnection) model is a conceptual framework dividing networking into 7 layers. It's not physical — it's a thinking tool. You'll use it constantly when troubleshooting by working from the bottom up.
THE 7 LAYERS (memorize: "Please Do Not Throw Sausage Pizza Away"):
Layer 1 — PHYSICAL The actual physical medium: cables, connectors, electrical signals, light pulses. Devices: cables, hubs, network adapters (the physical chip). Troubleshooting: Is the cable plugged in? Is the link light on? Is the cable damaged?
Layer 2 — DATA LINK How data moves between devices on the same network segment. Uses MAC addresses (hardware addresses burned into every network adapter). Devices: switches (forward frames based on MAC address), wireless access points. Troubleshooting: VLAN misconfiguration, duplicate MAC addresses, spanning tree issues.
Layer 3 — NETWORK Routing data between different networks using IP addresses. Devices: routers. Troubleshooting: wrong IP address, wrong subnet mask, missing/wrong default gateway, routing errors.
Layer 4 — TRANSPORT End-to-end communication between applications. TCP (reliable) and UDP (fast). Port numbers live here. Troubleshooting: wrong port, firewall blocking a port, TCP connection not completing.
Layer 5 — SESSION Manages the connection (opening, maintaining, closing). Mostly handled automatically.
Layer 6 — PRESENTATION Data formatting, encryption, compression. SSL/TLS operates here. Troubleshooting: certificate errors, encryption mismatches.
Layer 7 — APPLICATION The actual application protocols users interact with. Protocols: HTTP (web), SMTP (email), DNS (name resolution), FTP (file transfer). Troubleshooting: application misconfiguration, authentication failures, DNS resolution.
THE KEY TROUBLESHOOTING RULE: Start at Layer 1. Work up. Is the cable plugged in? (Layer 1) → Does it have a valid IP? (Layer 3) → Is the right port open? (Layer 4) → Is the application configured correctly? (Layer 7) 90% of problems are solved by Layer 3 or below.
IP addresses and subnets are the foundation of networking. The concepts are logical once you see how the system works.
IPv4 ADDRESSES Four numbers (0-255) separated by dots: 192.168.1.50 32 bits total. Each group of numbers = 8 bits = one "octet."
PRIVATE vs PUBLIC:
10.0.0.0 – 10.255.255.255 (10.0.0.0/8) — large range, enterprise environments
172.16.0.0 – 172.31.255.255 (172.16.0.0/12) — medium range
192.168.0.0 – 192.168.255.255 (192.168.0.0/16) — most common, homes and small offices
Public addresses: everything else. Globally unique. Routed on the internet.
SUBNET MASKS AND CIDR: The subnet mask defines which part of an IP is the "network" (same for all devices on the same network) and which part is the "host" (unique per device).
255.255.255.0 = /24 = first 24 bits are network, last 8 bits are host.
Example: 192.168.1.50 /24 Network: 192.168.1 (must match for devices to communicate directly) Host: 50 (this specific device) Range: 192.168.1.1 – 192.168.1.254 (254 usable addresses) Network address: 192.168.1.0 (can't assign to a device) Broadcast: 192.168.1.255 (can't assign to a device)
CALCULATING USABLE HOSTS: Formula: 2^(32 minus prefix length) minus 2 = usable hosts /24: 2^8 − 2 = 254 /25: 2^7 − 2 = 126 /26: 2^6 − 2 = 62 /30: 2^2 − 2 = 2 (used for point-to-point links between routers)
SAME SUBNET TEST: For /24: do the first three octets match? 192.168.1.50 and 192.168.1.100 → same subnet, communicate directly 192.168.1.50 and 192.168.2.50 → different subnet, must go through a router
Not all network communication is the same. Sometimes you need every byte to arrive perfectly. Sometimes you need speed more than perfection. TCP and UDP serve these different needs.
TCP (Transmission Control Protocol) Connection-oriented. Before sending data, establishes a connection via three-way handshake: SYN → (I want to connect) SYN-ACK ← (I'm ready, and I acknowledge your request) ACK → (Acknowledged, we're connected)
During the connection:
Every packet is numbered so they can be reassembled in order
The receiver acknowledges every packet
Any unacknowledged packet is retransmitted (reliable delivery)
Errors are detected and corrected
USE TCP WHEN: every byte must arrive correctly and in order. Applications: HTTPS (web), email (SMTP, IMAP), file transfers (FTP), Remote Desktop (RDP), Active Directory authentication.
UDP (User Datagram Protocol) Connectionless. No handshake. Just sends packets without waiting for acknowledgment. Faster: no overhead from acknowledgments and retransmission. Risk: packets can be lost, duplicated, or arrive out of order.
USE UDP WHEN: speed matters more than perfect delivery. Applications: DNS queries (fast question/answer), VoIP calls (tiny glitch better than call delay), video streaming (dropped frame better than stalled video), online gaming (input lag is worse than minor glitches).
PORT NUMBERS — routing data to the right application: When a packet arrives, the port number tells the OS which application should receive it.
Key ports to memorize:
20/21 — FTP (file transfer)
22 — SSH (encrypted remote terminal)
25 — SMTP (sending email between servers)
53 — DNS (name resolution) — UDP for queries, TCP for large responses
80 — HTTP (unencrypted web)
110 — POP3 (receiving email, older)
143 — IMAP (receiving email, modern, keeps mail on server)
389 — LDAP (Active Directory queries)
443 — HTTPS (encrypted web)
636 — LDAPS (encrypted LDAP)
3389 — RDP (Windows Remote Desktop)
5985/5986 — WinRM (PowerShell remoting)
Three interconnected topics that come up constantly in Network+ and in real enterprise environments.
VLANs (Virtual Local Area Networks) A VLAN logically divides a physical switch into multiple isolated networks without buying separate physical hardware. Devices in different VLANs can't communicate with each other without going through a router — even if they're plugged into the same physical switch.
Why VLANs matter:
Security: isolate sensitive systems. An attacker who compromises a user workstation on VLAN 10 can't directly reach servers on VLAN 30.
Organization: separate departments (Finance, Engineering, Guest Wi-Fi) without separate switches
Broadcast control: limits how far broadcast traffic spreads (improves performance)
Trunking (802.1Q): a single cable between switches carrying traffic for multiple VLANs. Each frame is "tagged" with a VLAN ID so the receiving switch knows which VLAN it belongs to.
WIRELESS SECURITY STANDARDS:
WEP — completely broken. Never use.
WPA — also broken. Never use.
WPA2 — current standard. Uses AES encryption. Vulnerable to offline dictionary attacks on weak passwords.
WPA3 — modern. Uses SAE instead of PSK. Prevents offline dictionary attacks. Provides forward secrecy (past traffic can't be decrypted even if the password is later discovered).
2.4GHz vs 5GHz:
2.4GHz: longer range, more wall penetration, more interference (microwaves, Bluetooth, other Wi-Fi), only 3 non-overlapping channels (1, 6, 11)
5GHz: shorter range, less interference, many non-overlapping channels, faster speeds at close range
6GHz (Wi-Fi 6E): newest, even less interference, requires newer hardware
NETWORK SECURITY DEVICES:
Firewall: allows/blocks traffic based on rules (IP, port, protocol). Network firewall protects the whole perimeter; Windows Defender Firewall protects individual machines.
IDS (Intrusion Detection System): monitors traffic passively and ALERTS when suspicious patterns detected. Does NOT block.
IPS (Intrusion Prevention System): sits inline and ACTIVELY BLOCKS suspicious traffic. False positives can block legitimate traffic.
DMZ (Demilitarized Zone): isolated network segment hosting public-facing servers (web servers, email). If a DMZ server is compromised, internal network remains protected.
The OSI model gives you the framework. Here's the practical application of it.
THE BOTTOM-UP APPROACH — always start here:
LAYER 1 (Physical): Is it plugged in? Is the link light on the network card and on the switch port? For wireless: is the adapter enabled? Is airplane mode off? For cable: try a different cable, try a different port on the switch.
LAYER 2 (Data Link): For wireless: is the correct SSID selected? Is the security type correct (WPA2/WPA3)? Check Device Manager for driver issues (yellow ! on network adapter).
LAYER 3 (Network) — MOST COMMON PROBLEM LOCATION:
169.254.x.x = APIPA = DHCP failed = nothing will work until fixed
Valid IP, wrong subnet = can only reach some devices
Correct IP and subnet = layer 3 is likely fine
Test gateway reachability: ping 192.168.1.1 (or your gateway IP)
Fails = can't reach the router. Layer 1/2 problem or gateway is down.
Succeeds = continue up the stack
Test internet by IP (bypasses DNS): ping 8.8.8.8
Fails = internet connection is down. Check router's WAN connection.
Succeeds = internet works, but...
Test DNS: ping google.com OR nslookup google.com
Fails = DNS problem. Check configured DNS servers (ipconfig /all). Try manually setting DNS to 8.8.8.8 as a test.
Succeeds = internet and DNS working fine.
LAYER 4 (Transport — port issues):
Fails = the port is blocked by firewall, or the service isn't running on that port
Check Windows Firewall on both machines
Check the service is actually running (services.msc)
COMMON QUICK FIXES: ipconfig /release then /renew — get new DHCP lease (fixes stale IP or APIPA) ipconfig /flushdns — clear DNS cache (fixes DNS returning wrong results) netsh winsock reset — resets Windows networking stack (fixes some hard-to-diagnose connectivity issues, requires restart)
Before diving into specific technologies, Network+ expects fluency with the basic vocabulary describing how networks are physically and logically arranged, and the different scales of network these arrangements apply to.
PHYSICAL TOPOLOGIES — HOW DEVICES ARE ACTUALLY CONNECTED: Star topology — every device connects to a central point (a switch), the dominant topology in virtually all modern wired networks. If one device's cable fails, only that device loses connectivity; the rest of the network keeps working. Mesh topology — every device connects directly to every other device (full mesh) or to several others (partial mesh), providing genuine redundancy since multiple paths exist between any two points, but requiring meaningfully more cabling and configuration complexity as the network grows. Bus topology — a single shared cable that every device connects to, largely a legacy topology today. A single cable break can take down the entire segment, which is a large part of why star topology became the dominant standard instead. Ring topology — devices connect in a circular chain, with data traveling around the ring. Also largely legacy today, though ring-based concepts persist in some specialized industrial and telecommunications contexts.
LOGICAL TOPOLOGY VS. PHYSICAL TOPOLOGY: A network's physical topology (how cables are actually run) doesn't always match its logical topology (how data actually flows). A network that's physically wired as a star (every device cabled to a central switch) can still logically behave like a bus if the switch is configured to broadcast traffic to every port — understanding this distinction matters for correctly interpreting network diagrams and troubleshooting unexpected traffic patterns.
NETWORK TYPES BY SCALE: PAN (Personal Area Network) — a very small-scale network connecting devices within a few feet, like a Bluetooth connection between a phone and headphones. LAN (Local Area Network) — a network confined to a single location, like one office building or floor. WAN (Wide Area Network) — connects multiple geographically separated LANs together, commonly the internet itself, or a private WAN connecting an organization's branch offices. MAN (Metropolitan Area Network) — spans a larger geographic area than a LAN but smaller than a typical WAN, roughly city-sized, less commonly referenced today than LAN and WAN but still a recognized, testable term. CAN (Campus Area Network) — connects multiple buildings within a defined campus area, like a university or corporate campus with several buildings.
SD-WAN — SOFTWARE-DEFINED WAN, A MODERN EVOLUTION: Rather than traditional WAN connections relying purely on dedicated, expensive point-to-point links, SD-WAN uses software to intelligently manage and route traffic across multiple types of underlying connections (broadband internet, MPLS, cellular) simultaneously, dynamically choosing the best available path for a given type of traffic — genuinely more flexible and often significantly less expensive than traditional WAN architectures relying purely on dedicated leased lines.
WHY TOPOLOGY VOCABULARY MATTERS BEYOND JUST EXAM TERMINOLOGY: Understanding these topology and scale distinctions gives you a shared, precise vocabulary for describing a network's actual structure to colleagues, vendors, and documentation — saying "we need a redundant mesh connection between our two data centers" communicates something genuinely specific and actionable, in a way that vaguer language wouldn't.
This platform's A+ Hardware topic covers cabling at a general hardware level. Network+ expects deeper, more exam-specific fluency with cable categories, connector types, and the tools used to test and troubleshoot physical cabling.
TWISTED PAIR CATEGORY RATINGS — KNOWING THE SPECIFIC NUMBERS: Cat5e supports up to 1 Gbps at up to 100 meters. Cat6 supports up to 10 Gbps but only up to about 55 meters at that speed (dropping to 100 meters at 1 Gbps). Cat6a extends 10 Gbps support to the full 100 meters through improved shielding against crosstalk. Cat7 and Cat8 push even higher speeds over shorter distances, used in specific data center and high-performance contexts. Network+ expects you to know these specific speed/distance tradeoffs, not just that "higher category numbers are better."
COAXIAL CABLE — STILL RELEVANT IN SPECIFIC CONTEXTS: Coax uses a single central conductor surrounded by shielding, historically the standard for early Ethernet (now legacy) and still commonly used for cable internet/TV connections into a building, terminating at a cable modem before handing off to standard twisted-pair Ethernet for the rest of the internal network.
FIBER CONNECTOR TYPES — RECOGNIZING THEM BY SIGHT: LC (Lucent Connector) — small form factor, has become the dominant connector type in newer fiber installations. SC (Subscriber Connector) — larger, square-shaped, common in older installations. ST (Straight Tip) — a round, bayonet-style connector, largely legacy today but still occasionally encountered. MTRJ — another compact connector type, less common than LC but still tested on the exam.
SINGLE-MODE VS. MULTI-MODE FIBER — THE PRACTICAL DIFFERENCE: Single-mode fiber uses a narrow core and a laser light source, supporting genuinely long distances (kilometers) appropriate for connecting between buildings or to an ISP. Multi-mode fiber uses a wider core and LED light sources, cheaper but limited to shorter distances, appropriate for within-building or within-data-center connections.
CABLE TESTING TOOLS — WHAT EACH ONE ACTUALLY DOES: A cable tester verifies a cable's basic continuity and correct pin-out wiring — confirming each wire is actually connected correctly end to end, catching a badly terminated or damaged cable. A toner probe (tone generator and probe) helps physically trace a specific cable's actual path, genuinely useful when working with an unlabeled bundle of cables and needing to identify which specific cable corresponds to which specific port or wall jack. A cable certifier goes further than a basic tester, verifying a cable actually meets its rated category's specific performance standards (like confirming a cable genuinely performs to true Cat6 specification, not just that it's technically continuous end to end). An OTDR (Optical Time-Domain Reflectometer) is used specifically for fiber cable testing, capable of identifying the precise location of a break or a significant signal loss point along a fiber run.
PLENUM VS. RISER CABLE RATINGS — A SAFETY, NOT PERFORMANCE, DISTINCTION: Plenum-rated cable has fire-resistant, low-smoke jacketing, required by building code for cable run through air-handling spaces (like above a drop ceiling used for HVAC airflow) specifically because burning cable in these spaces can spread toxic smoke rapidly throughout a building's ventilation system. Riser-rated cable is a step down, appropriate for vertical runs between floors but not for plenum spaces. Using the wrong rating in the wrong location is a genuine building code violation, not just a suboptimal choice.
WHY THIS SPECIFIC KNOWLEDGE MATTERS FOR NETWORK+: The exam expects you to correctly match a given scenario (long-distance building-to-building connection, high-speed data center run, tracing a mystery cable) to the appropriate cable type, connector, and testing tool — genuinely practical knowledge for real cable installation and troubleshooting work, not purely abstract exam trivia.
Ethernet naming conventions and the concepts of collision and broadcast domains are foundational Network+ material — understanding them clearly makes sense of both cable/speed selection and switch behavior more broadly.
DECODING ETHERNET STANDARD NAMES: Names like 100BASE-TX or 1000BASE-T follow a consistent pattern: the number indicates speed in Mbps (100, 1000 for Gigabit), BASE indicates baseband signaling (the whole cable carries one signal, as opposed to broadband which can carry multiple signals simultaneously), and the final letters indicate the medium (T for twisted pair, more specific suffixes like SX or LX for different fiber types and distances). Once you recognize this pattern, an unfamiliar standard's name itself tells you most of what you need to know about it.
COLLISION DOMAINS — A LARGELY HISTORICAL BUT STILL-TESTED CONCEPT: A collision domain is a network segment where data collisions can occur if two devices transmit simultaneously — relevant to older shared-medium Ethernet (hubs, coaxial bus networks) where every device on the segment shared the same physical medium. Modern switched networks using full-duplex connections have effectively eliminated collision domains in practice (each switch port is its own separate collision domain with just one device), but the concept remains tested since understanding it clarifies exactly why switches were such a significant improvement over hubs.
BROADCAST DOMAINS — STILL GENUINELY RELEVANT TODAY: A broadcast domain is the set of devices that receive a broadcast frame sent by any one device within it — unlike collision domains, broadcast domains remain fully relevant in modern switched networks. All devices on the same VLAN share one broadcast domain; a router (or a Layer 3 switch) is what separates one broadcast domain from another, since routers don't forward broadcast traffic between different networks.
WHY LARGE BROADCAST DOMAINS ARE A REAL PROBLEM: As covered in this platform's Networking and CCNA topics, a very large broadcast domain means broadcast traffic (ARP requests, DHCP discovery broadcasts) potentially reaches an enormous number of devices, consuming bandwidth and processing overhead across all of them even though the broadcast is only actually relevant to one specific intended recipient. This is the core underlying reason VLANs exist — segmenting a large network into smaller broadcast domains genuinely improves both performance and security.
HALF-DUPLEX VS. FULL-DUPLEX — REVISITED WITH DOMAIN CONTEXT: Half-duplex communication (only one direction at a time, historically necessary on shared-medium networks to avoid collisions) versus full-duplex (simultaneous two-way communication, standard on modern switched connections where each port is its own dedicated collision domain with no contention). The duplex mismatch troubleshooting concept covered elsewhere on this platform directly connects to this collision domain history — a mismatch essentially confuses one side into behaving as if it's still on a shared, collision-prone medium.
CSMA/CD — THE HISTORICAL COLLISION-AVOIDANCE MECHANISM: Carrier Sense Multiple Access with Collision Detection was the mechanism older shared-medium Ethernet used to manage collisions — a device would "listen" before transmitting, and if a collision was detected anyway, both devices would back off and retry after a random delay. Full-duplex switched Ethernet has made CSMA/CD largely obsolete in practice, but it remains a testable historical concept that explains why the transition to switched networks was such a genuine improvement.
WHY UNDERSTANDING THIS HISTORY MATTERS FOR MODERN TROUBLESHOOTING: Even though collision domains are largely a non-issue on modern switched networks, understanding WHY switches solved this problem — by giving every device its own dedicated collision domain — clarifies why a hub (which still creates a genuine shared collision domain across every connected device) is a meaningfully worse choice than a switch for essentially any modern use case, and why encountering an old hub in a legacy environment should generally be treated as a red flag worth investigating and replacing.
This platform's CCNA topic covers routing configuration specifically on Cisco IOS. Network+ expects a more vendor-neutral, conceptual understanding of routing — the underlying principles that apply regardless of which specific vendor's equipment you're actually working with.
WHAT A ROUTING TABLE FUNDAMENTALLY CONTAINS: Every router maintains a routing table listing known destination networks and the corresponding next-hop or exit interface to reach each one — conceptually the same regardless of vendor, even though the exact command syntax to view or configure it varies between different platforms.
STATIC VS. DYNAMIC ROUTING — THE CONCEPTUAL TRADEOFF: Static routes are manually configured and don't automatically adapt to network changes — simple and predictable, but require manual updates whenever the network topology genuinely changes. Dynamic routing protocols automatically discover and adapt to changes, trading some of that predictability for genuine scalability in larger, more complex, more frequently-changing networks.
DISTANCE-VECTOR VS. LINK-STATE ROUTING PROTOCOLS — THE CONCEPTUAL FAMILIES: Distance-vector protocols (like the older RIP) make routing decisions based primarily on hop count, with each router sharing only its own routing table with directly connected neighbors, resulting in comparatively slower convergence after a topology change. Link-state protocols (like OSPF, covered in real depth in this platform's CCNA topic) build a complete map of the network topology and calculate optimal paths independently, generally converging faster and scaling better in larger networks.
ADMINISTRATIVE DISTANCE — THE VENDOR-NEUTRAL CONCEPT: As covered specifically for Cisco IOS in the CCNA topic, Administrative Distance is the general concept of a trustworthiness ranking used when a router learns about the same destination from multiple sources — this concept itself is vendor-neutral, even though the exact specific default AD values assigned to different protocols can vary somewhat between different vendors' equipment.
DEFAULT ROUTE — THE ROUTE OF LAST RESORT: A default route (represented as 0.0.0.0/0 in most implementations) is what a router uses when no more specific route matches a given destination — the vendor-neutral concept underlying what's typically how most networks route general internet-bound traffic without needing an individually configured route for every possible internet destination.
CONVERGENCE — WHY IT MATTERS AND HOW PROTOCOLS DIFFER: Convergence is the process of every router in a network reaching a consistent, accurate, updated view of the topology after a change occurs (a link failing, a new route being added). Different routing protocols converge at meaningfully different speeds — a protocol that converges slowly means a longer window during which some routers have an inaccurate view of the network, potentially causing routing loops or genuinely unreachable destinations during that window.
ROUTE SUMMARIZATION / AGGREGATION: Rather than a router maintaining a separate individual routing table entry for every single small subnet within a larger network, route summarization combines multiple contiguous subnets into a single, more compact routing table entry — reducing table size and improving routing efficiency in larger networks, at the cost of some routing precision (a summarized route can't distinguish between the specific individual subnets it represents).
WHY NETWORK+ TESTS ROUTING CONCEPTS SEPARATELY FROM CCNA-STYLE CONFIGURATION: Network+ is explicitly vendor-neutral by design — you might work with Cisco, Juniper, Ubiquiti, or any number of other vendors' equipment across different jobs and different organizations throughout a career, and the underlying conceptual understanding of how routing fundamentally works transfers cleanly across all of them, even though the specific command syntax to actually configure a given vendor's equipment genuinely does not transfer between vendors at all.
Connecting a LAN out to the broader internet, or connecting multiple geographically separated locations together, requires WAN technology — and Network+ expects familiarity with the range of options available and their genuine tradeoffs.
LEASED LINES — DEDICATED, PREDICTABLE, EXPENSIVE: A leased line is a dedicated point-to-point connection reserved exclusively for one customer's use, providing predictable, consistent bandwidth with no sharing or contention with other customers — genuinely reliable, but meaningfully more expensive than shared connection types, historically common for connecting branch offices with a T1 or T3 line (older standards still occasionally referenced, providing 1.544 Mbps and roughly 45 Mbps respectively).
MPLS — MULTIPROTOCOL LABEL SWITCHING: A technology used by ISPs to efficiently route traffic across their own backbone network using labels rather than purely IP-based routing decisions at every hop — from an end customer's perspective, MPLS is commonly used to connect multiple branch office locations together through the provider's network with genuinely predictable, often prioritized performance, without needing individually dedicated physical lines between every pair of locations.
BROADBAND INTERNET TECHNOLOGIES: Cable — uses the same coaxial infrastructure as cable television, widely available with generally good bandwidth, though actual available bandwidth can be shared among nearby subscribers depending on the provider's specific network architecture. DSL (Digital Subscriber Line) — uses existing telephone line infrastructure, generally offering lower bandwidth than cable and with performance that degrades as physical distance from the provider's central office increases. Fiber (FTTH/FTTP) — dedicated fiber optic connection directly to the premises, offering the highest available bandwidth and most consistent, symmetric performance of the common broadband options, though availability remains geographically limited compared to cable and DSL.
SATELLITE INTERNET — THE OPTION OF LAST RESORT FOR REMOTE LOCATIONS: Satellite provides connectivity essentially anywhere with a clear view of the sky, genuinely valuable for remote locations with no other viable broadband option — but suffers from meaningfully higher latency (particularly with traditional geostationary satellites, though newer low-earth-orbit satellite services have meaningfully improved this) and is generally more expensive with lower available bandwidth than terrestrial alternatives.
CELLULAR/4G/5G AS A WAN CONNECTION TYPE: Beyond powering mobile phones, cellular technology increasingly serves as a legitimate primary or backup WAN connection type for fixed locations — a 5G-based fixed wireless connection, or a cellular failover connection kicking in automatically if a primary wired connection fails, providing meaningful redundancy without requiring an entirely separate physical wired connection as a backup.
SD-WAN — TYING MULTIPLE WAN TYPES TOGETHER INTELLIGENTLY: As introduced in this topic's earlier lesson on network types, SD-WAN can intelligently combine multiple different underlying WAN connection types (a primary broadband connection plus a cellular backup, for instance) and dynamically route traffic across whichever is currently performing best for a given traffic type — a genuinely modern approach to WAN redundancy that's increasingly displacing older, purely single-connection-type WAN architectures.
CHOOSING THE RIGHT WAN TECHNOLOGY FOR A GIVEN SCENARIO: Network+ scenario questions commonly ask you to match a specific business requirement (a remote site with no cable or DSL availability, a need for guaranteed consistent bandwidth for time-sensitive traffic, a cost-conscious branch office connection) to the most appropriate WAN technology option — genuinely practical decision-making knowledge that applies directly to real-world network design conversations, not purely abstract memorization.
Beyond the DNS and DHCP services covered in this platform's Networking topic, Network+ expects familiarity with several additional foundational network services that quietly keep a network's time synchronized, its events logged, and its addressing organized.
NTP — NETWORK TIME PROTOCOL, WHY ACCURATE TIME MATTERS MORE THAN IT SEEMS: NTP synchronizes clocks across network devices to a common, accurate time source. This sounds like a minor convenience, but accurate, consistent time is genuinely critical for several real reasons: security protocols like Kerberos (covered in this platform's Active Directory topic) actually fail authentication if clocks drift too far apart between systems, and correlating log entries across multiple different devices during incident investigation becomes genuinely difficult or impossible if each device's clock shows a different, inconsistent time.
NTP HIERARCHY — STRATUM LEVELS: NTP uses a hierarchical structure of "stratum" levels — Stratum 0 refers to highly accurate reference clocks themselves (atomic clocks, GPS-based time sources), Stratum 1 servers are directly connected to these reference sources, and subsequent stratum levels sync from servers one level above them. Most organizations sync their internal NTP servers from a small number of reliable external Stratum 1 or Stratum 2 sources, then distribute accurate time internally from there.
SYSLOG — CENTRALIZED LOGGING BEYOND JUST WINDOWS EVENT LOGS: Where Windows systems use the Event Log system covered elsewhere on this platform, syslog is the standard, widely-supported logging protocol used across network devices (routers, switches, firewalls) and non-Windows systems — sending log messages to a centralized syslog server rather than each device only retaining logs locally, where they'd be lost if the device itself failed and would be genuinely tedious to review individually across dozens or hundreds of separate devices.
SYSLOG SEVERITY LEVELS: Syslog messages are categorized by severity, from Emergency (the system is genuinely unusable) down through Alert, Critical, Error, Warning, Notice, Informational, and finally Debug (the most verbose, least critical level). Understanding this severity hierarchy helps configure appropriate alerting — you genuinely want to be paged immediately for an Emergency or Critical message, but probably don't want the same urgent alert treatment for routine Informational or Debug-level log entries.
IPAM — IP ADDRESS MANAGEMENT: As a network grows, manually tracking which IP addresses are assigned to which devices, which subnets are fully utilized versus which have room to grow, becomes genuinely unmanageable through simple spreadsheets or personal memory alone. IPAM tools provide centralized tracking and management of an organization's entire IP address space — both for DHCP-assigned dynamic addresses and for genuinely static assignments, helping prevent address conflicts and providing clear visibility into actual address utilization and availability as the network continues to grow over time.
WHY IPAM MATTERS MORE AS AN ORGANIZATION SCALES: A small network with a handful of devices can reasonably track IP assignments through simple, informal means. An organization with thousands of devices across multiple sites, multiple VLANs, and both IPv4 and IPv6 addressing genuinely needs a proper IPAM solution — without one, address conflicts, exhausted subnets, and simple confusion about what's actually using a given address become an ongoing, recurring, genuinely time-consuming operational problem.
HOW THESE THREE SERVICES CONNECT TOGETHER IN PRACTICE: NTP ensures your syslog entries have accurate, consistent, genuinely trustworthy timestamps across every device in the environment. Syslog provides the centralized visibility needed to actually notice and investigate a network problem, including one potentially related to IP addressing. IPAM helps ensure the addressing itself stays organized and conflict-free in the first place — together, these three foundational services form much of the quiet, essential infrastructure that makes a larger network genuinely manageable, even though none of them are as immediately visible or attention-grabbing as more prominent services like DNS or DHCP.
This platform's Networking topic covers the practical side of connecting to cloud infrastructure. Network+ expects broader conceptual fluency with cloud service models and networking-specific cloud terminology that shows up regularly in the exam and in real vendor conversations.
THE THREE CLASSIC CLOUD SERVICE MODELS: IaaS (Infrastructure as a Service) — the cloud provider offers raw computing infrastructure (virtual machines, storage, networking) and the customer manages everything above that layer, including the operating system itself. Genuinely the most flexible model, but also requiring the most ongoing management responsibility from the customer. PaaS (Platform as a Service) — the provider manages the underlying infrastructure AND the operating system/runtime environment, and the customer simply deploys their own application code on top. Less flexible than IaaS, but meaningfully reduces the customer's ongoing management burden. SaaS (Software as a Service) — the provider manages everything, including the actual application itself, and the customer simply uses the finished software (think: Microsoft 365, Salesforce). The customer has essentially no infrastructure management responsibility at all, but also correspondingly the least customization flexibility.
THE SHARED RESPONSIBILITY MODEL: Across all three service models, security and management responsibility is genuinely shared between the cloud provider and the customer, with the specific dividing line shifting depending on which model is in use — in IaaS, the customer is responsible for securing the OS and everything above it; in SaaS, the customer's responsibility is largely limited to properly configuring access controls and managing their own data within the application. Misunderstanding exactly where this responsibility line actually falls is a genuinely common, real source of security gaps in cloud deployments.
PUBLIC, PRIVATE, AND HYBRID CLOUD: Public cloud — shared infrastructure operated by a third-party provider (Azure, AWS, Google Cloud), serving many different customers on shared underlying hardware, though logically isolated from each other. Private cloud — infrastructure dedicated entirely to a single organization, whether physically on-premise or hosted by a provider but genuinely not shared with any other customer. Hybrid cloud — a combination of both, with workloads and data distributed across public and private cloud infrastructure depending on specific requirements, connected together (often via the site-to-site VPN or dedicated connection concepts covered elsewhere on this platform).
MULTI-CLOUD — A GENUINELY DIFFERENT CONCEPT FROM HYBRID: Where hybrid cloud specifically refers to combining public and private infrastructure, multi-cloud refers to using multiple different PUBLIC cloud providers simultaneously (Azure for one specific purpose, AWS for another) — organizations pursue this for various reasons including avoiding vendor lock-in, taking advantage of specific providers' particular strengths, or meeting specific regulatory or redundancy requirements.
CLOUD NETWORKING TERMS WORTH KNOWING FOR THE EXAM: Elasticity — the cloud's capability to automatically scale resources up or down based on actual real-time demand, a genuinely core differentiator from traditional fixed-capacity on-premise infrastructure. Multitenancy — multiple different customers sharing the same underlying physical infrastructure while remaining logically isolated from one another, the foundational architecture underlying most public cloud services. Cloud gateway — a networking component that manages and secures connectivity between an organization's on-premise network and their cloud resources.
WHY CLOUD FLUENCY MATTERS INCREASINGLY FOR NETWORK+ CANDIDATES: Even organizations still primarily running traditional on-premise infrastructure increasingly have at least some cloud-hosted components, and job postings for network-focused roles increasingly expect at least foundational cloud networking literacy — this conceptual, vendor-neutral fluency genuinely complements, rather than duplicates, the more hands-on practical cloud networking configuration covered elsewhere on this platform.
Beyond firewall rules and access control covered elsewhere on this platform, Network+ expects familiarity with several specific architectural concepts used to deliberately harden a network's overall design against external threats.
DMZ — DEMILITARIZED ZONE: A DMZ is a network segment that sits between an organization's fully trusted internal network and the fully untrusted public internet, specifically designed to host servers that genuinely need to be reachable from the outside world (a public web server, a public-facing mail server) while keeping them logically isolated from the genuinely sensitive internal network. If a server in the DMZ is compromised, the attacker still faces an additional layer of separation before potentially reaching genuinely sensitive internal systems, rather than having a compromised public-facing server sit directly on the same trusted internal network as everything else.
SCREENED SUBNET — THE MORE PRECISE MODERN TERM FOR THE SAME CONCEPT: "Screened subnet" is increasingly used as the more precise, updated term for what's traditionally called a DMZ — describing the same underlying architectural concept of an isolated, firewall-protected network segment specifically for internet-facing servers, positioned between two firewalls (or firewall zones) rather than genuinely between two literal opposing armies, which is where the older military-derived "DMZ" terminology originally came from.
WHY A SINGLE FIREWALL WITH THREE INTERFACES CAN IMPLEMENT THIS ARCHITECTURE: A DMZ/screened subnet doesn't necessarily require two entirely separate physical firewall appliances — a single firewall with three distinct interfaces (one facing the internet, one facing the DMZ, one facing the trusted internal network) can implement genuinely appropriate, distinct filtering rules for traffic flowing between each of these three zones, achieving the same fundamental isolation goal with less hardware.
HONEYPOTS — DELIBERATE DECOYS: A honeypot is a deliberately vulnerable-looking system set up specifically to attract and detect attackers, without actually holding any genuinely sensitive real data. When an attacker interacts with a honeypot, it provides valuable early warning that reconnaissance or an active attack attempt is occurring, and can also help study an attacker's actual specific techniques in a genuinely safe, controlled, isolated environment that poses no real risk to actual production systems.
HONEYNETS — SCALING THE HONEYPOT CONCEPT UP: A honeynet extends the honeypot concept to an entire deliberately decoyed network segment, rather than just a single individual decoy system — providing a more elaborate, genuinely convincing environment for studying attacker behavior at greater scale and depth than a single isolated honeypot system alone could provide.
AIR GAP — PHYSICAL OR LOGICAL COMPLETE ISOLATION: As briefly touched on in the backup security context elsewhere on this platform, an air gap means a system or network segment has absolutely no network connectivity whatsoever to any other network — providing genuinely the strongest possible isolation, appropriate for extremely sensitive systems (certain industrial control systems, highly classified government systems) where the operational inconvenience of complete disconnection is judged to be genuinely worth the meaningfully stronger security this isolation provides.
NETWORK ACCESS CONTROL (NAC): NAC systems verify a device meets defined security requirements (updated antivirus, current patches, proper configuration) BEFORE granting it any network access at all — directly connecting to the device compliance and configuration baseline concepts covered in this platform's Endpoint Management topic, just applied here specifically at the network access-control layer rather than the endpoint management platform layer.
WHY THESE ARCHITECTURAL CONCEPTS MATTER BEYOND JUST EXAM VOCABULARY: Understanding DMZ/screened subnet design, and knowing when a honeypot might genuinely add real security value versus when it's unnecessary added complexity for a given organization's actual risk profile, represents real network architecture decision-making knowledge — the kind of thinking that goes into actually designing a secure network from the ground up, not just configuring individual devices and rules in isolation without any broader coherent architectural strategy.
Beyond the First-Hop Redundancy Protocols covered in Cisco-specific detail in this platform's CCNA topic, Network+ expects broader, vendor-neutral fluency with high availability concepts and load balancing — how networks stay operational and performant even as individual components fail or as demand grows.
REDUNDANCY — THE FOUNDATIONAL HIGH AVAILABILITY PRINCIPLE: Redundancy means having more than one of a genuinely critical component, so a single failure doesn't cause a complete outage — redundant power supplies, redundant network links, redundant switches, redundant internet connections. The core underlying principle is eliminating single points of failure wherever it's genuinely practical and cost-justified to do so.
ACTIVE-ACTIVE VS. ACTIVE-PASSIVE REDUNDANCY MODELS: In an active-passive configuration, one component actively handles traffic while a redundant backup sits idle, ready to take over only if the active component genuinely fails. In an active-active configuration, multiple redundant components all actively handle traffic simultaneously, providing both redundancy AND additional combined capacity — genuinely more resource-efficient than active-passive, but requiring more sophisticated coordination between the active components.
LOAD BALANCING — DISTRIBUTING TRAFFIC ACROSS MULTIPLE SERVERS: A load balancer distributes incoming traffic across multiple backend servers, rather than every request landing on a single server that could become a genuine bottleneck or single point of failure. Beyond simply improving raw performance under heavy load, load balancing also provides a form of redundancy — if one backend server genuinely fails, the load balancer can automatically stop sending traffic to it and continue distributing across the remaining healthy servers.
LOAD BALANCING ALGORITHMS — HOW TRAFFIC ACTUALLY GETS DISTRIBUTED: Round-robin — simply cycles through available servers in sequential order, sending each new request to the next server in line. Least connections — sends new traffic specifically to whichever server currently has the fewest active connections, accounting for the reality that not every connection places identical load on a server. Weighted distribution — sends proportionally more traffic to more capable servers (a more powerful server might be assigned a higher weight, receiving a proportionally larger share of total traffic than a comparatively less capable one).
HEALTH CHECKS — HOW A LOAD BALANCER KNOWS A SERVER IS ACTUALLY HEALTHY: A load balancer periodically checks each backend server's actual health (attempting a connection, or checking a specific defined health-check endpoint) before continuing to route traffic to it — a server that fails these health checks gets automatically, temporarily removed from the active rotation until it passes health checks again, preventing traffic from being needlessly routed to a genuinely struggling or fully failed server.
CLUSTERING — COORDINATING MULTIPLE SERVERS AS ONE LOGICAL UNIT: A cluster is a group of servers configured to work together as a single logical unit, sharing workload and providing redundancy — conceptually related to load balancing, but often implying tighter coordination and shared state between the cluster members than a simple load-balanced pool of otherwise independent servers.
NIC TEAMING / LINK AGGREGATION — REDUNDANCY AT THE INDIVIDUAL SERVER LEVEL: Directly connecting to the EtherChannel concept covered in this platform's CCNA topic, NIC teaming bundles multiple network interfaces on a single server into one logical connection, providing both increased bandwidth and redundancy if one specific physical network cable or interface genuinely fails.
RTO AND RPO — MEASURING WHAT "AVAILABLE ENOUGH" ACTUALLY MEANS: As covered for disaster recovery elsewhere on this platform, Recovery Time Objective (how quickly must service genuinely be restored) and Recovery Point Objective (how much data loss, measured in time, is genuinely acceptable) define the actual specific, measurable targets that high availability and redundancy investments are ultimately meant to achieve — high availability design decisions should trace back to these concrete, deliberately defined business requirements, not simply be pursued as an open-ended, unlimited goal in themselves.
WHY THIS MATTERS FOR REAL NETWORK DESIGN DECISIONS: Every redundancy and load balancing decision carries a genuine cost — additional hardware, additional complexity, additional ongoing management overhead. Good network design deliberately matches the actual level of redundancy investment to the genuine criticality of the specific service being protected, rather than either under-investing in high availability for something genuinely critical, or over-investing in redundancy for something where the business impact of an occasional brief outage would genuinely be minor and acceptable.
"The network is slow" is one of the most common, and most frustratingly vague, complaints in IT. Network+ expects fluency with the specific metrics that let you actually diagnose what "slow" genuinely means in a given situation, rather than treating it as one single undifferentiated problem.
BANDWIDTH VS. THROUGHPUT — A GENUINELY IMPORTANT DISTINCTION: Bandwidth is the theoretical maximum capacity of a given connection — a "1 Gbps connection" has 1 Gbps of bandwidth. Throughput is the actual, real achieved data transfer rate, which is often meaningfully lower than the theoretical bandwidth due to protocol overhead, network congestion, or other real-world limiting factors. A connection can have excellent bandwidth on paper but genuinely poor actual throughput if something else is bottlenecking real-world performance.
LATENCY — THE DELAY, NOT THE SPEED: Latency measures how long it takes data to travel from source to destination, typically measured in milliseconds — distinct from bandwidth/throughput, since a connection can have both high bandwidth AND high latency simultaneously (a satellite connection is a classic example: potentially decent bandwidth, but inherently high latency due to the genuinely long physical distance the signal must travel to and from the satellite).
WHY LATENCY MATTERS MORE FOR SOME APPLICATIONS THAN OTHERS: A large file download is relatively latency-tolerant — it might take somewhat longer to complete on a higher-latency connection, but it will still genuinely complete successfully. A real-time voice or video call is genuinely latency-sensitive — even a connection with plenty of raw bandwidth will produce a noticeably poor, choppy call experience if latency is too high, since real-time communication depends on data arriving quickly and consistently, not merely arriving eventually in large volume.
JITTER — INCONSISTENCY IN LATENCY OVER TIME: Jitter measures the VARIATION in latency over time, rather than the latency value itself — a connection with consistent 50ms latency throughout is generally preferable to one that fluctuates unpredictably between 10ms and 100ms, even if the second connection's average latency happens to be numerically similar or even lower. High jitter is particularly disruptive for real-time applications like VoIP, since inconsistent packet arrival timing causes genuinely noticeable audio glitches and choppiness, distinct from the effect of high-but-consistent latency alone.
PACKET LOSS — DATA THAT SIMPLY NEVER ARRIVES: Packet loss measures the percentage of transmitted data that never actually successfully arrives at its destination — even a small amount of packet loss can meaningfully degrade real-time application quality, while file transfers are more tolerant since TCP (covered in this platform's earlier lesson on TCP vs UDP) automatically retransmits genuinely lost data, just at some real cost to overall throughput and completion time.
GOODPUT — A LESS COMMONLY DISCUSSED BUT GENUINELY USEFUL METRIC: Goodput measures the actual useful application-level data throughput, specifically excluding protocol overhead and any retransmitted data — an even more precise, real-world-relevant measure of genuinely useful data transfer rate than raw throughput alone, since throughput can include retransmitted duplicate data that doesn't actually represent forward progress for the application.
TOOLS FOR MEASURING THESE METRICS: ping measures basic round-trip latency (and reveals packet loss if pings genuinely go unanswered). traceroute reveals latency at each individual hop along a path, helping localize exactly where along a route latency is genuinely accumulating. Dedicated bandwidth/throughput testing tools (like iperf) measure actual achievable throughput between two specific points under controlled test conditions, distinct from simply observing real, variable production traffic.
WHY DIFFERENTIATING THESE METRICS MATTERS FOR REAL TROUBLESHOOTING: A user complaint of "the network is slow" could genuinely mean low bandwidth, high latency, high jitter, packet loss, or some combination of these — and each different underlying cause points toward a genuinely different fix. Correctly diagnosing which specific metric is actually the real problem, rather than treating "slow" as one single undifferentiated issue, is what separates genuinely effective network troubleshooting from unfocused, unproductive guessing.
This platform's Networking topic covers practical Wi-Fi troubleshooting; CCNA covers Cisco enterprise wireless architecture. Network+ expects deeper fluency with the specific 802.11 standards themselves and how to properly plan a wireless deployment.
THE 802.11 STANDARD FAMILY — KNOWING THE SPECIFIC GENERATIONS: 802.11a — an early standard operating in the 5GHz band, largely historical today. 802.11b — an early standard operating in 2.4GHz, also largely historical, notably slower than 802.11a despite being released around a similar time. 802.11g — improved 2.4GHz speeds, backward compatible with 802.11b. 802.11n (Wi-Fi 4) — introduced MIMO (Multiple Input, Multiple Output) technology, supporting both 2.4GHz and 5GHz bands, a meaningful speed improvement over prior generations. 802.11ac (Wi-Fi 5) — 5GHz-focused, further meaningful speed improvements, wider channel widths. 802.11ax (Wi-Fi 6/6E) — the current mainstream standard, improved efficiency in dense, high-device-count environments (not just raw peak speed), with Wi-Fi 6E extending into the newer 6GHz band for even less congestion.
MIMO AND MU-MIMO — WHY MULTIPLE ANTENNAS MATTER: MIMO uses multiple antennas to send and receive multiple data streams simultaneously, meaningfully improving throughput compared to older single-antenna designs. MU-MIMO (Multi-User MIMO) extends this further, allowing an access point to communicate with multiple different client devices simultaneously rather than serving clients purely one at a time in sequence — a genuinely significant efficiency improvement in environments with many simultaneously connected devices.
CHANNEL WIDTH AND ITS TRADEOFFS: Wider channels (40MHz, 80MHz, or even 160MHz on newer standards) can carry more data, improving raw throughput — but wider channels also consume more of the available spectrum, leaving fewer genuinely non-overlapping channels available for neighboring access points, potentially increasing interference in dense deployments. Choosing appropriate channel width is a genuine tradeoff between raw individual-connection speed and overall network capacity/interference in a given specific environment.
ANTENNA TYPES AND COVERAGE PATTERNS: Omnidirectional antennas broadcast signal roughly equally in all directions, appropriate for typical indoor coverage where devices could genuinely be located anywhere around the access point. Directional antennas focus signal in a specific direction, appropriate for point-to-point links (connecting two buildings) or for covering a specific defined area like a long hallway without wasting significant signal strength in unwanted directions.
WIRELESS SITE SURVEYS — PLANNING BEFORE DEPLOYMENT, NOT AFTER: A wireless site survey involves physically assessing a location before deployment — identifying potential sources of interference, testing signal propagation through the building's actual walls and materials, and determining optimal access point placement and appropriate channel assignments before equipment is genuinely installed, rather than installing access points based purely on guesswork and then troubleshooting poor coverage reactively after the fact.
HEAT MAPS — VISUALIZING PREDICTED OR ACTUAL COVERAGE: Site survey tools commonly generate heat maps — visual representations overlaid on a building floor plan showing predicted or actually measured signal strength throughout the space, making coverage gaps and areas of genuine overlap immediately visually apparent in a way that's much harder to identify from raw numeric signal strength readings alone.
WIRELESS INTERFERENCE SOURCES BEYOND OTHER WI-FI NETWORKS: Beyond channel congestion from neighboring Wi-Fi networks (covered in this platform's Networking topic), physical interference sources genuinely worth considering during planning include microwave ovens (operating in the 2.4GHz band), cordless phones, Bluetooth devices, and even certain types of building materials (concrete, metal) that can meaningfully attenuate wireless signal strength as it attempts to pass through them.
WHY THIS DEEPER STANDARDS KNOWLEDGE MATTERS FOR NETWORK+ SPECIFICALLY: Understanding the specific evolution and genuine tradeoffs across 802.11 generations, and knowing how to properly plan a deployment through a genuine site survey rather than pure guesswork, represents the kind of deeper wireless design knowledge that goes beyond simply troubleshooting an existing installation — it's what actually goes into designing a wireless network correctly from the very start.
A network that exists only in the memory of whoever originally built it is a genuine operational risk — Network+ expects familiarity with the standard types of network documentation that make an environment genuinely maintainable by anyone, not just its original architect.
PHYSICAL VS. LOGICAL NETWORK DIAGRAMS — A GENUINELY IMPORTANT DISTINCTION: A physical network diagram shows the actual physical devices, their real locations, and the actual physical cabling connecting them — genuinely useful for hands-on troubleshooting and cable tracing. A logical network diagram instead shows the network's logical structure — IP addressing, VLANs, routing relationships — abstracting away the physical details to focus purely on how traffic logically flows and how the network is genuinely organized from an addressing and segmentation perspective. Both diagram types serve genuinely different, complementary purposes, and a mature network environment maintains both, not just one or the other.
RACK DIAGRAMS — DOCUMENTING PHYSICAL EQUIPMENT PLACEMENT: A rack diagram shows exactly which physical equipment occupies which specific position within a server rack — genuinely valuable for physically locating a specific device quickly during an active troubleshooting situation, and for planning where genuinely new equipment can actually fit as an environment grows over time.
MDF AND IDF — MAIN AND INTERMEDIATE DISTRIBUTION FRAMES: The MDF (Main Distribution Frame) is the central point where an organization's outside network connections (from the ISP) and core internal network infrastructure converge — typically a dedicated network/server room. IDFs (Intermediate Distribution Frames) are secondary distribution points, often one per floor or wing of a larger building, connecting back to the MDF and serving as the local termination point for cabling running out to nearby end-user areas. Understanding this MDF/IDF hierarchy is genuinely important for larger multi-floor or multi-building deployments.
IP ADDRESS SCHEME DOCUMENTATION: Beyond visual diagrams, documenting an organization's actual IP addressing scheme — which specific subnet ranges are allocated to which specific location, department, or purpose — provides essential reference material for troubleshooting and for planning genuinely appropriate future network growth, directly connecting to the IPAM concepts covered in an earlier lesson in this topic.
CHANGE LOGS AND CONFIGURATION DOCUMENTATION: Beyond static diagrams describing the network's current state, maintaining a change log — documenting what specific changes were made, when, and by whom — directly mirrors the change management and audit trail concepts covered in this platform's OpCon topic, just applied here specifically to network infrastructure configuration changes rather than batch automation job definitions.
WHY OUTDATED DOCUMENTATION IS ARGUABLY WORSE THAN NO DOCUMENTATION AT ALL: A network diagram that hasn't been meaningfully updated in three years, while the actual underlying network has genuinely changed substantially since it was originally created, can actively mislead someone troubleshooting a problem — confidently pointing them toward equipment or connections that no longer actually exist or that have since been meaningfully reconfigured. Documentation genuinely needs an established, deliberate maintenance process, not just a one-time initial creation effort that's then simply left untouched and gradually forgotten about indefinitely.
STANDARDIZED SYMBOLS AND NOTATION: Network diagrams commonly use standardized symbols for different device types (routers, switches, firewalls, servers) — following these established, widely-recognized conventions rather than inventing genuinely idiosyncratic personal notation makes diagrams meaningfully more immediately understandable to anyone else who might genuinely need to read and correctly interpret them later, including someone entirely new to the specific environment being documented.
WHY THIS MATTERS FOR A NETWORK+ CAREER, NOT JUST THE EXAM: Good documentation is genuinely what separates a network environment that survives staff turnover reasonably gracefully from one where a single departing employee's exit takes irreplaceable institutional knowledge along with them — a genuinely real, practical operational risk that proper documentation discipline directly and meaningfully mitigates.
Network+ specifically tests change management concepts as applied to network infrastructure — directly related to the broader change management discipline covered in this platform's OpCon topic, but with genuine network-specific considerations worth understanding on their own terms.
WHY NETWORK CHANGES CARRY GENUINELY DISTINCT RISK COMPARED TO OTHER IT CHANGES: A misconfigured application change might affect that one specific application. A misconfigured network change — a bad firewall rule, an incorrect VLAN assignment, a routing table error — can potentially disrupt connectivity for an entire segment, department, or in a worst-case scenario, an entire organization simultaneously, all at once.
THE STANDARD CHANGE MANAGEMENT PROCESS APPLIED TO NETWORKS: Request — formally documenting exactly what change is being proposed and the specific underlying business or technical reason for it. Review/Approval — having a second qualified person review the proposed change before it's genuinely implemented, directly mirroring the approval workflow concepts covered for OpCon. Scheduling — planning implementation during an appropriate maintenance window, avoiding genuinely disrupting active production traffic during business-critical hours. Implementation — actually executing the change, ideally following a pre-written, carefully considered, specific procedure rather than improvising the exact steps in the moment. Testing/Validation — confirming the change genuinely achieved its intended effect and, just as importantly, didn't break anything else that wasn't actually intended to be affected. Documentation — updating network diagrams and configuration documentation to accurately reflect the change that was actually made.
ROLLBACK PLANS — PREPARING FOR WHEN A CHANGE GENUINELY GOES WRONG: Just as covered for batch automation and endpoint patch deployment elsewhere on this platform, having a clear, well-understood rollback plan established BEFORE implementing a network change is genuinely essential — network changes can have subtle, unexpected effects that only become apparent once real production traffic actually starts flowing through the modified configuration, and being able to quickly, confidently revert avoids an extended, stressful, improvised outage while a fix is worked out under active pressure.
MAINTENANCE WINDOWS — TIMING CHANGES APPROPRIATELY: Scheduling network changes during a defined maintenance window — genuinely low-traffic periods, ideally with advance notification to affected users — minimizes real business impact if something unexpected does go wrong during implementation, and provides a natural, bounded time window for thorough testing and validation before normal business hours resume and genuinely depend on the change working correctly.
CHANGE FREEZE PERIODS — DELIBERATELY PAUSING CHANGES DURING CRITICAL TIMES: Many organizations declare a formal "change freeze" during genuinely critical business periods (major retail organizations during the holiday shopping season, financial institutions during month-end or quarter-end close) — deliberately pausing all but genuinely emergency changes during these especially sensitive windows, since even a well-tested, seemingly low-risk change carries some inherent, non-zero risk that's simply not worth accepting during a period where the potential business impact of any unexpected disruption would be especially severe.
EMERGENCY CHANGES — A NECESSARY EXCEPTION TO THE STANDARD PROCESS: Not every network change can reasonably wait for the full standard review and scheduled maintenance window process — a critical security vulnerability actively being exploited, or a genuine active outage requiring immediate remediation, may reasonably warrant an expedited emergency change process. Even emergency changes should still be documented after the fact and reviewed retrospectively, rather than the emergency exception becoming an unaccountable, undisciplined way to routinely bypass genuine change management discipline for changes that weren't actually genuinely urgent.
CONFIGURATION BACKUP BEFORE MAKING CHANGES: Directly connecting to the IOS backup concepts covered in this platform's CCNA topic, backing up a device's current configuration immediately before implementing any change provides a genuine, immediate safety net — if the change causes an unexpected problem, restoring the pre-change backup configuration is often meaningfully faster and more reliable than attempting to manually reconstruct or reverse the specific change from memory under active pressure.
WHY THIS DISCIPLINE MATTERS FOR NETWORK+ SPECIFICALLY: Network+ tests this material because network changes genuinely represent some of the highest-blast-radius changes an IT organization ever makes — a single misconfigured setting can affect connectivity for potentially everyone simultaneously, making disciplined change management genuinely more critical here than for many other, more narrowly-scoped categories of IT change.
This platform's CCNA topic covers IPv6 with a Cisco configuration focus. Network+ expects a somewhat different emphasis — deeper conceptual fluency with IPv6 addressing structure and the specific terminology tested on the vendor-neutral N10 exam.
WHY THE 128-BIT ADDRESS SPACE MATTERS PRACTICALLY, NOT JUST THEORETICALLY: IPv6's 128-bit addressing provides such an enormous address space that address exhaustion — the core problem that drove IPv4's continued reliance on NAT — genuinely stops being a practical concern at all. This isn't just an abstract technical improvement; it fundamentally changes network design philosophy, since NAT (a workaround necessitated specifically by IPv4 scarcity) becomes genuinely unnecessary in a pure IPv6 environment where every device can have its own unique, globally routable address.
IPV6 ADDRESS STRUCTURE — BREAKING DOWN THE COMPONENTS: A typical IPv6 global unicast address consists of a Global Routing Prefix (identifying the specific network, assigned by a provider or registry), a Subnet ID (allowing further internal subdivision of that assigned network), and an Interface ID (identifying the specific individual device interface) — conceptually similar in spirit to how an IPv4 address combines a network portion and a host portion, just with meaningfully more available structure and space to work with.
EUI-64 — AUTOMATICALLY GENERATING AN INTERFACE ID FROM A MAC ADDRESS: EUI-64 is a method for automatically generating a device's IPv6 Interface ID directly from its existing MAC address, inserting a fixed padding value in the middle of the 48-bit MAC address to expand it out to the full required 64 bits — a genuinely convenient way for a device to self-generate a reasonably unique interface identifier without requiring separate manual configuration or a DHCP-style assignment process.
TEMPORARY/PRIVACY ADDRESSES — WHY MODERN SYSTEMS DON'T ALWAYS USE EUI-64: Since EUI-64 directly derives from a device's genuinely fixed MAC address, an EUI-64-generated address remains constant and could theoretically be used to track a specific device's activity across different networks over time — a real privacy concern. Modern operating systems commonly generate temporary, randomized privacy addresses for actual outbound connections instead, periodically rotating them, specifically to avoid this kind of long-term device tracking exposure.
MULTICAST ADDRESSES — REPLACING SOME OF IPV4'S BROADCAST FUNCTIONALITY: IPv6 notably has no true broadcast address at all (unlike IPv4's familiar broadcast concept) — instead relying more heavily on multicast addressing (delivering to a defined group of interested devices) for functions IPv4 traditionally handled via broadcast, a deliberate design improvement that reduces genuinely unnecessary network-wide traffic compared to IPv4's broader broadcast model.
ANYCAST — ONE ADDRESS, MULTIPLE POSSIBLE DESTINATIONS: As covered conceptually in this platform's CCNA topic, an anycast address is assigned to multiple different interfaces, with traffic delivered to whichever one is genuinely closest by routing distance — commonly used for services like distributed DNS infrastructure, where multiple genuinely identical servers around the world can all share one single anycast address, with client requests automatically routed to whichever instance happens to be nearest.
NDP — NEIGHBOR DISCOVERY PROTOCOL, IPV6'S REPLACEMENT FOR ARP: Where IPv4 uses ARP (Address Resolution Protocol) to map IP addresses to MAC addresses on a local network segment, IPv6 uses NDP for this same fundamental function, along with several additional capabilities ARP never provided — including router discovery and a degree of basic address configuration assistance, making NDP a genuinely more capable, expanded protocol than the older ARP it effectively replaces.
DUAL-STACK DEPLOYMENT — THE PRACTICAL REALITY MOST NETWORK+ CANDIDATES WILL ACTUALLY ENCOUNTER: As emphasized in this platform's CCNA topic as well, most real-world networks run IPv4 and IPv6 simultaneously in a dual-stack configuration during this extended transition period — Network+ candidates should understand IPv6 concepts thoroughly, while also recognizing that in most current real-world jobs, IPv4 fluency remains equally, and in many environments even more immediately, essential day to day.
Beyond the general structured troubleshooting approaches covered elsewhere on this platform, Network+ specifically tests a defined seven-step troubleshooting methodology — worth knowing both for the exam itself and because it represents a genuinely solid, transferable structured approach applicable to real-world network troubleshooting.
THE SEVEN STEPS, IN ORDER:
Identify the problem — gather genuinely accurate information about exactly what's actually happening, question the user or affected parties, and determine precisely what's actually changed recently, if anything.
Establish a theory of probable cause — based on the gathered information, form a genuinely reasonable, evidence-based hypothesis about what's likely actually causing the observed problem.
Test the theory to determine the cause — actually verify whether your hypothesis is genuinely correct before proceeding further, rather than jumping straight to attempting a fix based purely on an unverified guess.
Establish a plan of action and identify potential effects — once the actual cause is genuinely confirmed, plan the specific fix and consider what else that particular fix might potentially affect before actually implementing it.
Implement the solution or escalate as necessary — execute the planned fix, or recognize when a problem genuinely exceeds your own current knowledge or authority and appropriately escalate it to someone else who can more effectively address it.
Verify full system functionality and implement preventive measures — confirm the fix genuinely, fully resolved the issue (not just superficially masked or partially addressed the symptom), and consider whether anything further should reasonably be done to prevent this same specific issue from recurring going forward.
Document findings, actions, and outcomes — record what actually happened and how it was genuinely resolved, directly connecting to the change and configuration documentation concepts covered in an earlier lesson in this topic.
WHY STEP 1 GENUINELY DESERVES MORE TIME THAN IT OFTEN ACTUALLY GETS: Under real time pressure, there's a genuine natural temptation to skip quickly past information-gathering and jump straight to attempting a fix. But genuinely accurate problem identification — what EXACTLY is happening, for WHOM specifically, and WHEN did it genuinely start — very often reveals the actual real cause far faster than randomly attempting various different potential fixes without first properly understanding the actual problem you're genuinely trying to solve.
WHY STEP 3 (TESTING THE THEORY) IS SO OFTEN GENUINELY SKIPPED, TO REAL DETRIMENT: It's genuinely tempting to jump straight from forming a theory (step 2) directly to implementing a fix (step 5), skipping the verification step entirely — but implementing a fix based on an actually incorrect, unverified theory wastes real time and can occasionally introduce an entirely new, additional problem on top of the original one, without ever having actually addressed the real original underlying cause at all.
ESCALATION AS A GENUINELY LEGITIMATE, RESPECTED PART OF THE PROCESS, NOT A PERSONAL FAILURE: Step 5 explicitly, deliberately includes escalation as a genuinely valid, appropriate outcome — recognizing a problem genuinely exceeds your own current knowledge, authority, or available access, and appropriately routing it to someone better positioned to actually resolve it, is a genuinely mature, correct troubleshooting decision, not a personal failure or something to feel embarrassed about.
WHY VERIFICATION (STEP 6) NEEDS TO GENUINELY CONFIRM THE ENTIRE SYSTEM, NOT JUST THE ORIGINAL REPORTED SYMPTOM: A fix that resolves the specific originally-reported symptom but happens to break something else entirely unrelated isn't genuinely a complete, successful fix — step 6 explicitly calls for confirming FULL system functionality, not merely confirming the one specific narrow complaint that was originally reported has technically gone away.
WHY THIS METHODOLOGY IS TESTED AS ITS OWN SPECIFIC, NAMED FRAMEWORK: While the underlying general principles genuinely overlap substantially with broader structured troubleshooting approaches covered elsewhere on this platform, Network+ specifically tests this exact seven-step sequence, in this specific defined order, as a distinct, named framework — worth memorizing the actual specific sequence itself for exam purposes, even though the underlying broader thinking (gather information, form and test a hypothesis, implement, verify, document) genuinely transfers across virtually every troubleshooting context you'll ever actually encounter in real IT work, network-related or otherwise.
Beyond typical office and data center networking, Network+ expects basic awareness of specialized network environments with genuinely distinct requirements and risk profiles — industrial control systems and the rapidly growing Internet of Things.
SCADA — SUPERVISORY CONTROL AND DATA ACQUISITION: SCADA systems monitor and control industrial processes — power grids, water treatment facilities, manufacturing production lines — collecting real-time data from sensors and allowing remote control of genuinely physical equipment and processes. Unlike typical office IT, a SCADA system failure or compromise can have genuinely direct physical-world consequences (a water treatment facility malfunctioning, a power grid destabilizing), not merely a data or business-process disruption.
ICS — INDUSTRIAL CONTROL SYSTEMS, THE BROADER CATEGORY: ICS is the broader category SCADA systems fall under, also including PLCs (Programmable Logic Controllers, which directly control specific individual pieces of physical machinery) and DCS (Distributed Control Systems, commonly used in large industrial process settings like chemical plants and refineries). These systems collectively control genuinely critical physical infrastructure that a typical enterprise IT network, by contrast, generally doesn't directly touch at all.
WHY ICS/SCADA NETWORKS ARE TYPICALLY, DELIBERATELY SEGMENTED FROM STANDARD IT NETWORKS: Given the genuinely severe, direct physical-world consequences of an ICS/SCADA compromise, these networks are typically kept deliberately, meaningfully separate from standard business IT networks — sometimes genuinely air-gapped entirely (directly connecting to the air gap concept covered in an earlier lesson in this topic), or connected only through very tightly, deliberately controlled, heavily monitored gateway points, rather than existing as just another segment casually accessible from the general corporate network.
WHY ICS/SCADA SYSTEMS OFTEN RUN GENUINELY OLDER, HARDER-TO-PATCH TECHNOLOGY: Unlike typical office IT equipment, industrial control equipment is often deployed for genuinely many years or even decades, and patching or upgrading it carries real, direct operational risk — potentially requiring an actual production line or critical facility to be taken offline during the update process. This means ICS/SCADA environments frequently run genuinely older software and protocols than would ever be considered acceptable in a standard office IT context, requiring correspondingly different, more specifically tailored security approaches better suited to this reality.
IOT — THE INTERNET OF THINGS: IoT refers to the broad, rapidly growing category of everyday physical devices with embedded network connectivity — smart thermostats, security cameras, connected sensors, and an enormous, genuinely still-expanding range of other physical devices. IoT devices are increasingly common even in typical office environments, well beyond purely industrial settings.
WHY IOT DEVICES REPRESENT A GENUINE, DISTINCT SECURITY CHALLENGE: IoT devices frequently ship with weak or entirely absent default security configuration, are often genuinely difficult or impossible to properly patch or update once deployed, and are sometimes connected to a network by non-technical staff without any IT involvement or awareness whatsoever — directly connecting to the "shadow IT" and unmanaged-device concepts covered elsewhere on this platform, just applied here specifically to physical smart devices rather than cloud software services.
NETWORK SEGMENTATION AS THE PRIMARY PRACTICAL IOT SECURITY STRATEGY: Given IoT devices' genuinely common security limitations, placing them on a dedicated, isolated network segment — separate from both the primary business network and from genuinely sensitive systems — limits the real damage a compromised IoT device could potentially cause, directly applying the same VLAN segmentation concepts covered throughout this platform, just specifically targeted at this particular, genuinely growing device category.
WHY NETWORK+ INCLUDES THIS MATERIAL: Even a network professional who never directly works with genuine industrial control systems will very likely encounter IoT devices in essentially any modern office environment, and understanding the fundamentally different risk profile and appropriate segmentation strategy for these device categories is increasingly considered genuinely foundational, baseline network security knowledge — not a purely specialized, niche concern relevant only to industrial settings.
Physical, Data Link, Network, Transport, Session, Presentation, Application. Troubleshoot bottom-up: cable first, then IP/routing, then ports, then application.
10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16. Not internet-routed — require NAT for internet access.
Reliable, connection-oriented, ordered. Uses three-way handshake (SYN/SYN-ACK/ACK). For web, email, file transfer, RDP.
Fast, connectionless, no guarantee. For DNS, VoIP, streaming, gaming — where speed matters more than perfect delivery.
255.255.255.0. First 3 octets = network. Last octet = host. 254 usable addresses. Most common subnet.
Current best wireless security. Uses SAE instead of PSK — prevents offline dictionary attacks. Provides forward secrecy.
Logical network segmentation on shared physical hardware. Devices in different VLANs can't communicate without a router. Trunking (802.1Q) carries multiple VLANs on one cable.
IDS = passive monitoring and alerting only. IPS = inline, actively blocks suspicious traffic. IPS false positives can block legitimate traffic.
Translates private IPs to a public IP for internet access. Allows many devices to share one public IP. All home and business routers do NAT.
53 — UDP for standard queries (fast), TCP for large responses and zone transfers between DNS servers.
Discover (client broadcasts) → Offer (server offers IP) → Request (client accepts) → Acknowledge (server confirms lease and gives full IP config).
3389. Never expose directly to the internet — put behind VPN. An exposed RDP port is scanned by attackers within minutes.
A user says they have no internet access. Apply the OSI model bottom-up.
LAYER 1 — Physical Is the Ethernet cable plugged in at both ends? Is the green link light on? For Wi-Fi: is the adapter enabled? Is airplane mode off? Quick test: can you see the network connection icon in the taskbar?
LAYER 3 — Network (skip layer 2 for most user scenarios)
Open Command Prompt: ipconfigWhat you see:
• 169.254.x.x → APIPA. DHCP failed. Try: ipconfig /release then ipconfig /renew. If APIPA persists, check that DHCP server is reachable and the correct VLAN is configured on the switch port.
• Valid IP (192.168.x.x) → has an IP address, continue.Can you reach the gateway?
ping 192.168.1.1 (or whatever the gateway IP is in ipconfig)
• Fails → can't reach the router. Check cable, check switch port, check gateway IP is correct.
• Succeeds → can reach the router, problem is further out.Can you reach the internet by IP?
ping 8.8.8.8
• Fails → internet connection itself is down. Check the router's WAN status (log into router).
• Succeeds → internet works, but something else is wrong.Can you reach the internet by name?
ping google.com
• Fails → DNS is broken. Check ipconfig /all to see what DNS servers are configured.
If the DNS server is the local DC (for a domain machine) — is the DC accessible?
Test: ping [DC's IP address]
If the DNS server is wrong (pointing to 8.8.8.8 or the router when it should be the DC):
Fix in adapter settings or via: netsh interface ip set dns "Ethernet" static [DC's IP]
• Succeeds → DNS works. Internet works. The problem may be browser-specific (try a different browser) or a specific service, not internet connectivity.LAYER 4 — Application/Port specific If the user can reach google.com but a specific work application can't connect: Test-NetConnection -ComputerName [server] -Port [port] in PowerShell If the connection fails: check firewall rules on both client and server for that specific port.