F 100 Most Frequently Asked Cisco CCNA & Networking Questions - The Network DNA: Networking, Cloud, and Security Technology Blog

100 Most Frequently Asked Cisco CCNA & Networking Questions

📡 CCNA & Networking Questions

100 Most Frequently Asked Cisco CCNA & Networking Questions

The ultimate study companion for CCNA candidates and networking professionals. 

📚 100 Questions ✅ Expert Answers 🎯 CCNA Exam Ready 🔴 www.thenetworkdna.com
🌐

Networking Basics — Questions 1 to 15

Foundational concepts every CCNA candidate must know
Q1

What is the difference between a hub, switch, and router?

This is the single most asked question on r/ccna for beginners. Here is the clear breakdown:

🔵 Hub (Layer 1): A dumb repeater. Broadcasts all incoming data to every port. Causes collisions and is obsolete in modern networks. Uses half-duplex communication.
🟢 Switch (Layer 2): Intelligent device that learns MAC addresses and forwards frames only to the correct port. Supports full-duplex and eliminates collisions. Creates separate collision domains per port.
🟠 Router (Layer 3): Routes packets between different networks using IP addresses. Separates broadcast domains. Makes intelligent path decisions using routing protocols like OSPF, EIGRP, and BGP.
💡 Reddit Tip: Remember — Switches forward by MAC address, Routers forward by IP address. This comes up constantly in CCNA exam questions.
Q2

What is a MAC address and how is it different from an IP address?

MAC Address (Media Access Control): A 48-bit hardware address burned into every NIC (network interface card) by the manufacturer. Written in hexadecimal format like AA:BB:CC:DD:EE:FF. It is a Layer 2 address used within a local network segment.

IP Address: A logical Layer 3 address assigned by a network administrator or DHCP. Can change. Used for routing across networks. Format: 192.168.1.10 (IPv4) or 2001:db8::1 (IPv6).

💡 Key Difference: MAC = Physical identity (stays with the device). IP = Logical identity (can be changed, routable across networks). ARP maps IP addresses to MAC addresses on a local segment.
Q3

What is the difference between TCP and UDP?

Feature TCP UDP
ConnectionConnection-oriented (3-way handshake)Connectionless
ReliabilityReliable — guarantees deliveryUnreliable — best effort
SpeedSlower (overhead)Faster (less overhead)
Use CasesHTTP, HTTPS, FTP, SSH, SMTPDNS, DHCP, VoIP, Video, TFTP
Error CheckingYes — acknowledgment + retransmitBasic checksum only
Q4

What is DHCP and how does it work? (DORA process)

DHCP (Dynamic Host Configuration Protocol) automatically assigns IP addresses to devices on a network. It uses Port 67 (server) and Port 68 (client) over UDP.

📢
D — Discover
Client broadcasts to find DHCP server
📩
O — Offer
Server offers an available IP address
R — Request
Client requests the offered IP
A — Acknowledge
Server confirms IP lease to client
Q5

What is DNS and how does it resolve domain names to IP addresses?

DNS (Domain Name System) is the internet's phone book. It translates human-readable domain names like www.google.com into IP addresses like 142.250.80.36. DNS uses UDP port 53 (TCP port 53 for zone transfers).

Resolution Process: Your device checks local cache → queries recursive resolver → resolver checks root server → TLD server (.com) → authoritative nameserver → returns IP address to client → connection is made.

Q6

What is NAT and why is it used in networking?

NAT (Network Address Translation) allows multiple private IP addresses to share a single public IP address. It is essential because IPv4 only supports ~4.3 billion addresses, which are nearly exhausted.

Static NAT
One-to-one mapping. One private IP maps to one public IP.
Dynamic NAT
Pool of public IPs assigned dynamically to private IPs.
PAT / NAT Overload
Many private IPs share ONE public IP using different port numbers. Most common type used in homes and offices.
Q7

What is ARP and how does it work?

ARP (Address Resolution Protocol) maps known IP addresses to unknown MAC addresses on a local network segment. When Host A wants to communicate with 192.168.1.20 on the same subnet, it broadcasts an ARP Request: "Who has 192.168.1.20? Tell 192.168.1.10." The device with that IP replies with its MAC address (ARP Reply). The result is stored in the ARP cache for future use. ARP operates at Layer 2/3 boundary and only works within the same broadcast domain.

Q8

What is the difference between a collision domain and a broadcast domain?

💥 Collision Domain
A network segment where devices compete to transmit on the same medium simultaneously. Hubs create one large collision domain. Each switch port = its own collision domain.
📢 Broadcast Domain
A logical area where broadcast packets are received by all devices. Switches forward broadcasts everywhere. Routers and VLANs separate broadcast domains.
Q9

What are private IP address ranges and why are they used?

Private IP ranges (defined in RFC 1918) are not routable on the public internet and are reserved for internal network use:

ClassRangeCIDRUsage
Class A10.0.0.0 – 10.255.255.255/8Large enterprises
Class B172.16.0.0 – 172.31.255.255/12Medium networks
Class C192.168.0.0 – 192.168.255.255/16Home & small office
Q10

