CompTIA Network+ (N10-009) – Core Vocabulary

0.0(0)
studied byStudied by 1 person
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/109

flashcard set

Earn XP

Description and Tags

Key vocabulary terms distilled from the CompTIA Network+ (N10-009) study notes, covering foundational concepts, protocols, security, troubleshooting, and modern networking practices. Use these flashcards to reinforce essential definitions and prepare for exam objectives.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

110 Terms

1
New cards

CompTIA Network+

Vendor-neutral certification covering configuration, management, and troubleshooting of network infrastructure.

2
New cards

OSI Model

Seven-layer reference framework used to categorize network functions (Physical through Application).

3
New cards

TCP/IP Model

Practical four-layer model (Link, Internet, Transport, Application) underpinning modern networks.

4
New cards

Physical Layer

OSI Layer 1; transmits raw bits over a medium and defines cabling, connectors, and signaling.

5
New cards

Data Link Layer

OSI Layer 2; frames bits, performs MAC addressing, and handles error detection.

6
New cards

Network Layer

OSI Layer 3; responsible for logical addressing and routing using IP.

7
New cards

Transport Layer

OSI Layer 4; provides end-to-end communication with TCP (reliable) or UDP (unreliable).

8
New cards

Session Layer

OSI Layer 5; establishes, manages, and terminates sessions between hosts.

9
New cards

Presentation Layer

OSI Layer 6; formats, compresses, and encrypts data for the application layer.

10
New cards

Application Layer (OSI)

OSI Layer 7; interface where user applications access network services.

11
New cards

Protocol Data Unit (PDU)

Generic term for data at each OSI layer (bits, frames, packets, segments, data).

12
New cards

MAC Address

Unique 48-bit hardware address assigned to a network interface card (NIC).

13
New cards

IP Address

Logical 32-bit (IPv4) or 128-bit (IPv6) address used for host identification and routing.

14
New cards

Subnet Mask

Bitmask that separates the network portion from the host portion of an IPv4 address.

15
New cards

CIDR Notation

Slash format (/24) expressing how many bits are in the network prefix.

16
New cards

Default Gateway

Router IP address that a host uses to send traffic to other networks.

17
New cards

DHCP

Dynamic Host Configuration Protocol; automatically assigns IP settings to clients.

18
New cards

DNS

Domain Name System; translates human-readable names into IP addresses.

19
New cards

NTP

Network Time Protocol; synchronizes clocks across network devices.

20
New cards

TCP

Transmission Control Protocol; connection-oriented, reliable transport with three-way handshake.

21
New cards

UDP

User Datagram Protocol; connectionless, best-effort transport with minimal overhead.

22
New cards

ICMP

Internet Control Message Protocol; sends diagnostic and error messages (e.g., ping).

23
New cards

Socket

Combination of IP address and port number that uniquely identifies a network service.

24
New cards

Well-Known Ports

Port numbers 0–1023 reserved for common services (e.g., 80 HTTP, 443 HTTPS).

25
New cards

Registered Ports

Port numbers 1024–49151 assigned for specific applications by IANA.

26
New cards

Ephemeral Ports

Dynamic ports 49152–65535 chosen by clients for temporary connections.

27
New cards

HTTP

Hypertext Transfer Protocol; unencrypted web traffic on port 80.

28
New cards

HTTPS

Encrypted web traffic using SSL/TLS on port 443.

29
New cards

FTP

File Transfer Protocol; uses ports 20 (data) and 21 (control) to transfer files.

30
New cards

SFTP

SSH File Transfer Protocol; encrypted file transfer over port 22.

31
New cards

SMTP

Simple Mail Transfer Protocol; sends e-mail, port 25 (or 465/587 secure).

32
New cards

IMAP

Internet Message Access Protocol; retrieves e-mail while leaving it on the server, port 143 / 993 secure.

33
New cards

POP3

Post Office Protocol v3; downloads e-mail, port 110 / 995 secure.

34
New cards

SSH

Secure Shell; encrypted remote login and tunneling over port 22.

35
New cards

Telnet

Unencrypted remote terminal protocol on port 23 (insecure, replaced by SSH).

36
New cards

RDP

Remote Desktop Protocol; GUI remote access to Windows hosts on port 3389.

37
New cards

SNMP

Simple Network Management Protocol; monitors devices (UDP 161/162).

38
New cards

Syslog

Standard for sending event messages to a logging server (UDP 514).

39
New cards

Spanning Tree Protocol (STP)

Layer 2 protocol (802.1D) that prevents switching loops by blocking redundant paths.

40
New cards

VLAN

Virtual Local Area Network; logically segments Layer 2 broadcast domains on a switch.

41
New cards

Trunk Port

Switch port carrying traffic for multiple VLANs, typically using 802.1Q tagging.

42
New cards

Native VLAN

Untagged VLAN on an 802.1Q trunk; should match on both ends.

43
New cards

Voice VLAN

Dedicated VLAN configured to prioritize VoIP traffic.

44
New cards

Link Aggregation

Combines multiple physical links into one logical link for redundancy/bandwidth (LACP).

45
New cards

PoE

Power over Ethernet; delivers electrical power to devices through network cabling.

46
New cards

Collision Domain

Network segment where Ethernet frames can collide; each switch port is its own domain.

47
New cards

Broadcast Domain

Layer 2 area where a broadcast packet is forwarded; separated by routers or VLANs.

48
New cards

