Full syllabusWeek 1Day 1

Network Foundations and the Packet Journey

Your CCNA roadmap and evidence-led lab method

By the end of this module, you will be equipped to establish a consistent routine for studying, conducting lab exercises, verifying configurations, and troubleshooting network issues.

Exam map
Current v1.1
Exam orientation
Announced v2.0
Practical skills orientation
Domain
Network fundamentals

Short answer

What should you understand today?

Embarking on the journey to achieve the Cisco Certified Network Associate (CCNA) certification requires a structured approach that integrates theoretical study with practical lab exercises. This method ensures a comprehensive understanding of networking concepts and the development of hands-on skills essential for real-world network operations. **Learner Outcome:** By the end of this module, you will be equipped to establish a consistent routine for studying, conducting lab exercises, verifying configurations, and troubleshooting network issues. **Prerequisites:** - Basic understanding of computer networks - Familiarity with networking terminology **Objectives:** - Understand the CCNA v1.

Before you begin

Learning targets

Prerequisites
  • Basic understanding of computer networks
  • Familiarity with networking terminology
By the end
  • Understand the CCNA v1.1 and v2.0 exam blueprints
  • Develop a structured study plan
  • Implement effective lab exercises
  • Learn verification and troubleshooting techniques
01

Understanding the CCNA Exam Blueprints

The CCNA certification validates foundational networking knowledge and skills. The exam blueprint outlines the topics and their respective weightings, guiding your study focus. The current v1.1 blueprint emphasizes exam orientation, while the upcoming v2.0 blueprint, effective from February 3, 2027, shifts towards practical skills orientation.

  • v1.1 focuses on theoretical knowledge
  • v2.0 emphasizes practical skills and automation
  • AI and Network Operations introduced in v2.0
02

Developing a Structured Study Plan

A well-organized study plan is crucial for effective learning. Break down the exam topics into manageable sections, allocate time based on topic weightings, and set achievable goals for each study session.

  • Break down exam topics into sections
  • Allocate study time based on topic weightings
  • Set achievable goals for each session
03

Implementing Effective Lab Exercises

Hands-on labs bridge the gap between theory and practice. Utilize network simulation tools like GNS3 to create virtual environments for configuring and testing network scenarios without the need for physical hardware.

  • Use network simulation tools like GNS3
  • Create virtual environments for practice
  • Test configurations without physical hardware
04

Verification and Troubleshooting Techniques

After implementing configurations, it's essential to verify their correctness and troubleshoot any issues. Learn to use commands like 'ping', 'traceroute', and 'show' commands to diagnose and resolve network problems.

  • Use 'ping' and 'traceroute' for connectivity tests
  • Employ 'show' commands to inspect device configurations
  • Develop systematic troubleshooting approaches
05

Real-World Scenario: Configuring a Small Office Network

Imagine setting up a network for a small office with multiple departments. You'll need to design the network topology, configure routing and switching, implement security measures, and ensure reliable connectivity.

  • Design network topology based on organizational needs
  • Implement VLANs for network segmentation
  • Configure routing and security measures
06

Lab: Building a Virtual Network with GNS3

In this lab, you'll create a virtual network using GNS3, a network simulation tool, to practice configuring routers, switches, and end devices without physical hardware. This hands-on experience reinforces theoretical knowledge and enhances troubleshooting skills.

  • Use GNS3 to simulate network devices
  • Practice configurations in a virtual environment
  • Enhance troubleshooting skills through simulation
07

Practice Questions

Regularly testing your knowledge with practice questions helps identify areas needing improvement and reinforces learning. Focus on scenarios that require configuration, verification, and troubleshooting.

  • Use practice questions to test knowledge
  • Focus on configuration and troubleshooting scenarios
  • Identify areas needing improvement
08

Quiz: Assessing Your Understanding

After completing the study and lab exercises, take a quiz to assess your understanding of the material. This self-assessment helps gauge readiness for the actual exam and highlights topics that may require further review.

  • Use quizzes for self-assessment
  • Identify strengths and weaknesses
  • Prepare for the actual exam

Real-world walkthrough

Configuring a Small Office Network

You're tasked with setting up a network for a small office with multiple departments. The network should be secure, efficient, and scalable to accommodate future growth.

  1. Design the network topology, segmenting departments into VLANs for security and performance.
  2. Configure inter-VLAN routing to enable communication between departments.
  3. Implement security measures like ACLs to control access to sensitive resources.
  4. Test the network to ensure all devices can communicate as intended.
A well-designed and configured network ensures efficient communication, security, and scalability, meeting the organization's current and future needs.

Guided GNS3 lab

Building a Virtual Network with GNS3

To practice configuring network devices and scenarios in a virtual environment using GNS3.

Two routers, two switches, and several PCs connected in a star topology.
Router1Router2Switch1Switch2PC1PC2PC3

Addressing plan

