CCNA Domain 3: IP Connectivity (25%) - Complete Study Guide 2027

IP Connectivity Domain Overview

Domain 3: IP Connectivity represents the largest portion of the CCNA 200-301 exam, accounting for 25% of the total questions. This makes it the most critical domain to master for exam success. The IP Connectivity domain focuses on Layer 3 routing concepts, protocols, and troubleshooting techniques that form the backbone of modern network infrastructure.

25%
Exam Weight
30-38
Estimated Questions
3
Major Topics

Understanding IP connectivity is essential not just for passing the CCNA exam, but for building a solid foundation in network engineering. This domain builds upon concepts from Network Fundamentals and Network Access domains, requiring you to apply routing principles in real-world scenarios.

Why IP Connectivity Matters

IP Connectivity is weighted at 25% because routing is fundamental to network operations. Every network engineer must understand how data flows between networks, making this domain critical for both exam success and career advancement.

Routing Fundamentals

Before diving into specific routing protocols, you must understand fundamental routing concepts that underpin all Layer 3 operations. The routing process involves determining the best path for data packets to reach their destination across interconnected networks.

Routing Table Components

Every router maintains a routing table containing essential information for packet forwarding decisions. Understanding routing table entries is crucial for troubleshooting and configuration tasks on the exam.

ComponentDescriptionExample
Destination NetworkTarget network address192.168.1.0/24
Next HopIP address of next router10.1.1.2
Exit InterfaceLocal interface to useGigabitEthernet0/1
Administrative DistanceRoute source trustworthiness110 (OSPF)
MetricPath cost calculationCost, hop count, bandwidth

Administrative Distance Values

Administrative Distance (AD) determines which route source takes precedence when multiple routes to the same destination exist. Lower AD values indicate more trustworthy sources.

  • Connected Interface: AD = 0
  • Static Route: AD = 1
  • EIGRP: AD = 90
  • OSPF: AD = 110
  • RIP: AD = 120
  • External EIGRP: AD = 170
  • Unknown: AD = 255 (unreachable)
Common Exam Trap

Many candidates confuse Administrative Distance with metrics. Remember: AD determines route source preference, while metrics determine the best path within the same routing protocol.

Static Routing Configuration

Static routing provides manual control over routing decisions and serves as the foundation for understanding more complex dynamic routing protocols. The CCNA exam tests your ability to configure, verify, and troubleshoot various static routing scenarios.

Basic Static Route Configuration

Static routes are configured using the ip route command with specific syntax that varies based on the routing scenario:

  • Next-hop static route: ip route 192.168.2.0 255.255.255.0 10.1.1.2
  • Exit interface static route: ip route 192.168.2.0 255.255.255.0 GigabitEthernet0/1
  • Fully specified static route: ip route 192.168.2.0 255.255.255.0 GigabitEthernet0/1 10.1.1.2

Default Route Configuration

Default routes, also known as gateway of last resort, handle traffic destined for networks not specifically listed in the routing table. This concept frequently appears in exam scenarios.

Common default route configurations include:

  • ip route 0.0.0.0 0.0.0.0 10.1.1.1 (quad-zero route)
  • ip default-network 10.1.1.0 (classful networks only)
  • ip default-gateway 10.1.1.1 (when IP routing disabled)

Floating Static Routes

Floating static routes provide backup connectivity by using higher Administrative Distance values. These routes remain inactive until primary routes fail, making them essential for network redundancy.

Example configuration: ip route 192.168.2.0 255.255.255.0 10.1.1.2 200

Pro Tip

Practice configuring static routes using both IPv4 and IPv6 addressing. The exam includes both protocols, and the configuration syntax differs significantly between them.

Dynamic Routing Protocols

Dynamic routing protocols automatically discover and maintain routing information, adapting to network changes without manual intervention. The CCNA exam focuses primarily on OSPF, but understanding routing protocol classifications is essential.

Routing Protocol Classifications

Understanding how routing protocols are classified helps you choose appropriate protocols for different network scenarios:

ClassificationDistance VectorLink State
OperationRoutes by rumorComplete topology map
ConvergenceSlowerFaster
CPU UsageLowerHigher
Memory UsageLowerHigher
ExamplesRIP, EIGRPOSPF, IS-IS

Interior vs Exterior Gateway Protocols