CIDR Subnetting Formula

Number of hosts per subnet = 2^h − 2, where h = host bits.

49
New cards

Private IPv4 Ranges

10.0.0.0/8, 172.16.0.0–172.31.255.255/12, 192.168.0.0/16 (RFC 1918).

50
New cards

Loopback Address

127.0.0.1 (IPv4) or ::1 (IPv6); used to test local TCP/IP stack.

51
New cards

APIPA

Automatic Private IP Addressing; 169.254.x.x self-assigned when DHCP fails.

52
New cards

SLAAC

Stateless Address Autoconfiguration; IPv6 hosts self-assign addresses using router advertisements.

53
New cards

Anycast

IPv6 addressing method where multiple devices share the same address; traffic goes to nearest host.

54
New cards

NAT

Network Address Translation; translates private IP addresses to public ones at a router or firewall.

55
New cards

PAT

Port Address Translation (NAT overload); many private IPs share one public IP using port numbers.

56
New cards

Routing Table

Data structure in a router listing destination networks and the next hop to reach them.

57
New cards

Administrative Distance

Metric that ranks the trustworthiness of routing information sources (lower = preferred).

58
New cards

OSPF

Open Shortest Path First; link-state IGP using cost metric.

59
New cards

RIP

Routing Information Protocol; distance-vector IGP using hop count.

60
New cards

BGP

Border Gateway Protocol; path-vector EGP that routes between autonomous systems on the Internet.

61
New cards

First Hop Redundancy Protocol (FHRP)

Provides default-gateway redundancy (e.g., HSRP, VRRP, GLBP).

62
New cards

HSRP

Hot Standby Router Protocol (Cisco); elects active/standby routers for gateway redundancy.

63
New cards

GRE Tunnel

Generic Routing Encapsulation; encapsulates many protocols in IP tunnels.

64
New cards

VPN

Virtual Private Network; encrypted tunnel over public networks for secure remote connectivity.

65
New cards

IPsec

Suite that secures IP traffic with authentication (AH) and encryption (ESP).

66
New cards

Split Tunnel

VPN setup where only corporate traffic passes through the tunnel; internet traffic goes directly out.

67
New cards

Captive Portal

Web page forcing authentication or agreement before granting network access.

68
New cards

WEP

Original Wi-Fi security using RC4; vulnerable and deprecated.

69
New cards

WPA2

Wi-Fi security standard using AES-CCMP; common in modern networks.

70
New cards

WPA3

Latest Wi-Fi security standard introducing SAE for stronger authentication.

71
New cards

SSID

Service Set Identifier; human-readable name of a Wi-Fi network.

72
New cards

RSSI

Received Signal Strength Indicator; measurement of wireless signal power at a client device.

73
New cards

Attenuation

Loss of signal strength as it travels through a medium.

74
New cards

Multipath

Phenomenon where RF signals reach a receiver via multiple paths, causing fading or distortion.

75
New cards

Cable Certifier

Tool that tests and documents cable performance to a given category standard.

76
New cards

OTDR

Optical Time Domain Reflectometer; locates faults and measures loss in fiber cables.

77
New cards

Loopback Plug

Connector that routes transmit pins to receive pins to test network interfaces.

78
New cards

Packet Sniffer

Software (e.g., Wireshark, tcpdump) that captures and analyzes network frames.

79
New cards

NetFlow

Cisco protocol exporting summarized flow statistics for traffic analysis.

80
New cards

SIEM

Security Information and Event Management platform aggregating logs and alerts for analysis.

81
New cards

Mean Time To Repair (MTTR)

Average time required to fix a failed component and restore service.

82
New cards

Mean Time Between Failures (MTBF)

Average operational time between inherent failures of a system.

83
New cards

RTO

Recovery Time Objective; maximum acceptable time to restore a service after an outage.

84
New cards

RPO

Recovery Point Objective; maximum acceptable data loss (time) measured in backups.

85
New cards

Hot Site

Fully equipped alternate location ready for immediate use after a disaster.

86
New cards

Patch Management

Process for assessing, testing, and deploying software updates to fix vulnerabilities.

87
New cards

Change Management

Formal process to request, assess, approve, and document modifications to IT systems.

88
New cards

Baseline Configuration

Documented, secure standard settings from which systems are deployed and measured.

89
New cards

Automation

Use of scripts or tools to perform repetitive tasks without human intervention.

90
New cards

Orchestration

Coordinating multiple automated tasks across systems to achieve a workflow.

91
New cards

Infrastructure as Code (IaC)

Managing and provisioning infrastructure via machine-readable definition files.

92
New cards

Git

Distributed version-control system for tracking changes in files and coordinating work.

93
New cards

REST API

Representational State Transfer interface using standard HTTP verbs and JSON payloads.

94
New cards

SNMP

Simple Network Management Protocol; queries and sets device parameters (v3 adds security).

95
New cards

Syslog Severity 0

Emergency – system is unusable; highest priority in syslog.

96
New cards

Syslog Severity 7

Debug – lowest priority informational messages for troubleshooting.

97
New cards

Ping

ICMP Echo utility verifying host reachability and measuring round-trip time.

98
New cards

Traceroute

Diagnostic tool displaying the path packets take to a destination hop by hop.

99
New cards

ARP Cache

Table mapping IP addresses to MAC addresses on a local host.

100
New cards

Split Horizon

Distance-vector technique preventing routing loops by not advertising a route back on the interface it was learned.