DeviceInterfaceAddressPurpose
Router1GigabitEthernet0/0192.168.1.1Router1's interface connected to Switch1.
Router1GigabitEthernet0/1192.168.2.1Router1's interface connected to Router2.
Router2GigabitEthernet0/0192.168.2.2Router2's interface connected to Router1.
Router2GigabitEthernet0/1192.168.3.1Router2's interface connected to Switch2.
Switch1VLAN1192.168.1.2Switch1's management interface.
Switch2VLAN1192.168.3.2Switch2's management interface.
PC1Ethernet0192.168.1.10PC1's IP address.
PC2Ethernet0192.168.1.20PC2's IP address.
PC3Ethernet0192.168.3.10PC3's IP address.

Set up the lab

  1. Install GNS3 and set up the virtual devices as per the topology.
  2. Configure basic settings on each device, including IP addresses and interfaces.
  3. Set up routing protocols (e.g., OSPF) to enable inter-network communication.
  4. Implement VLANs on the switches and assign ports to appropriate VLANs.
  5. Test connectivity between PCs in different VLANs to ensure proper routing and security.
01

Configure Router1's Interfaces

Set up Router1's interfaces with the provided IP addresses and enable them.

Router1(config)# interface GigabitEthernet0/0
Router1(config-if)# ip address 192.168.1.1 255.255.255.0
Router1(config-if)# no shutdown
Router1(config-if)# interface GigabitEthernet0/1
Router1(config-if)# ip address 192.168.2.1 255.255.255.0
Router1(config-if)# no shutdown
Expected evidence
Router1's interfaces are configured and active.
Why this step matters
Configuring interfaces with correct IP addresses enables network communication.
02

Configure Router2's Interfaces

Set up Router2's interfaces with the provided IP addresses and enable them.

Router2(config)# interface GigabitEthernet0/0
Router2(config-if)# ip address 192.168.2.2 255.255.255.0
Router2(config-if)# no shutdown
Router2(config-if)# interface GigabitEthernet0/1
Router2(config-if)# ip address 192.168.3.1 255.255.255.0
Router2(config-if)# no shutdown
Expected evidence
Router2's interfaces are configured and active.
Why this step matters
Correct interface configuration is essential for routing and connectivity.
03

Configure Routing Protocol

Set up OSPF on both routers to enable dynamic routing between networks.

Router1(config)# router ospf 1
Router1(config-router)# network 192.168.1.0 0.0.0.255 area 0
Router1(config-router)# network 192.168.2.0 0.0.0.255 area 0
Router2(config)# router ospf 1
Router2(config-router)# network 192.168.2.0 0.0.0.255 area 0
Router2(config-router)# network 192.168.3.0 0.0.0.255 area 0
Expected evidence
OSPF is configured and routes are exchanged between routers.
Why this step matters
OSPF enables dynamic routing, allowing routers to learn about remote networks.
04

Configure Switches and VLANs

Set up VLANs on the switches and assign ports to appropriate VLANs based on the topology.

Switch1(config)# vlan 10
Switch1(config-vlan)# name Sales
Switch1(config)# vlan 20
Switch1(config-vlan)# name HR
Switch1(config)# interface range fa0/1 - 12
Switch1(config-if-range)# switchport mode access
Switch1(config-if-range)# switchport access vlan 10
Switch1(config)# interface range fa0/13 - 24
Switch1(config-if-range)# switchport mode access
Switch1(config-if-range)# switchport access vlan 20
Switch2(config)# vlan 10
Switch2(config-vlan)# name Sales
Expected evidence
VLANs are created and ports are assigned correctly.
Why this step matters
VLANs segment network traffic, improving security and performance.
05

Test Connectivity

Use 'ping' and 'traceroute' to test connectivity between PCs in different VLANs.

PC1> ping 192.168.3.10
PC2> ping 192.168.3.10
Expected evidence
PCs in different VLANs can communicate through the routers.
Why this step matters
Testing verifies that routing and VLAN configurations are correct.
06

Licensing Note

GNS3 does not provide Cisco images; ensure you use images you are licensed to use. Cisco Modeling Labs is an official alternative for simulating Cisco devices.

Expected evidence
Lab environment is set up with licensed images.
Why this step matters
Using licensed images ensures compliance and functionality.
07

Practice Questions

Regularly test your knowledge with practice questions to reinforce learning and identify areas needing improvement.

Expected evidence
Improved understanding and readiness for the exam.
Why this step matters
Practice questions help solidify knowledge and highlight weak areas.
08

Quiz: Assessing Your Understanding

After completing the study and lab exercises, take a quiz to assess your understanding of the material.

Expected evidence
Gauge readiness for the actual exam.
Why this step matters
Quizzes provide a measure of comprehension and application skills.
09

Takeaways

Review key concepts and strategies learned in this module to reinforce learning and guide future study sessions.

Expected evidence
Solidified understanding and preparedness for the next module.
Why this step matters
Reviewing reinforces learning and prepares for subsequent topics.
10

Sources

Refer to the following sources for detailed information and guidance on CCNA preparation.

Expected evidence
Access to authoritative resources for further study.
Why this step matters
Reliable sources provide accurate and comprehensive information.
11

Glossary

Familiarize yourself with key terms and definitions related to networking and CCNA concepts.

Expected evidence
Enhanced understanding and retention of networking terminology.
Why this step matters
A solid grasp of terminology is essential for effective communication and comprehension.
12

Takeaways

