2.CCNP Encore - Basic Concepts and Router Introduction

CCNP Encore Series - Software and Initial Setup

  • For CCNP, GNS3 or EVE-NG software can be used for labs. Some labs can also be done in Packet Tracer, but it has limitations due to incomplete command support.
  • GNS3 is an emulator, and Packet Tracer is a simulator
  • For GNS3 and EVE-NG, a minimum of 8 GB RAM is recommended, though 4 GB may suffice for basic labs. RAM can be increased as needed.
  • The instructor has 32 GB RAM.
  • Installation of GNS3 and image loading will be covered in future classes.

Course Structure and Syllabus

  • The course will not strictly follow the syllabus sequence. Related topics will be grouped together.
  • The instructor will use the official syllabus PDF, highlighting topics as they are covered to ensure complete coverage.
  • The syllabus will be shown and highlighted at the start of each topic to provide clarity.

Router Basics

  • The class will start with a review of router basics, building upon CCNA knowledge.
  • Definition of a Router:
    • A router operates at Layer 3 of the OSI model.
    • It facilitates communication between two or more different networks.
    • Routers control broadcast domains.
    • Routers connect LANs to WANs (e.g., connecting a local network to the Internet).
  • Functions of a Router:
    • Performs routing using static or dynamic routing protocols.
    • Implements Network Address Translation (NAT).
    • Applies Access Control Lists (ACLs).
    • Handles Inter-VLAN routing.
  • Routers select the best path to forward packets.

Router Components

  • Key Components:
    • CPU (Central Processing Unit)
      • Executes operating system instructions.
      • Performs system initialization and routing functions.
      • Controls network interfaces.
      • To check CPU utilisation, use the show process command.
    • ROM (Read-Only Memory)
      • Maintains instructions for Power-On Self-Test (POST).
      • Used for diagnostic purposes.
    • RAM (Random Access Memory)
      • Stores routing tables and the configuration file when the router is powered on.
      • Data is lost when the router is restarted.
    • NVRAM (Non-Volatile RAM)
      • Stores the startup configuration.
      • Configuration remains even after the router is rebooted or powered off.
    • Flash Memory
      • Stores the operating system image (IOS).
      • Contents persist after reboots or shutdowns.
    • RXBoot image
      • A smaller version of the iOS used to boot the device.
    • Interfaces
      • Physical connectors that link the router to the network.
      • Serve as IP entry and exit points.
    • Buses
      • Cables connecting different components.
      • The system bus facilitates communication between the CPU and interfaces.
    • Configuration Register
      • A 16-bit software register that sets specific parameters.
      • Stored in NVRAM.
  • Analogy to a computer motherboard: Routers have similar components to those found in a computer motherboard.

Router Interfaces and Connections

  • Serial Ports: Older routers used serial ports for connections, but they are less common now due to low speed.
  • Ethernet/Fast Ethernet Ports: Used to connect RJ45 cables from switches to routers.
  • Console Port: Used for initial configuration.
  • Auxiliary Port: For remote access.
  • Newer routers and switches often have dual power cords for redundancy.

Accessing Router

  • Console Cable:
    • Used for initial configuration when no Telnet or SSH access is available.
    • One end (RJ45) connects to the router's console port.
    • The other end (DB9) connects to the PC's serial port.
    • If the laptop lacks a serial port, a USB-to-serial converter is used.
  • Remote Access: After initial configuration, Telnet or SSH can be used for remote access.

Router Modes

  • User Executive Mode: Basic access.
  • Privileged Execution Mode: Accessed via the enable command.
  • Global Configuration Mode: For making configuration changes.
  • Interface-specific modes and other modes are available for specific configurations.

Basic Router Configuration and Commands

  • Command to check interfaces: show ip interface brief
  • To assign an IP address to an interface:
    1. Enter global configuration mode: configure terminal
    2. Enter interface configuration mode: interface <interface_type> <interface_number> (e.g., interface Ethernet 0)
    3. Assign an IP address: ip address <ip_address> <mask> (e.g., ip address 192.168.1.1 255.255.255.0)
    4. Enable the interface: no shutdown
  • Command to check the router's version: show version
  • Cisco IOS (Internetwork Operating System) is the operating system used by Cisco routers and switches.
  • Command to check the current configuration: show running-config
  • Command to check the saved configuration: show startup-config
  • Command to view flash memory content: show flash

Additional Points

  • Telnet is insecure; SSH is more secure for remote access.
  • The presenter encourages users to leave comments requesting specific topics or assistance.
  • The next video will cover switch basics, followed by MAC address tables, CAM tables, switching types, and potentially virtualization or SD-WAN.
  • Topics like HSRP, OSPF, and BGP will be covered, prioritizing easy-to-understand sequences.