Cyber Questline
On this page
Back to Network+

Networking Fundamentals and Physical Networks

CompTIA Network+ N10-009 Study GuideHow To Use This GuideHigh-Yield Memory AnchorsModule 1: Network ModelsBig PictureOSI ModelEncapsulation and DecapsulationEthernet Frame BasicsMAC AddressesBroadcast vs UnicastIP Addressing IntroductionPackets and PortsModule 1 Must KnowModule 2: Cabling and TopologyBig PictureNetwork TopologiesCoaxial CablingTwisted Pair CablingFiber Optic CablingFire RatingsModule 2 Must KnowModule 3: Ethernet BasicsBig PictureWhat Ethernet IsEthernet FramesTerminating Twisted PairHubs vs SwitchesConnecting SwitchesModule 3 Must KnowModule 4: Ethernet StandardsBig PictureReading Ethernet Names100BaseTGigabit Ethernet10-Gigabit EthernetTransceiversDuplex and Ethernet ConnectivityConnecting Ethernet ScenariosModule 4 Must KnowModule 5: Installing a Physical NetworkBig PictureStructured CablingTerminating Structured CablingEquipment RoomDistribution Panels and BlocksTesting CableTroubleshooting Structured CablingToner and ProbeWired Connection ScenariosModule 5 Must KnowN10-009 Modern Network FoundationsCloud And Virtual Network FoundationsSoftware-Defined Networks And WANsSeptember 2026 Worked ExamplesOptical Power And Short Rack LinksPermanent Links And Channel LimitsPower Runtime And Installation EvidenceCollapsed Core And Traffic FlowsPrivate Address BoundariesAnycast Service SelectionVoice And Data On One Access PortAuthoritative SourcesExam StrategyIf A Question Mentions No LinkIf A Question Mentions One Host Cannot CommunicateIf A Question Mentions Slow Or Intermittent EthernetIf A Question Mentions Air Handling SpaceIf A Question Mentions Long Distance Or EMIIf A Question Mentions Tracing An Unknown CableIf A Question Mentions Certifying Cat 6/Cat 6aFinal Review Checklist
CompTIA Network+ N10-009
Reviewed 2026-09-08
Search libraryPractice

CompTIA Network+ N10-009 Study Guide

Course: Networking Fundamentals and Physical Networks Source basis: Coursera course videos and readings reviewed on 2026-06-19 Technical audit: All local questions and guide text reviewed on 2026-09-08 against N10-009 and the public primary references below; the original course materials were not re-accessed.

Purpose: Exam-focused study notes for the course modules. This is an original study guide, not a transcript.

How To Use This Guide

  1. Read one module at a time.
  2. Memorize the "must know" lists first.
  3. Use the checklists to identify weak spots.
  4. Take the practice question set after reviewing all modules.
  5. Review explanations for missed questions, then return to the related section.

High-Yield Memory Anchors

Module 1: Network Models

Big Picture

Network models help explain how data moves through a network. They divide a complex communication process into layers, which makes design, troubleshooting, and security easier. The course emphasizes the OSI seven-layer model as a way to reason from the physical cable or radio signal up to the user-facing application.

OSI Model

OSI model troubleshooting stackUse the layers as a map: start where the symptom appears, then move up or down instead of guessing.
7 Applicationuser-facing protocols
6 Presentationformat/encryption
5 Sessionconversations
4 TransportTCP/UDP ports
3 NetworkIP routing
2 Data LinkMAC/VLANs
1 Physicalcables/radio/bits

The OSI model has seven layers:

  1. Physical
  2. Data Link
  3. Network
  4. Transport
  5. Session
  6. Presentation
  7. Application

Layer 1: Physical

The Physical layer defines how bits move from one device to another. It includes cabling, connectors, radio frequencies, signaling, voltages, pinouts, and the physical properties of a link.

Know these examples:

Layer 1 problems usually look like no link, damaged cable, bad connector, wrong cable type, excessive distance, broken fiber, EMI, or failed hardware port.

The Data Link layer handles local network delivery. Ethernet operates here. Devices use MAC addresses to determine whether a frame is meant for them.