What is a default gateway and why does every device need one?

A default gateway is the IP address of the router interface on your local subnet. When a device wants to communicate with an IP address outside its own subnet, it sends the packet to the default gateway, which then routes it to the correct destination. Without a default gateway, devices can only communicate within their own local subnet and cannot reach the internet or other networks.

Q11

What is the difference between full-duplex and half-duplex?

Half-duplex: Data can only travel in one direction at a time. Think of a walkie-talkie — you can talk OR listen but not both simultaneously. Used by hubs. Causes collisions in CSMA/CD environments.

Full-duplex: Data can travel in both directions simultaneously. Like a telephone call. Modern switches support full-duplex, eliminating collisions and doubling effective bandwidth. Always use full-duplex on switch-to-switch and switch-to-host connections.

Q12

What are the differences between IPv4 and IPv6?

FeatureIPv4IPv6
Address Size32-bit128-bit
Total Addresses~4.3 billion340 undecillion
Format192.168.1.12001:db8::1
NAT RequiredYes (address exhaustion)No (enough addresses)
Header SizeVariable (20–60 bytes)Fixed (40 bytes)
Q13

What is bandwidth vs throughput vs latency?

Bandwidth: The maximum theoretical capacity of a link (e.g., 1 Gbps fiber). Like the number of lanes on a highway.

Throughput: The actual data successfully transferred per second. Always less than bandwidth due to overhead, errors, and congestion. Like cars actually flowing on that highway.

Latency: The delay between sending and receiving data, measured in milliseconds (ms). Critical for real-time applications like VoIP and gaming. Like the travel time from point A to B.

Q14

What is a loopback address and what is it used for?

The loopback address 127.0.0.1 (IPv4) or ::1 (IPv6) refers to the local machine itself. It is used to test the TCP/IP stack on a device without sending traffic to the actual network. If you can ping 127.0.0.1 successfully, the local networking stack is working. On Cisco routers, logical loopback interfaces are used for BGP peering, router IDs in OSPF, and management access.

Q15

What is the difference between unicast, multicast, and broadcast?

🎯 Unicast
One-to-one. Packet sent to a single specific destination. Most common type of traffic. Example: web browsing, SSH.
📻 Multicast
One-to-many (selected group). Sent to subscribed devices only. Range: 224.0.0.0–239.255.255.255. Used by OSPF, video streaming.
📢 Broadcast
One-to-all. Sent to every device on the subnet. Destination: 255.255.255.255 or subnet broadcast. Used by ARP, DHCP Discover.
📶

OSI Model & TCP/IP Stack — Questions 16 to 25

The most tested framework in every CCNA exam
Q16

What are the 7 layers of the OSI model and what does each do?

Memory Aid: "Please Do Not Throw Sausage Pizza Away" (Physical, Data Link, Network, Transport, Session, Presentation, Application)

