Book Image

Implementing and Administering Cisco Solutions: 200-301 CCNA Exam Guide

By : Glen D. Singh
Book Image

Implementing and Administering Cisco Solutions: 200-301 CCNA Exam Guide

By: Glen D. Singh

Overview of this book

In the dynamic technology landscape, staying on top of the latest technology trends is a must, especially if you want to build a career in network administration. Achieving CCNA 200-301 certification will validate your knowledge of networking concepts, and this book will help you to do just that. This exam guide focuses on the fundamentals to help you gain a high-level understanding of networking, security, IP connectivity, IP services, programmability, and automation. Starting with the functions of various networking components, you’ll discover how they are used to build and improve an enterprise network. You’ll then delve into configuring networking devices using a command-line interface (CLI) to provide network access, services, security, connectivity, and management. The book covers important aspects of network engineering using a variety of hands-on labs and real-world scenarios that will help you gain essential practical skills. As you make progress, this CCNA certification study guide will help you get to grips with the solutions and technologies that you need to implement and administer a broad range of modern networks and IT infrastructures. By the end of this book, you’ll have gained the confidence to pass the Cisco CCNA 200-301 exam on the first attempt and be well-versed in a variety of network administration and security engineering solutions.
Table of Contents (26 chapters)
1
Section 1: Network Fundamentals
6
Section 2: Network Access
9
Section 3: IP Connectivity
12
Section 4: IP Services
15
Section 5: Security Fundamentals
20
Section 6: Automation and Programmability
22
Chapter 16: Mock Exam 1
23
Chapter 17: Mock Exam 2

Lab – Configuring IPv6 on a Cisco IOS router

To get started, we are going to use the following topology:

Fig 3.48 – Lab topology

To configure IPv6 address on a Cisco IOS router, use the following steps:

  1. Enable IPv6 routing using the following command:
    R1(config)#ipv6 unicast-routing
  2. Enter interface mode for the desired interface:
    R1(config)#interface GigabitEthernet0/0
  3. Use the ipv6 address command, followed by the IPv6 address with the network prefix:
    R1(config-if)#ipv6 address 2001:DB8:1:1::1/64
  4. (Optional) To manually configure a Link-Local IPv6 address on the interface, use the link-local command after the IPv6 address, as shown here:
    R1(config-if)#ipv6 address FE80::1 link-local
  5. Enable the interface using the no shutdown command:
    R1(config-if)#no shutdown

Now that you have learned how to configure IPv6 global and Link-Local addresses, let's take a look at how to verify our configurations using Cisco IOS commands...