SynfraCore
Synfracore
Start Learning
Navigation

Academies

Platform

RoadmapsLabsCertificationsInterviewPYQsAI AssistantCareer
Start Learning Free🗺️ Learning Roadmaps

NetworkingCertification

Exam guides, practice questions, and prep strategies

🏆
Aligned with official exam objectives. Updated for current exam versions.· Updated 2025 · SynfraCore Networking Team
Expert Content

Networking Certification Guide

Certification Path

Entry                  Intermediate              Advanced
CompTIA Network+  →    Cisco CCNA        →        CCNP / CCIE
(vendor neutral)       (Cisco focused)            (expert level)
                       CompTIA CySA+              Juniper JNCIP
                       AWS Networking Spec.       AZ-700
CertProviderCostFormatPassing

|------|----------|------|--------|---------|

**CompTIA Network+**CompTIA$358MCQ + performance, 90 min720/900
Cisco CCNA (200-301)Cisco$330MCQ + sim, 120 min825/1000
Cisco CCNP EnterpriseCisco$400/examMCQ + lab750/1000
AWS ANS-C01AWS$300MCQ, 170 min750/1000
AZ-700Microsoft$165MCQ, 120 min700/1000

CCNA (200-301) Exam Domains

DomainWeight

|--------|--------|

Network Fundamentals20%
Network Access20%
IP Connectivity25%
IP Services10%
Security Fundamentals15%
Automation and Programmability10%

Critical Topics — Must Know

SUBNETTING (must be instant):
  /24 → 256 hosts (254 usable) | /25 → 128 | /26 → 64 | /27 → 32 | /28 → 16
  Formula: hosts = 2^(32-prefix) - 2
  
  VLSM example:
  192.168.1.0/24 → split into:
    Subnet A (50 hosts): /26 (64 addresses) → 192.168.1.0/26
    Subnet B (25 hosts): /27 (32 addresses) → 192.168.1.64/27
    Subnet C (10 hosts): /28 (16 addresses) → 192.168.1.96/28

OSI MODEL (all 7 layers + protocols):
  7 Application: HTTP, HTTPS, FTP, SMTP, DNS, DHCP, SNMP
  6 Presentation: TLS/SSL, encryption, compression
  5 Session: NetBIOS, RPC, session management
  4 Transport: TCP (reliable) / UDP (fast) — segments/datagrams
  3 Network: IP, ICMP, ARP — packets, routing
  2 Data Link: Ethernet, Wi-Fi (802.11), MAC addresses — frames
  1 Physical: cables, signals, bits

ROUTING PROTOCOLS:
  Static: manual routes (small networks, default route)
  RIP: distance vector, max 15 hops, slow convergence (legacy)
  OSPF: link-state, fast convergence, uses cost (bandwidth)
          Areas (area 0 = backbone), LSA flooding, SPF algorithm
  EIGRP: Cisco proprietary, hybrid (distance vector + link state)
  BGP: path vector, used between ISPs and cloud providers (internet routing)

SWITCHING:
  STP (Spanning Tree Protocol): prevents layer-2 loops
  RSTP: faster convergence version of STP
  VLANs: logical network segmentation (802.1Q tagging)
  EtherChannel / LACP: aggregate multiple links (bandwidth + redundancy)
  Port security: restrict MAC addresses per port (limit, sticky)

IP SERVICES:
  NAT/PAT: private → public IP translation
  DHCP: dynamic IP assignment (DORA: Discover-Offer-Request-Ack)
  DNS: name resolution (A, AAAA, MX, CNAME, PTR, NS records)
  NTP: network time synchronisation (stratum levels 0-15)
  SNMP: network monitoring (v3 with authentication recommended)
  QoS: priority queuing for voice/video traffic

Cisco IOS Quick Reference

bash
# Basic config
enable
configure terminal
hostname Router1
interface GigabitEthernet0/0
  ip address 192.168.1.1 255.255.255.0
  no shutdown
end
copy running-config startup-config

# Routing
show ip route
ip route 0.0.0.0 0.0.0.0 192.168.1.254    # Default route
router ospf 1
  network 192.168.1.0 0.0.0.255 area 0

# VLANs
vlan 10
  name Sales
interface FastEthernet0/1
  switchport mode access
  switchport access vlan 10
interface GigabitEthernet0/0.10
  encapsulation dot1Q 10
  ip address 192.168.10.1 255.255.255.0

# Troubleshoot
show interfaces
show ip interface brief
ping 8.8.8.8
traceroute 8.8.8.8
show running-config | section interface
debug ip routing

Study Resources

Jeremy's IT Lab (youtube.com/@JeremysITLab) — best free CCNA resource, very thorough
Professor Messer — free Network+ videos
Cisco NetAcad (netacad.com) — free Cisco learning path
Packet Tracer — free Cisco network simulator (get via NetAcad)
GNS3 — full Cisco/Juniper emulator (advanced)

Revision Notes

SUBNETTING: practice until instant. /24=256, /25=128, /26=64, /27=32, /28=16
OSI: All People Seem To Need Data Processing (7→1)
  Or: Please Do Not Throw Sausage Pizza Away (1→7)

ROUTING: Static | RIP(legacy) | OSPF(link-state, cost) | BGP(internet)
SWITCHING: STP prevents loops | VLANs segment | EtherChannel bundles

CCNA: 200-301 | MCQ + simulations | 120 min | 825/1000 passing
  Focus: subnetting (25%), OSPF config, VLANs, troubleshooting

AWS ANS-C01: VPC deep dive, Direct Connect, Transit Gateway, Route 53
AZ-700: Azure VNet, VPN Gateway, ExpressRoute, Azure Firewall, Front Door
Share:
Join our Community
Daily tips, job alerts, interview help — join engineers learning together
Up Next
📋
NetworkingCheatsheets
Quick reference — commands, syntax, and patterns
Also Worth Exploring
← Back to all Networking modules
TroubleshootingCheatsheets