Important Layer 2 concepts:

Layer 2 handles delivery on the local link. An Ethernet receiver normally accepts frames addressed to its MAC, broadcasts, and subscribed multicast destinations. Promiscuous mode changes filtering for authorized capture; destination filtering is separate from checking frame integrity.

Layer 3: Network

The Network layer uses logical addressing. IP is the core Layer 3 protocol for Network+.

Important Layer 3 concepts:

MAC addresses are useful on the local LAN, but IP addressing is needed for communication across routed networks such as the internet.

Layer 4: Transport

The Transport layer provides application multiplexing through ports. TCP segments a byte stream and reconstructs it in order. UDP preserves datagram boundaries and does not automatically segment a large application message into reliable smaller messages; the application must choose suitable message sizes. IP fragmentation is a separate network-layer function.

Know these Layer 4 ideas:

The course highlights that Ethernet has a practical payload limit, so large files must be chopped into smaller chunks before transmission.

Layers 5-7: Upper Layers

The upper layers deal with conversations, formatting, encryption, and user-facing network services.

For Network+, you should know the layers, what each one does, and how to map common protocols/devices/problems to the right layer.

Encapsulation and Decapsulation

When data is sent, each layer adds its own information. This is encapsulation. When data is received, each layer removes and processes its own information. This is decapsulation.

Common data units:

Ethernet Frame Basics

An Ethernet frame carries data across a local Ethernet network.

Key frame fields to understand:

The frame check sequence does not fix errors by itself. It lets the receiving device detect that a frame was damaged.

MAC Addresses

A MAC address is a 48-bit hardware address used at Layer 2. It is commonly written as six pairs of hexadecimal digits.

Important facts:

See RFC 9542 for EUI-48, organizational identifiers, and locally administered address distinctions.

Do not confuse MAC and IP addresses. MAC addresses are local physical/link-layer identifiers. IP addresses are logical network-layer identifiers used across routed networks.

Broadcast vs Unicast

Unicast traffic is one-to-one. A frame is sent to one destination MAC address.

Broadcast traffic is one-to-all within the local broadcast domain. Ethernet broadcast uses destination MAC address FF:FF:FF:FF:FF:FF.

Exam points:

IP Addressing Introduction

IPv4 addresses are 32-bit logical addresses. They are written in dotted decimal, such as 192.168.1.10.

IP addresses identify:

Routers use the network portion to move packets between networks. Hosts use a subnet mask or prefix length to determine whether a destination is local or remote.

Packets and Ports

IP packets carry Layer 4 data. TCP and UDP use port numbers so traffic reaches the correct application or service.

Examples to know:

Ports let one host run many network services at the same IP address.

Transmission Control Protocol (TCP) provides reliable ordered byte-stream delivery and retransmission. User Datagram Protocol (UDP) does not provide retransmission or ordering itself; an application can add its own recovery. A registered port is a conventional service association, not proof of application identity or encryption. Sources reviewed 2026-09-20: IANA service registry, RFC 9293, RFC 768, and RFC 1350.

Module 1 Must Know

Module 2: Cabling and Topology

Big Picture

Physical network design includes topology, cabling type, connector type, distance, bandwidth, safety ratings, and installation environment. A good design must work electrically or optically, be maintainable, and meet building/fire requirements.

Network Topologies

Bus

All devices share one backbone cable. Older coaxial Ethernet used bus designs.

Pros:

Cons:

Ring

Each device connects to two neighbors, forming a loop.

Pros:

Cons:

Star

Each device connects to a central device, usually a switch.

Pros:

Cons:

Mesh

Devices have multiple interconnections.

Pros:

Cons:

Hybrid

Most real networks combine topology ideas. A LAN may be physically star-shaped, while switches may be connected in a partial mesh or hierarchical design.

Coaxial Cabling

Coax uses a central conductor, insulation, shielding, and an outer jacket. It was common in older Ethernet and is still seen in cable internet and video distribution.

Know:

Exam value:

Twisted Pair Cabling

Twisted pair is the most common copper media for Ethernet LANs.

Types:

Why twist pairs?

Common categories:

Connector:

Important maximum:

Fiber Optic Cabling

Fiber uses light instead of electrical signals.

Advantages:

Types:

Common connectors:

Fiber exam cautions:

Fire Ratings

Cable jacket ratings matter because cables can spread smoke or flame through a building.

Common ratings:

Exam clue:

Module 2 Must Know

Module 3: Ethernet Basics

Big Picture

Ethernet defines how devices communicate on wired LANs. Modern Ethernet uses switches, MAC addressing, frames, and structured cabling. Understanding Ethernet means understanding frames, termination, switching, and how devices connect.

What Ethernet Is

Ethernet is a family of LAN technologies defined by IEEE 802.3. It includes physical media standards and frame behavior.

Core points:

Ethernet Frames

Important frame components:

An ordinary untagged Ethernet MAC frame is 64-1518 bytes from destination address through FCS, excluding the 8-byte preamble/start delimiter and interpacket gap. A single 802.1Q tag adds 4 bytes to the usual maximum. The common IP MTU is 1500 bytes, not the complete frame size. Jumbo-frame MTU and frame-size terminology vary by platform, so verify compatible limits throughout the path.

Terminating Twisted Pair

Twisted pair cables must be terminated correctly so each wire lands on the correct pin.

Standards:

Straight-through cable:

Crossover cable:

Important installation habits:

Hubs vs Switches

Hub

A hub is a Layer 1 device. It repeats incoming bits out all other ports.

Consequences:

Switch

A switch is a Layer 2 device. It learns source MAC addresses and forwards frames intelligently.

Consequences:

Exam contrast:

Connecting Switches

Switches can be connected to extend the network.

Important concepts:

If connecting switches causes unstable network behavior, suspect loops, spanning tree issues, wrong cable, disabled port, speed/duplex mismatch, or VLAN/trunk configuration problems.

Module 3 Must Know

Module 4: Ethernet Standards

Big Picture

Ethernet standards describe speed, signaling, media type, and distance. For the exam, you must decode names like 100Base-TX, 1000Base-SX, and 10GBase-LR.

Reading Ethernet Names

Examples:

General decoding:

100BaseT

100Base-T is Fast Ethernet.

Know:

Gigabit Ethernet

Common forms:

1000Base-T uses all four pairs in the cable.

10-Gigabit Ethernet

Common forms:

Exam idea:

Transceivers

Transceivers convert between the network device and the physical medium.

Common types:

Important matching rules:

Conventional QSFP/QSFP+ (quad small form-factor pluggable) uses four electrical lanes, compared with the single lane of SFP/SFP+. Four lanes do not imply four fiber strands: optical modules may use parallel fibers or multiplex wavelengths over a duplex pair. Check the module standard and host support. Cisco QSFP examples.

Duplex and Ethernet Connectivity

Half duplex:

Full duplex:

Speed/duplex mismatch can cause poor performance, errors, late collisions, and intermittent connectivity.

Connecting Ethernet Scenarios

When troubleshooting Ethernet standards and connectivity, work from physical to logical:

  1. Link light present?
  2. Correct cable type and category?
  3. Correct port and transceiver?
  4. Within distance limit?
  5. Matching speed and duplex?
  6. VLAN/trunk/access settings correct?
  7. Interface enabled?
  8. Error counters increasing?

Common symptoms:

Module 4 Must Know

Module 5: Installing a Physical Network

Big Picture

Structured cabling is the organized physical system that connects endpoints to network equipment. It includes work areas, wall jacks, horizontal cabling, patch panels, equipment rooms, racks, switches, and testing.

Structured Cabling

Structured cabling signal pathA link-light or single-host problem is often found by walking this path one segment at a time.
User deviceNIC and patch cable
Wall jackWork area outlet
Patch panelLabeled horizontal run
Access switchPort, VLAN, PoE
GatewayRouting to other networks

Structured cabling creates a predictable, maintainable physical network.

Common components:

Why it matters:

Terminating Structured Cabling

Permanent cable is often punched down to patch panels and keystone jacks rather than crimped directly like a patch cord.

Tools and parts:

Best practices:

Equipment Room