7 Application User-facing apps — HTTP, FTP, SMTP, DNS, DHCP
6 Presentation Data format, encryption, compression — SSL/TLS, JPEG
5 Session Manages sessions between apps — NetBIOS, RPC
4 Transport End-to-end delivery — TCP, UDP, Port numbers, Segments
3 Network Routing and logical addressing — IP, ICMP, Routers, Packets
2 Data Link Node-to-node delivery — MAC addresses, Switches, Frames, ARP
1 Physical Raw bits — Cables, Hubs, Signals, NIC hardware, Bits
Q17 What is the TCP/IP model and how does it differ from OSI?
The TCP/IP model has 4 layers: Network Access (OSI L1+L2), Internet (OSI L3), Transport (OSI L4), and Application (OSI L5–L7). The OSI model is a theoretical reference framework while TCP/IP is the actual protocol suite used on the internet. CCNA focuses heavily on OSI for understanding, but the internet runs on TCP/IP.
Q18 What is encapsulation and de-encapsulation in networking?
Encapsulation is the process of adding headers (and trailers) at each OSI layer as data travels down from Application to Physical before transmission. Each layer adds its own protocol information. De-encapsulation is the reverse — as data arrives at the destination, each layer strips off its corresponding header working from Physical up to Application. PDU names: Application=Data, Transport=Segment, Network=Packet, Data Link=Frame, Physical=Bits.
Q19 What layer does a switch operate at? What about a router?
Standard switches operate at Layer 2 (Data Link) — they forward frames based on MAC addresses. Routers operate at Layer 3 (Network) — they forward packets based on IP addresses. Multilayer switches (Layer 3 switches) can perform both switching AND routing by combining hardware-accelerated switching with routing capabilities. Hubs operate at Layer 1.
Q20 What is ICMP and how does ping use it?
ICMP (Internet Control Message Protocol) is a Layer 3 protocol used for diagnostic and error reporting. Ping uses ICMP Echo Request (Type 8) and Echo Reply (Type 0) messages to test reachability. Traceroute uses ICMP TTL-exceeded messages to map network paths. ICMP is not a transport protocol — it carries no application data. Common ICMP messages: Destination Unreachable, TTL Exceeded, Echo Request/Reply, Redirect.
Q21 What is the TCP three-way handshake?
The TCP 3-way handshake establishes a reliable connection before data transfer: Step 1 — SYN: Client sends SYN (synchronize) with its initial sequence number. Step 2 — SYN-ACK: Server responds with SYN-ACK (acknowledges client SYN + sends its own SYN). Step 3 — ACK: Client acknowledges the server's SYN. Connection is established. Termination uses a 4-step FIN/FIN-ACK process.
Q22 What are well-known port numbers every CCNA candidate must memorize?
FTP: 20/21 SSH: 22 Telnet: 23 SMTP: 25 DNS: 53 DHCP: 67/68 HTTP: 80 POP3: 110 SNMP: 161/162 HTTPS: 443 IMAP: 143 NTP: 123 Syslog: 514 TFTP: 69 BGP: 179
Q23 What is MTU and what happens if a packet is too large?
MTU (Maximum Transmission Unit) is the largest packet/frame size that can be transmitted over a network link without fragmentation. Standard Ethernet MTU = 1500 bytes. If a packet exceeds the MTU, IPv4 will fragment it into smaller pieces (if the Don't Fragment bit is not set). IPv6 does NOT fragment at routers — the source device must handle Path MTU Discovery. Jumbo frames on some enterprise networks support MTUs up to 9000 bytes.
Q24 What is TTL (Time to Live) in an IP packet?
TTL (Time to Live) is a field in the IPv4 header that limits how many router hops a packet can traverse. Each router decrements the TTL by 1. When TTL reaches 0, the router discards the packet and sends an ICMP "Time Exceeded" message back to the source. This prevents packets from looping forever in the network. Default TTL values: Windows=128, Linux/macOS=64, Cisco=255. Traceroute exploits TTL by incrementing it from 1 to map each hop in the path.
Q25 What is QoS (Quality of Service) and why does it matter for CCNA?
QoS (Quality of Service) is a set of techniques to manage network traffic and ensure that critical applications like VoIP, video conferencing, and real-time data receive guaranteed bandwidth and low latency. QoS uses traffic classification, marking (DSCP/CoS), queuing, policing, and shaping to prioritize important traffic over less critical traffic like file downloads or backups. On the CCNA exam, understand QoS markers: DSCP (Layer 3, 6 bits in IP header) and CoS (Layer 2, 3 bits in 802.1Q tag).
🔢

Subnetting — Questions 26 to 35

The skill that separates CCNA passers from failers on Reddit
Q26 What is subnetting and why is it important?
Subnetting is dividing a large network into smaller, more manageable sub-networks (subnets). Benefits include: better security (isolate departments), reduced broadcast traffic, efficient IP address utilization, and easier troubleshooting. Instead of one flat network with 254 hosts, you can create 8 subnets of 30 hosts each — limiting broadcast domains and giving network control per department.
Q27 How do I calculate the number of hosts per subnet?

Formula: Usable Hosts = 2ⁿ − 2 (where n = number of host bits). Subtract 2 for network address and broadcast address.

CIDRSubnet MaskHost BitsUsable Hosts
/24255.255.255.08254
/25255.255.255.1287126
/26255.255.255.192662
/27255.255.255.224530
/28255.255.255.240414
/30255.255.255.25222
Q28 What is VLSM (Variable Length Subnet Masking)?
VLSM allows you to use different subnet masks within the same IP address space — allocating exactly the right number of hosts to each subnet to minimize waste. For example, a WAN point-to-point link only needs 2 hosts (/30), while a floor with 50 users needs /26. VLSM is supported by classless routing protocols (OSPF, EIGRP, BGP, RIPv2). Classful protocols (RIPv1) do NOT support VLSM.
Q29 What is the difference between classful and classless addressing?
Classful addressing divides the IP space into fixed classes (A=/8, B=/16, C=/24) with no flexibility — wasting millions of addresses. Classless (CIDR) allows any prefix length (/1–/32) making allocation efficient. Modern networking is entirely classless. CIDR also enables route summarization by grouping multiple networks under one advertisement (Supernetting), reducing routing table size.
Q30 Subnetting example: What subnet does 192.168.10.130/26 belong to?
/26 = 255.255.255.192. Block size = 256 − 192 = 64. Subnets are: .0, .64, .128, .192. Since 130 falls between 128 and 191:
Network Address: 192.168.10.128
Subnet Mask: 255.255.255.192 (/26)
First Usable Host: 192.168.10.129
Last Usable Host: 192.168.10.190
Broadcast Address: 192.168.10.191
Usable Hosts: 62
Q31-35 More Subnetting Essentials: Binary conversion, Wildcard masks, Supernetting, /31 and /32

Q31 — Binary: Each octet = 8 bits. Values: 128, 64, 32, 16, 8, 4, 2, 1. Practice converting quickly: 192 = 11000000, 168 = 10101000. Memorize the powers of 2: 1,2,4,8,16,32,64,128,256.

Q32 — Wildcard Mask: The inverse of a subnet mask. Used in ACLs and OSPF. /26 mask = 255.255.255.192 → Wildcard = 0.0.0.63. Formula: 255.255.255.255 − subnet mask.

Q33 — Supernetting/Route Summarization: Combining multiple subnets into one route advertisement. Example: 10.0.0.0/24, 10.0.1.0/24, 10.0.2.0/24, 10.0.3.0/24 can be summarized as 10.0.0.0/22.

Q34 — /31 Subnet: Contains exactly 2 IP addresses with no network or broadcast addresses (RFC 3021). Used for point-to-point links between routers to conserve IP space.

Q35 — /32 Host Route: A route to a single specific host. Used in BGP, loopback interfaces, and static host routes. Example: 8.8.8.8/32 = Google DNS specific host route.

🗺

IP Routing — Questions 36 to 50

OSPF, EIGRP, static routes, and administrative distance explained
Q36 What is Administrative Distance (AD) and why does it matter?
AD is a trustworthiness metric assigned to routing information sources. Lower AD = more trusted. When multiple sources advertise the same route, the one with the lowest AD wins.
Connected: 0 Static: 1 EIGRP Summary: 5 BGP External: 20 EIGRP Internal: 90 OSPF: 110 RIP: 120 EIGRP External: 170 BGP Internal: 200
Q37 What is OSPF and how does it work? Key concepts for CCNA.
OSPF (Open Shortest Path First) is a Link State routing protocol that uses Dijkstra's SPF algorithm to calculate the shortest path to all networks. AD = 110. Key concepts: Areas (Area 0 = backbone, required), Router Types (DR, BDR, DROTHER on multi-access segments), Neighbor States (Down → Init → 2-Way → ExStart → Exchange → Loading → Full), LSA Types (Type 1 Router, Type 2 Network, Type 3 Summary, Type 5 External), Hello packets (multicast 224.0.0.5), Metric = Cost = 100Mbps / Interface Bandwidth.
Q38 What is EIGRP and how is it different from OSPF?
EIGRP (Enhanced Interior Gateway Routing Protocol) is a Cisco-proprietary (now open standard) Advanced Distance Vector protocol. AD = 90 (internal). Uses DUAL algorithm for loop-free fast convergence. Metric uses Bandwidth + Delay (by default). Supports unequal-cost load balancing (OSPF only supports equal-cost). No areas required. Neighbor relationships use Hello packets. Terms: Successor (best path), Feasible Successor (backup path in topology table), Feasibility Condition. EIGRP converges much faster than OSPF and is simpler to configure.
Q39 What is a static route and when should you use one?
A static route is a manually configured route that does not change unless you modify it. Best used for: small networks, specific routes to stub networks, default routes (0.0.0.0/0), and security-sensitive paths where you don't want dynamic protocol exposure. Cisco syntax: ip route 192.168.2.0 255.255.255.0 10.0.0.1
Q40-50 Routing Table, Longest Prefix Match, BGP basics, RIP, Floating Static Routes, Router-on-a-Stick, and more

Q40 — Routing Table: A router always picks the most specific match (longest prefix = most specific = smallest subnet). Route: C=Connected, S=Static, O=OSPF, D=EIGRP, R=RIP, B=BGP. Show with: show ip route

Q41 — Longest Prefix Match: When multiple routes match a destination, the router picks the one with the most specific (longest) prefix. /28 beats /24 which beats /16 which beats default route /0.

Q42 — Floating Static Route: A backup static route with a higher AD than the primary dynamic route. Only installed if the primary route fails. Configure with: ip route 0.0.0.0 0.0.0.0 [next-hop] 200

Q43 — Router-on-a-Stick: A single physical router interface configured with sub-interfaces to route between multiple VLANs. One trunk link connects the router to the switch. Each sub-interface uses 802.1Q encapsulation for a specific VLAN.

Q44 — BGP: Border Gateway Protocol is the routing protocol of the internet (EGP). Uses TCP port 179. AD: eBGP=20, iBGP=200. Uses path attributes (AS-PATH, NEXT-HOP, LOCAL_PREF, MED) to make routing decisions. Required for ISP connections and multi-homed networks.

Q45 — RIP: Routing Information Protocol — old, slow Distance Vector protocol. RIPv1 classful (no VLSM), RIPv2 classless. Max 15 hops (16 = unreachable). AD=120. Updates every 30 seconds. Not used in modern production networks but appears on CCNA exams.

Q46 — Route Summarization: Advertising one summary route instead of multiple specific routes. Reduces routing table size and improves convergence. OSPF inter-area summarization on ABR: area 1 range 10.0.0.0 255.255.252.0

Q47 — Routing Loop Prevention: Mechanisms include: Split Horizon (don't advertise routes back the way they came), Route Poisoning (advertise failed routes with metric of infinity), Holddown Timers (ignore updates for failed routes for a period), Maximum Hop Count (RIP=15).

Q48 — SVI (Switched Virtual Interface): A Layer 3 virtual interface on a multilayer switch assigned to a VLAN for inter-VLAN routing. More efficient than Router-on-a-Stick as routing happens in hardware. Create with: interface vlan 10 then assign IP.

Q49 — OSPF Cost: Default reference bandwidth = 100 Mbps. Cost = 100,000,000 / Interface Bandwidth (bps). FastEthernet (100M) = Cost 1. GigabitEthernet (1G) = Cost 1 (same!). Change reference bandwidth: auto-cost reference-bandwidth 1000 for Gig accuracy.

Q50 — OSPF Neighbor Requirements: Routers must agree on: Hello/Dead intervals, Area ID, Authentication, Stub flags, and MTU (if ip ospf mtu-ignore not set). Must be on same subnet. Hello=10s on broadcast, 30s on NBMA. Dead=4x Hello interval.

🔀

Switching & VLANs — Questions 51 to 62

STP, VLANs, trunking, EtherChannel — essential switching concepts
Q51 What is a VLAN and why are VLANs used?
A VLAN (Virtual Local Area Network) is a logical grouping of network devices that behave as if they are on the same physical network, regardless of their physical location. VLANs are used to: segment broadcast domains, improve security (isolate departments), reduce congestion, simplify network management, and allow logical grouping without physical rewiring. Default VLAN = VLAN 1. Native VLAN = untagged traffic on a trunk (default VLAN 1 but should be changed for security).
Q52 What is the difference between an access port and a trunk port?
Access Port: Belongs to a single VLAN. Connects end devices (PCs, printers, phones). Traffic is untagged. Configured with: switchport mode access + switchport access vlan [id]. Trunk Port: Carries multiple VLANs simultaneously using 802.1Q tagging. Connects switches to switches, switches to routers, and switches to wireless APs. Configured with: switchport mode trunk. ISL is Cisco proprietary (legacy), 802.1Q is the industry standard.
Q53 What is STP (Spanning Tree Protocol) and why is it critical?
STP (802.1D) prevents Layer 2 broadcast storms by creating a loop-free logical topology in networks with redundant switch paths. STP elects a Root Bridge (lowest Bridge ID = Priority + MAC), then all other switches calculate the shortest path to the Root Bridge. STP Port States: Blocking → Listening → Learning → Forwarding → Disabled. Convergence time: ~30–50 seconds. Improvements: RSTP (802.1w) = ~1–2 second convergence, PVST+ = per-VLAN STP (Cisco), MST (802.1s) = multiple VLANs per STP instance.
Q54 What is VTP (VLAN Trunking Protocol)?
VTP is a Cisco proprietary protocol that propagates VLAN configuration from one switch to all other switches in the same VTP domain over trunk links. Modes: Server (creates/modifies VLANs, advertises), Client (receives and synchronizes), Transparent (passes VTP messages but ignores them, stores VLANs locally). Warning: Adding a switch with a higher VTP revision number can overwrite all VLAN configs — a notorious real-world disaster. Many enterprises disable VTP and configure VLANs manually.
Q55 What is EtherChannel (LACP/PAgP) and how does it work?
EtherChannel bundles multiple physical links into one logical link for increased bandwidth and redundancy. STP sees the EtherChannel as one port, preventing blocking. Protocols: LACP (802.3ad) — open standard, active/passive modes. PAgP — Cisco proprietary, desirable/auto modes. Static (On) — forced, no negotiation. Example: 4 x 1Gbps links = 4Gbps EtherChannel. Load balancing uses src-dst MAC/IP hashing. Up to 8 active links per EtherChannel bundle.
Q56-62 DTP, PortFast, BPDU Guard, MAC Table, Port Security, Switchport Modes, and CDP/LLDP

Q56 — DTP (Dynamic Trunking Protocol): Cisco auto-negotiates trunk/access mode. Disable on user-facing ports for security: switchport nonegotiate. DTP modes: Dynamic Auto, Dynamic Desirable.

Q57 — PortFast: Skips STP Listening/Learning states on access ports, immediately putting them in Forwarding. Use only on end-device ports, never on switch-to-switch links. Enable: spanning-tree portfast

Q58 — BPDU Guard: Shuts down a PortFast-enabled port if it receives a BPDU (indicating a rogue switch connected). Prevents accidental or malicious topology changes. Enable globally: spanning-tree portfast bpduguard default

Q59 — MAC Address Table: Switches learn MAC-to-port mappings dynamically. View with: show mac address-table. Default aging time = 300 seconds. Unknown unicast frames are flooded.

Q60 — Port Security: Limits the number of MAC addresses per port. Violation actions: Shutdown (default — err-disable), Restrict (drops + logs), Protect (drops silently). Configure: switchport port-security maximum 2

Q61 — CDP (Cisco Discovery Protocol): Layer 2 Cisco proprietary protocol that discovers directly connected Cisco devices. Shows device type, IP, platform, IOS version. View: show cdp neighbors detail. Disable on internet-facing ports for security.

Q62 — LLDP (Link Layer Discovery Protocol): Open standard equivalent of CDP (IEEE 802.1AB). Works on non-Cisco devices. Enable: lldp run. View neighbors: show lldp neighbors

🔒

Network Security — Questions 63 to 73

ACLs, VPN, AAA, SSH, and security best practices
Q63 What is an ACL (Access Control List) and how does it work?
An ACL is an ordered list of permit/deny rules applied to a router interface to filter traffic. Standard ACLs (1–99, 1300–1999): filter based on source IP only. Place close to destination. Extended ACLs (100–199, 2000–2699): filter based on source IP, destination IP, protocol, and port numbers. Place close to source. Rules are processed top-to-bottom — first match wins. An implicit deny all exists at the bottom. Apply with: ip access-group [ACL] in|out
Q64 What is the difference between SSH and Telnet for remote management?
Telnet (port 23): Transmits all data including usernames and passwords in plain text. Easy to intercept with a packet capture. Should NEVER be used in production environments. SSH (port 22): Encrypts all communication using public-key cryptography. Version 2 is significantly more secure than SSHv1. Always use SSHv2. Basic SSH setup on Cisco: set hostname + domain name → generate RSA keys (crypto key generate rsa modulus 2048) → configure VTY lines to use SSH only: transport input ssh
Q65 What is AAA in network security (Authentication, Authorization, Accounting)?
Authentication: Who are you? Verifies identity through username/password, certificates, or MFA. Authorization: What are you allowed to do? Determines access levels and permissions after authentication. Accounting: What did you do? Logs all user activities, commands entered, and session details for audit trails. Cisco implements AAA through TACACS+ (Cisco proprietary, TCP 49, encrypts entire packet, separates A/A/A) and RADIUS (open standard, UDP 1812/1813, encrypts only password, combines AuthN + AuthZ).
Q66 What is a VPN (Virtual Private Network) and what types exist?
A VPN creates an encrypted tunnel over a public network (internet) to securely connect remote users or sites. Types: Site-to-Site VPN — permanently connects two office locations (uses IPsec, GRE tunnels). Remote Access VPN — allows individual users to connect securely from home (Cisco AnyConnect, SSL/TLS). IPsec VPN components: IKE Phase 1 (builds secure management channel), IKE Phase 2 (establishes IPsec tunnel for data), Authentication (pre-shared key or certificates), Encryption (AES), Integrity (SHA).
Q67-73 DHCP Snooping, DAI, VLAN Hopping, IPS vs IDS, Firewall types, 802.1X, and password encryption

Q67 — DHCP Snooping: Prevents rogue DHCP servers by designating trusted ports (uplinks to legitimate DHCP servers) and untrusted ports (user ports). Drops DHCP offers from untrusted ports. Enable: ip dhcp snooping vlan [id]

Q68 — DAI (Dynamic ARP Inspection): Prevents ARP spoofing/poisoning attacks by validating ARP packets against the DHCP snooping binding table. Drops ARP packets with invalid IP-to-MAC mappings on untrusted ports.

Q69 — VLAN Hopping: An attack where a device sends frames tagged to reach a different VLAN. Prevention: disable DTP on access ports (switchport nonegotiate), change native VLAN from default VLAN 1, and manually configure all trunk ports.

Q70 — IDS vs IPS: IDS (Intrusion Detection System) = passive, monitors and alerts but does NOT block. IPS (Intrusion Prevention System) = active, sits inline in traffic path and can block malicious traffic in real-time. NGFW (Next-Gen Firewalls) include IPS functionality.

Q71 — Firewall Types: Packet Filter (L3/L4, stateless), Stateful Firewall (tracks connection state, most common), Application Layer / NGFW (inspects Layer 7 content, identifies applications), WAF (Web Application Firewall — HTTP/HTTPS specific).

Q72 — 802.1X Port-Based Authentication: Requires users/devices to authenticate before getting network access. Uses EAP (Extensible Authentication Protocol). Components: Supplicant (end device), Authenticator (switch/AP), Authentication Server (RADIUS). Until authenticated, port only allows EAP traffic.

Q73 — Cisco Password Security: Enable password (clear text, avoid), Enable Secret (MD5 hashed, use this), service password-encryption (Type 7 — weak Vigenère cipher), enable algorithm-type sha256 secret [pw] (Type 8/9 — strong hash, recommended for modern IOS).

📡

Wireless Networking — Questions 74 to 82

WiFi standards, WLC, channels, and wireless security
Q74 What are the IEEE 802.11 wireless standards? (WiFi 4, 5, 6, 6E, 7)
StandardWiFi NameBandMax SpeedYear
802.11a5 GHz54 Mbps1999
802.11b2.4 GHz11 Mbps1999
802.11g2.4 GHz54 Mbps2003
802.11nWiFi 42.4 / 5 GHz600 Mbps2009
802.11acWiFi 55 GHz6.9 Gbps2014
802.11axWiFi 6/6E2.4/5/6 GHz9.6 Gbps2021
Q75-82 WLC Architecture, CAPWAP, Non-overlapping Channels, SSID, BSS/ESS, WPA2/WPA3, and Wireless Security

Q75 — WLC (Wireless LAN Controller): Centrally manages multiple lightweight APs (LAPs). APs connect to WLC via CAPWAP tunnel. WLC handles authentication, RF management, roaming, and policy enforcement. Autonomous APs = standalone, Lightweight APs = managed by WLC, Cloud-managed = Cisco Meraki.

Q76 — CAPWAP (Control and Provisioning of Wireless Access Points): Tunneling protocol (UDP 5246 control, UDP 5247 data) used between LAPs and WLC. CAPWAP carries management and data traffic. Enables centralized policy and firmware management.

Q77 — Non-overlapping Channels (2.4 GHz): Only 3 non-overlapping channels in 2.4 GHz: 1, 6, 11. Always use these in CCNA and real deployments to avoid co-channel interference. 5 GHz has 24+ non-overlapping channels (UNII-1, UNII-2, UNII-3 bands).

Q78 — SSID, BSS, ESS: SSID = network name. BSS (Basic Service Set) = single AP + associated clients. IBSS = ad-hoc (device-to-device, no AP). ESS (Extended Service Set) = multiple APs with same SSID enabling seamless roaming.

Q79 — WEP vs WPA vs WPA2 vs WPA3: WEP = broken, never use. WPA = deprecated. WPA2 (802.11i) = AES-CCMP encryption, current standard. WPA3 = SAE (replaces PSK), 192-bit security, protects against dictionary attacks, mandatory for WiFi 6.

Q80 — WPA2 Personal vs Enterprise: Personal = Pre-Shared Key (PSK) — same key for all users, used in homes. Enterprise = 802.1X/RADIUS authentication — unique credentials per user, used in corporate environments with AAA servers.

Q81 — Wireless Interference Sources: Microwave ovens, Bluetooth devices, baby monitors, neighboring APs on overlapping channels, and cordless phones all cause 2.4 GHz interference. 5 GHz is cleaner but shorter range.

Q82 — MIMO & MU-MIMO: MIMO (Multiple Input Multiple Output) uses multiple antennas to improve throughput. MU-MIMO (Multi-User MIMO) allows an AP to communicate with multiple clients simultaneously instead of sequentially, significantly improving real-world WiFi performance in dense environments (offices, stadiums).

🎓

CCNA Exam Tips & Career Questions — Questions 83 to 100

Study resources, exam format, career advice, and Reddit's best CCNA tips
Q83 What is on the CCNA 200-301 exam? What topics are covered?
The CCNA 200-301 exam covers 6 domain areas:
20%
Network Fundamentals
20%
Network Access
25%
IP Connectivity
10%
IP Services
15%
Security Fundamentals
10%
Automation & Programmability

Exam format: ~100 questions, 120 minutes, passing score ~825/1000. Question types include MCQ, drag-and-drop, simulation (Cisco Packet Tracer-style labs), and fill-in-the-blank.

Q84 What are the best resources to study for CCNA? (Reddit's top recommendations)
📚
Wendell Odom's Official Cert Guide Vol 1 & 2The bible of CCNA prep. Most recommended on r/ccna. Comprehensive but dense.
🎥
Jeremy's IT Lab (Free YouTube + Anki)The #1 free CCNA course on Reddit. Covers every exam topic with labs. Highly structured.
🎓
Neil Anderson (CCNA Boson / Udemy)Excellent video course, very clear explanations. Great for visual learners.
🧪
Cisco Packet Tracer (Free)Official Cisco lab simulator. Essential for hands-on practice. Available free from Cisco NetAcad.
💡
Boson ExSim Practice ExamsBest practice tests available. Questions very close to actual exam format and difficulty.
🃏
Anki Flashcards (Jeremy's IT Lab deck)Spaced repetition for memorizing port numbers, AD values, protocols, commands.
Q85-100 Study timeline, labs, automation, SDN, career value, essential Cisco commands, and Reddit's top exam tips

Q85 — How long does it take to pass CCNA? Average Reddit consensus: 3–6 months with 1–2 hours daily study if you are a beginner. IT professionals with networking experience can pass in 4–8 weeks with intense study. Don't rush — understand concepts, don't just memorize dumps.

Q86 — Is CCNA worth it in 2025? Yes. CCNA remains one of the most recognized entry-level certifications globally. Average salaries for CCNA-certified professionals: $65,000–$95,000 USD. It opens doors to Network Engineer, NOC Technician, Systems Admin, and cloud networking roles.

Q87 — What Cisco IOS commands must I know for CCNA? Essential commands: show ip route, show ip interface brief, show running-config, show vlan brief, show interfaces trunk, show spanning-tree, show cdp neighbors, show ip ospf neighbor, ping, traceroute, debug ip ospf events, no shutdown.

Q88 — What is SDN (Software Defined Networking)? SDN separates the control plane (routing decisions) from the data plane (packet forwarding) and centralizes it in a software controller. Enables programmable network infrastructure. Cisco DNA Center is Cisco's SDN controller. Key concept: northbound APIs (to applications) and southbound APIs (to network devices like OpenFlow, NETCONF).

Q89 — What is network automation and why does CCNA cover it? Network automation uses scripts and APIs to configure, manage, and monitor network devices programmatically instead of manually via CLI. Tools: Python, Ansible, Terraform, Cisco DNA Center. Formats: JSON, YAML, XML. CCNA covers REST APIs, NETCONF/RESTCONF, and Cisco DNA Center basics at a conceptual level.

Q90 — What is SNMP and how is it used for network management? SNMP (Simple Network Management Protocol) is used to monitor and manage network devices. Components: Manager (NMS), Agent (on device), MIB (Management Information Base — database of device info). Versions: SNMPv1/v2c (community string, clear text — insecure), SNMPv3 (authentication + encryption — use this). Traps = unsolicited alerts from agent to manager.

Q91 — What is syslog and how does it work on Cisco devices? Syslog sends log messages from network devices to a central syslog server. Severity levels 0–7: 0=Emergency, 1=Alert, 2=Critical, 3=Error, 4=Warning, 5=Notice, 6=Informational, 7=Debugging. Memory aid: "Every Awesome Cisco Engineer Will Need Ice Daily". Configure: logging host [syslog-server-IP]

Q92 — What is NTP (Network Time Protocol)? NTP synchronizes clocks across network devices using UDP port 123. Accurate time is critical for log correlation, certificates, and Kerberos authentication. Stratum 0 = reference clock (atomic clock), Stratum 1 = directly connected, Stratum 2 = syncs from Stratum 1, etc. Configure: ntp server [IP]

Q93 — What is HSRP (Hot Standby Router Protocol)? HSRP (Cisco proprietary) provides default gateway redundancy. Multiple routers share a virtual IP address. Active router handles traffic; Standby router takes over if Active fails. Priority = 100 default (higher wins). Preempt allows higher priority router to reclaim active role. VRRP (open standard) and GLBP (Cisco, load balancing) are alternatives.

Q94 — Should I use brain dumps to pass CCNA? Every experienced Redditor emphatically says NO. Brain dumps are: against Cisco's exam policies (you can lose your certification and be banned), do not prepare you for real-world networking, and the knowledge gaps will show up in job interviews. Understand concepts — it will serve your career far better.

Q95 — What home lab should I build for CCNA practice? Options by budget: Free: Cisco Packet Tracer (best for CCNA topics) or GNS3 with IOS images. Low budget: Buy 2-3 used Cisco 2960 switches + 2 ISR routers (1841/2811) on eBay for $50–$100 total. Cloud: EVE-NG with IOS images or Cisco DevNet Always-On Sandboxes (free).

Q96 — What certifications come after CCNA? Paths from CCNA: CCNP Enterprise (routing/switching), CCNP Security, CCNP Data Center, CCNP Service Provider. Also consider: AWS/Azure cloud certs, CompTIA Network+/Security+, Juniper JNCIA, Palo Alto PCNSA, or Fortinet NSE certifications depending on career goals.

Q97 — What is the difference between in-band and out-of-band management? In-band: Management traffic travels on the same network as production data traffic (SSH, HTTPS, SNMP over the production interface). Out-of-band: Dedicated separate management network or console cable. Preferred for critical infrastructure — if the network is down, you can still access devices via OOB console/management port.

Q98 — What is the Cisco IOS mode hierarchy? User EXEC Mode (>) → Privileged EXEC Mode (#, enable) → Global Configuration Mode ((config)#, configure terminal) → Interface/Line/Router Config sub-modes. Save config: copy running-config startup-config or write memory.

Q99 — What is the difference between running-config and startup-config? running-config: Current active configuration stored in RAM. Lost on reboot if not saved. startup-config: Configuration stored in NVRAM. Loaded on boot. Always save running to startup after making changes: copy run start. View: show running-config / show startup-config

Q100 — What are the top 5 tips from r/ccna to pass the exam on the first try? 1️⃣ Do labs every day — not just watching videos. Hands-on is irreplaceable. 2️⃣ Master subnetting until it's automatic — set a 30-second goal per calculation. 3️⃣ Use spaced repetition (Anki) for commands, port numbers, and protocol facts. 4️⃣ Take Boson ExSim practice exams — if you consistently score 80%+, you're ready. 5️⃣ Understand WHY things work, not just what commands to type. The exam tests conceptual understanding, and so will every job interview afterward.

🎓

Ready to Pass Your CCNA?

You've just covered the 100 most critical CCNA and networking concepts asked on Reddit. Bookmark this page, review it weekly, and combine it with hands-on labs in Packet Tracer. The CCNA is within your reach.

📡 ccna Community 🧪 Cisco Packet Tracer 📚 Network Labs 💡 The Network DNA

This article is for educational purposes and exam preparation. Cisco, CCNA, and related marks are trademarks of Cisco Systems Inc. Always study from official Cisco materials and authorized training partners for exam preparation.