Summarize the key points and strategies learned in this module to reinforce learning and guide future study sessions.

Expected evidence
Consolidated knowledge and preparedness for the next module.
Why this step matters
Summarizing reinforces learning and prepares for subsequent topics.
13

Sources

Consult the following sources for detailed information and guidance on CCNA preparation.

Expected evidence
Access to authoritative resources for further study.
Why this step matters
Reliable sources provide accurate and comprehensive information.
14

Glossary

Review key terms and definitions related to networking and CCNA concepts to enhance understanding.

Expected evidence
Improved comprehension and retention of networking terminology.
Why this step matters
A solid grasp of terminology is essential for effective communication and comprehension.

Verify

  • Verify that all devices in the network can communicate as intended.
  • Ensure that routing protocols are exchanging routes correctly.
  • Confirm that VLAN configurations are applied and functioning.
  • Test security measures to ensure they are effective.

Troubleshoot

  • If devices cannot communicate, check routing tables and interface statuses.
  • If VLANs are not functioning, verify VLAN assignments and trunk configurations.
  • If security measures are not effective, review ACLs and port security settings.
Licensing and cleanup

GNS3 does not provide Cisco images; ensure you use images you are licensed to use. Cisco Modeling Labs is an official alternative for simulating Cisco devices.

  • Save the GNS3 project for future reference.
  • Document the network topology and configurations.
  • Clean up any temporary files or configurations used during the lab.

Practice set

Answer before you reveal

01What is the primary purpose of VLANs in a network?
To segment network traffic, improving security and performance.

VLANs create separate broadcast domains, reducing congestion and enhancing security by isolating traffic.

02Which command is used to verify the routing table on a Cisco router?
show ip route

The 'show ip route' command displays the router's routing table, providing information on known routes.

03What does the 'ping' command test in network troubleshooting?
Connectivity between devices.

The 'ping' command sends ICMP Echo Request messages to test the reachability of devices.

04What is the function of the 'show interfaces' command on a Cisco device?
Displays the status and statistics of network interfaces.

The 'show interfaces' command provides detailed information about interface configurations and performance.

05What is the purpose of the 'traceroute' command in network diagnostics?
To trace the path packets take to reach a destination.

The 'traceroute' command shows the route and measures transit delays of packets across an IP network.

06What does the 'show vlan brief' command display on a Cisco switch?
A summary of VLANs configured on the switch.

The 'show vlan brief' command lists all VLANs, their status, and associated ports.

07What is the role of the 'show running-config' command?
Displays the current configuration of a Cisco device.

The 'show running-config' command shows the active configuration, including interface settings and routing protocols.

08What is the purpose of the 'show ip interface brief' command?
Provides a summary of interface statuses and IP addresses.

The 'show ip interface brief' command offers a concise overview of interface configurations and their operational status.

09What does the 'show version' command display?
Information about the device's hardware and software versions.

The 'show version' command provides details on the device's operating system and hardware components.

10What is the function of the 'show ip protocols' command?
Displays information about active routing protocols.

The 'show ip protocols' command shows details about routing protocols in use, such as OSPF or EIGRP.

Knowledge check

Quiz: prove the reasoning

0/8 answered
01Which of the following is a primary focus of the CCNA v2.0 exam?
02What is the recommended approach to studying for the CCNA exam?
03Which tool is recommended for simulating network configurations without physical hardware?
04What is the purpose of the 'ping' command in network troubleshooting?
05What is the significance of the 'show ip route' command on a Cisco router?
06What is the primary purpose of VLANs in a network?
07Which command is used to verify the routing table on a Cisco router?
08What does the 'ping' command test in network troubleshooting?

Keep these

Technical takeaways

  • Develop a structured study plan that balances theoretical learning with practical lab exercises.
  • Utilize network simulation tools like GNS3 to practice configurations without physical hardware.
  • Regularly verify configurations and troubleshoot issues to reinforce learning and prepare for real-world scenarios.
  • Stay updated with exam blueprints and industry trends to ensure relevant and effective study practices.
  • sources':[{'label':'Cisco 200-301 CCNA Exam Overview','url':'https://www.cisco.com/site/us/en/learn/training-certifications/exams/ccna.html','supports':'Exam overview and details.'},{'label':'Cisco 200-301 CCNA v2.0 Exam Topics','url':'https://learningcontent.cisco.com/documents/marketing/exam-topics/200-301_CCNA_v2.0_Exam_Topics_PDF.pdf','supports':'Exam's
  • url':'https://learningcontent.cisco.com/documents/marketing/exam-topics/200-301_CCNA_v2.0_Exam_Topics_PDF.pdf','supports':'Exam topics and blueprint.'},{'label':'GNS3 First Cisco Topology Guide','url':'https://docs.gns3.com/docs/getting-started/your-first-cisco-topology','supports':'Guide for building Cisco topologies in GNS3.'},{'label':'GNS3 Cisco Image S
  • url':'https://docs.gns3.com/docs/troubleshooting-faq/where-do-i-get-ios-images','supports':'Information on obtaining Cisco images for GNS3.'}]}
  • needs_search_refs_to_update_bibliography_and_sources_list