The equipment room or telecom room houses switches, routers, patch panels, racks, UPS devices, and sometimes servers.

Good equipment room design includes:

The main distribution frame (MDF) is the building's primary distribution point, commonly connecting the service entrance and backbone. An intermediate distribution frame (IDF) serves a floor or local area and connects back to the MDF.

Device hardening includes administratively disabling unused switch access ports and replacing known vendor-default management passwords with unique strong managed credentials. A management VLAN or encrypted session does not remove the risk of an active unused port or a known password. These controls are listed under N10-009 objective 4.3.

Distribution Panels and Blocks

Alternative distribution hardware may include:

Exam clue:

Testing Cable

Cable testing verifies that a run works and meets requirements.

Common tools:

Common cable faults:

Troubleshooting Structured Cabling

Use a structured process:

  1. Identify the symptom.
  2. Check link lights.
  3. Check the obvious physical items first.
  4. Try a known-good patch cable.
  5. Try a known-good port.
  6. Test the permanent cable run.
  7. Check termination and pinout.
  8. Replace suspect cable if repair is not worth the time.

Common quick wins:

Toner and Probe

A toner and probe helps trace an unlabeled cable. The toner sends a signal onto the cable, and the probe detects it at the other end or along the path.

Use cases:

Limitations:

Wired Connection Scenarios

Common physical network scenarios:

Module 5 Must Know

N10-009 Modern Network Foundations

N10-009 adds cloud networking and software-defined designs to the physical and layered fundamentals. These technologies still depend on familiar forwarding concepts: an underlay carries packets, an overlay creates logical reachability, and a control plane decides policy.

Cloud And Virtual Network Foundations

Network functions virtualization (NFV) implements functions such as routing, firewalling, load balancing, and intrusion prevention as software workloads instead of requiring a dedicated hardware appliance for each function.

NFV design implications:

A virtual private cloud (VPC) is a logically isolated cloud network. A VPC commonly contains:

Cloud deployment models describe where and for whom the environment operates:

Cloud service models describe the customer's management boundary:

Scalability is the ability to increase capacity. Elasticity is the ability to add and remove capacity dynamically as demand changes. Multitenancy allows several customers to share provider infrastructure while remaining logically isolated.

Content delivery networks (CDNs) place cacheable content at geographically distributed edge locations. A CDN can reduce latency and origin load, but it does not replace authoritative DNS, application authorization, or private WAN connectivity.

Software-Defined Networks And WANs

Software-defined networking (SDN) separates or centralizes control decisions so policy can program forwarding behavior through controllers and APIs. The forwarding devices still move traffic in the data plane.

Software-defined WAN (SD-WAN) applies these ideas to branch and WAN connectivity. Common SD-WAN characteristics include:

Do not treat SDN and SD-WAN as synonyms. SDN is the broader programmable-network concept; SD-WAN focuses on WAN edge, transport selection, and branch policy.

VXLAN creates a Layer 2 overlay across a Layer 3 IP underlay. It encapsulates Ethernet frames in UDP and uses a 24-bit VXLAN network identifier (VNI), allowing far more logical segments than the traditional 12-bit VLAN identifier space. Common use cases include tenant isolation, leaf-spine fabrics, and data-center interconnect.

SASE combines WAN connectivity with cloud-delivered security capabilities such as secure web gateway, cloud access security broker, firewall as a service, and zero-trust network access. Security Service Edge (SSE) is the security-services portion of that model and does not include the SD-WAN connectivity component.

Quick distinctions:

September 2026 Worked Examples

For short rack connections, a supported direct-attach copper (DAC) cable is a twinax assembly with integrated pluggable ends. An active optical cable looks similar at its ends but carries light. A matching connector shape does not establish protocol, speed, host support, or distance compatibility.

Use dBm for absolute optical power and dB for gain or loss. Example values here are synthetic, not a specification for a particular optic:

Transmit power                 -5 dBm
Path loss                       7 dB
Expected receive power        -12 dBm  (-5 - 7)
Receiver sensitivity          -18 dBm
Headroom above sensitivity      6 dB
Required design reserve         3 dB
Remaining spare margin          3 dB