The distinction between IGPs and EGPs is fundamental to understanding routing protocol deployment:

  • Interior Gateway Protocols (IGPs): Operate within single autonomous systems (OSPF, EIGRP, RIP)
  • Exterior Gateway Protocols (EGPs): Exchange routes between different autonomous systems (BGP)

While BGP is beyond CCNA scope, understanding this distinction helps contextualize IGP deployment scenarios commonly tested on the exam.

OSPF Configuration and Troubleshooting

Open Shortest Path First (OSPF) is the primary dynamic routing protocol covered in the CCNA exam. Understanding OSPF configuration, verification, and troubleshooting is crucial for exam success and practical network implementation.

OSPF Basic Configuration

OSPF configuration involves several key steps that establish neighbor relationships and enable route advertisement:

  1. Enable OSPF process: router ospf [process-id]
  2. Configure Router ID: router-id 1.1.1.1
  3. Advertise networks: network 192.168.1.0 0.0.0.255 area 0
  4. Configure interface parameters: ip ospf cost 100

OSPF Areas and Design

OSPF uses areas to reduce routing overhead and improve scalability. Understanding area types and their purposes is essential for exam questions involving OSPF design:

  • Backbone Area (Area 0): Central transit area connecting all other areas
  • Standard Areas: Normal areas containing detailed LSA information
  • Stub Areas: Areas with restricted external route information
  • Totally Stubby Areas: Areas with only default route from ABR
OSPF Neighbor States

Understanding OSPF neighbor states helps troubleshoot adjacency issues. The progression is: Down → Init → 2-Way → ExStart → Exchange → Loading → Full. Exam scenarios often test your ability to identify stuck neighbor states.

OSPF Verification Commands

Mastering OSPF verification commands is crucial for both exam simulation questions and real-world troubleshooting:

  • show ip ospf neighbor - Display neighbor relationships
  • show ip ospf database - View link-state database
  • show ip ospf interface - Check interface OSPF parameters
  • show ip route ospf - Display OSPF-learned routes
  • show ip protocols - Verify OSPF configuration

First Hop Redundancy Protocols

First Hop Redundancy Protocols (FHRPs) eliminate single points of failure at the default gateway level. These protocols are frequently tested through simulation questions requiring configuration and troubleshooting skills.

HSRP Configuration and Operation

Hot Standby Router Protocol (HSRP) is Cisco's proprietary FHRP solution. Understanding HSRP configuration and states is essential for CCNA success:

Basic HSRP configuration involves:

  1. Enable HSRP on interface: standby [group] ip [virtual-ip]
  2. Set priority: standby [group] priority [value]
  3. Enable preemption: standby [group] preempt
  4. Configure authentication: standby [group] authentication text [password]

HSRP States and Operation

StateDescriptionFunction
InitialStarting stateHSRP not running
LearnLearning virtual IPWaiting for hello message
ListenMonitoring hello messagesNot active or standby
SpeakParticipating in electionSending hello messages
StandbyBackup routerReady to forward if active fails
ActiveForwarding routerActively forwarding traffic

VRRP and GLBP Overview

While HSRP receives primary focus, understanding other FHRPs helps differentiate protocol characteristics:

  • VRRP (Virtual Router Redundancy Protocol): Standards-based FHRP with faster convergence
  • GLBP (Gateway Load Balancing Protocol): Cisco proprietary with load balancing capabilities
Exam Focus

CCNA exam questions emphasize HSRP configuration and troubleshooting. Ensure you can identify HSRP states, configure priority and preemption, and troubleshoot common HSRP issues.

IP Connectivity Troubleshooting

Troubleshooting IP connectivity issues requires systematic approaches and thorough understanding of routing principles. The CCNA exam tests your ability to identify and resolve connectivity problems using appropriate tools and methodologies.

Systematic Troubleshooting Approach

Effective troubleshooting follows a structured methodology that eliminates guesswork and ensures comprehensive problem resolution:

  1. Define the problem: Gather symptoms and determine scope
  2. Gather information: Use show commands and network documentation
  3. Analyze information: Compare expected vs actual behavior
  4. Eliminate possibilities: Rule out potential causes systematically
  5. Propose hypothesis: Develop theory based on evidence
  6. Test hypothesis: Implement changes and verify results

Essential Troubleshooting Commands

Mastering key troubleshooting commands enables efficient problem identification and resolution:

  • ping - Test basic connectivity and measure response times
  • traceroute - Identify routing path and locate failure points
  • show ip route - Examine routing table entries
  • show ip interface brief - Verify interface status quickly
  • show ip arp - Check ARP table entries
  • debug ip routing - Monitor routing table changes