Also check the maximum receive level. A reading of -0.5 dBm exceeds a -3 dBm maximum because it is stronger, not weaker. Long-reach optics on a short path may require approved attenuation. Never increase power blindly or look into a fiber end. The vendor's receiver range and compatibility requirements govern acceptance. Cisco optical specifications.

A referenced light source and power meter measure end-to-end insertion loss. An OTDR helps localize events by distance; an inspection probe checks connector faces. These measurements answer different questions. Preserve wavelength, reference method, endpoint labels, and results. A power budget does not certify installation quality by itself. Fluke optical testing.

A 92 m fixed run plus 5 m of patch cords totals only 97 m but fails a conventional 90 m permanent-link requirement. An 87 m fixed run plus 10 m of cords totals 97 m and meets both length limits. Performance certification still matters: continuity does not prove category performance, and the wrong test limit can mask a fixed-run defect. Retain per-run results tied to both labels. Fluke permanent-link versus channel testing.

Power Runtime And Installation Evidence

A UPS must satisfy load capacity and battery runtime separately. Check both watt and VA ratings, voltage, supported receptacles, battery condition, growth allowance, and the runtime curve at the expected load. Include switch overhead and PoE endpoints. A larger VA number does not necessarily mean longer runtime.

For a synthetic 450 W load and six-minute target, a compatible 700 W UPS rated for eight minutes at 450 W meets those two requirements; a 900 W model providing four minutes does not. Validate the required bridge to generator operation through an approved test. Qualified facilities staff handle circuit capacity, grounding, humidity, cooling, and fire-suppression design. A PDU distributes power but supplies no battery energy. Schneider sizing and runtime.

The measured load must fit within both the UPS watt limit and its VA limit; passing only one is insufficient. A runtime figure applies to its documented load, not automatically to a higher one. Schneider Electric on watt and VA limits.

Collapsed Core And Traffic Flows

A collapsed-core campus combines distribution policy/aggregation and core backbone duties in one tier. Redundant devices may share that tier; two devices do not create two architectural layers. A three-tier campus separates access, distribution, and core. A leaf-spine fabric connects leaves through spines for predictable east-west paths. North-south traffic crosses between an environment and external users or networks; east-west traffic moves among internal workloads. Cisco campus designs.

Private Address Boundaries

RFC 1918 reserves 10.0.0.0/8, 172.16.0.0/12, and 192.168.0.0/16 for private use. The middle range ends at 172.31.255.255, not 172.255.255.255. For example, 172.28.9.7 is inside; 172.32.9.7 is outside. Outside RFC 1918 does not automatically mean usable public unicast: other special-purpose ranges exist. RFC 1918, section 3.

Anycast Service Selection

An anycast service presents the same service IP at multiple locations. Routing chooses one instance for traffic; it does not copy each packet to all locations. A nearby geographic site may lose to another site's routing policy. Changing paths can affect stateful sessions, so anycast is not automatically transparent application failover. RFC 4786.

Voice And Data On One Access Port

A supported phone-facing access port can combine an untagged data VLAN and a tagged voice VLAN. With data VLAN 40 and voice VLAN 140, the attached PC's untagged frames enter VLAN 40 and the phone's tagged voice enters VLAN 140. Both VLANs need the appropriate upstream paths and services. This does not mean every user port should become an unrestricted trunk, and voice VLAN membership is not proof of device identity. Cisco voice VLAN behavior.

Authoritative Sources

Reviewed 2026-09-08. Worked values and practice scenarios are original; source documents establish the underlying behavior, not exam answers.

Exam Strategy

Think Layer 1 first:

If A Question Mentions One Host Cannot Communicate

Check:

If A Question Mentions Slow Or Intermittent Ethernet

Check:

If A Question Mentions Air Handling Space

Choose plenum-rated cable.

If A Question Mentions Long Distance Or EMI

Choose fiber optic cabling.

If A Question Mentions Tracing An Unknown Cable

Choose toner and probe.

If A Question Mentions Certifying Cat 6/Cat 6a

Choose cable certifier, not just a basic continuity tester.

Final Review Checklist