Common Connectivity Issues

Understanding frequent connectivity problems helps you quickly identify root causes during troubleshooting scenarios:

IssueSymptomsCommon Causes
No ConnectivityPing fails completelyInterface down, no route, ACL blocking
Intermittent LossPartial ping successDuplex mismatch, high utilization
Slow PerformanceHigh latencySuboptimal routing, congestion
Asymmetric RoutingOne-way communicationMissing return routes

For comprehensive preparation, consider practicing with our interactive practice tests that simulate real exam troubleshooting scenarios.

Study Strategies and Tips

Success in the IP Connectivity domain requires both theoretical understanding and practical application. Developing effective study strategies maximizes your preparation efficiency and exam performance.

Hands-On Practice Recommendations

IP Connectivity concepts require extensive hands-on practice to master. Consider these practical learning approaches:

  • Physical Labs: Use actual Cisco equipment when available
  • Packet Tracer: Cisco's free simulation software for protocol practice
  • GNS3: Advanced network simulation with real Cisco images
  • VIRL/CML: Cisco's official virtual lab platform
Lab Practice Priority

Focus your lab time on OSPF configuration, static routing scenarios, and HSRP implementation. These topics generate the most exam questions and require muscle memory for efficient completion.

Study Timeline Recommendations

Given IP Connectivity's 25% exam weight, allocate proportional study time to master this domain. Most successful candidates spend 4-6 weeks dedicated to IP Connectivity topics.

Effective study progression:

  1. Week 1: Routing fundamentals and static routing
  2. Week 2: OSPF theory and basic configuration
  3. Week 3: Advanced OSPF and FHRP concepts
  4. Week 4: Troubleshooting and integration practice
  5. Weeks 5-6: Practice tests and weak area remediation

For additional guidance, review our comprehensive CCNA study guide that provides detailed preparation strategies across all domains.

Integration with Other Domains

IP Connectivity doesn't exist in isolation. Understanding how this domain integrates with others is crucial for exam success:

  • Network Fundamentals: OSI model and TCP/IP stack knowledge
  • Network Access: VLAN routing and inter-VLAN communication
  • IP Services: DHCP, NAT, and QoS impact on routing
  • Security: ACL implementation affecting routing decisions

Many candidates underestimate the importance of understanding CCNA exam difficulty, particularly in integrated scenarios that span multiple domains.

Memory Techniques

Use acronyms and mnemonics for complex topics. For OSPF neighbor states, remember "Down In Two-Way Exchange Learning Fully" (DITELF). For administrative distances, create flashcards with protocol names and values.

Regular practice with quality practice questions helps reinforce concepts and identify knowledge gaps before the exam.

What percentage of CCNA exam questions come from IP Connectivity?

IP Connectivity accounts for 25% of the CCNA exam, making it the largest single domain. In a typical exam with 120 questions, expect approximately 30 questions covering routing fundamentals, OSPF, static routing, and first-hop redundancy protocols.

Do I need to memorize all OSPF LSA types for the CCNA exam?

No, the CCNA exam focuses on OSPF configuration and troubleshooting rather than detailed LSA type knowledge. Understanding basic OSPF operation, neighbor relationships, and area concepts is more important than memorizing all LSA types.

How much lab practice is required for IP Connectivity topics?

Plan for at least 40-60 hours of hands-on practice with IP Connectivity topics. Focus on OSPF configuration, static routing scenarios, and HSRP implementation. Simulation questions require muscle memory that only comes through repetitive practice.

Should I study RIP and EIGRP for the current CCNA exam?

The current CCNA 200-301 exam focuses primarily on OSPF for dynamic routing protocols. While understanding routing protocol classifications is helpful, detailed RIP and EIGRP configuration is not required for exam success.

What's the most challenging aspect of IP Connectivity for new candidates?

Most candidates struggle with OSPF troubleshooting scenarios that require understanding neighbor relationships, area design, and convergence issues. These topics require both theoretical knowledge and practical experience to master effectively.

Ready to Start Practicing?

Master IP Connectivity concepts with our comprehensive practice tests featuring real exam-style questions, detailed explanations, and performance tracking. Start building the routing knowledge you need for CCNA success.

Start Free Practice Test
Take Free CCNA Quiz →