+ All Categories
Home > Documents > Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Date post: 13-Dec-2015
Category:
Upload: samantha-malone
View: 239 times
Download: 8 times
Share this document with a friend
Popular Tags:
28
Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle
Transcript
Page 1: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Sybex CCNA 640-802Chapter 6: Cisco’s IOS

Instructor & Todd Lammle

Page 2: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Chapter 6 Objectives

• The Cisco router IOS• Enhanced editing• Administrative functions

– Hostnames– Banners– Passwords– Interface descriptions

• Verifying your configuration

2

Page 3: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Cisco Router IOS

• Carries network protocols and functions

• Connects high-speed traffic between devices

• Adds security to control access

• Provides scalability for growth

• Supplies reliability

Page 4: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Connecting To A Cisco Router

Cisco 2800

Cisco 1841

Page 5: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Bringing up a Router

• Boot-up process:1: POST

2: Looks for the Cisco IOS from Flash memory

3: IOS loads & looks for a valid configuration;

• startup-configstartup-config• stored in nonvolatile RAM (NVRAM)

4: If a valid config is not found in NVRAM:• setup modesetup mode

Page 6: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Setup Mode

• Basic Management Setup

• Extended Setup

• Command-Line Interface

Page 7: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Configuration

• CLI Prompts

• Interfaces

• Sub-interfaces

• Line Commands

• Routing Protocol Configurations

Page 8: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Command-Line Interface (CLI)

• More flexible than setup mode.

• To use the CLI, just say No to entering the initial configuration dialog.

Page 9: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Subinterfaces

Allow you to create logical interfaces within the router

Router(config-if)#interface f0/0.1

Router(config-subif)#

Page 10: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Logging into the Router

• User mode: – Router>– Used mostly to view statistics

• Privileged mode:– Router#– Used to view & change router

configuration

Page 11: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Overview of Router Modes

• Global changes:– config terminal or config t– Changes made to running-config running-config

(DRAM)– To change the startup-configstartup-config (NVRAM)

• config memory or config mem

Note: Any configuration changes need to be placed into RAM. Typing config mem or config net (from a TFTP host) will append the current running-configrunning-config

Page 12: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Editing & Help Features

Page 13: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Editing & Help Features

• Commands starting with a certain letter

Router#c?

clear clock configure connect copy

• Enhanced Editing Commands

• Router-Command History

• Gathering Basic Routing Information– show versionshow version

Page 14: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Enhanced Editing Commands

Page 15: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Enhanced Editing Commands (cont.)

Page 16: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Router Command History

Page 17: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Gathering Basic Routing Information

Page 18: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Administrative Functions

The administrative functions that you can configure on a router and switch are

• Hostnames• Banners• Password• Interface descriptions

Page 19: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Hostnames & Descriptions

• HostnamesRouter(config)#hostname todd

todd(config)#

• DescriptionsAtlanta(config)#int e0

Atlanta(config-if)#description Sales Lan

Page 20: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Banners

• Purpose

• Types– exec– incoming– login– motd

• Delimiting character

Page 21: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Setting the Passwords

• 5 passwords:– 1st two used to set your enable

password• Used to secure privileged mode;

Router>enable

– Other three are used to configure a password in useruser mode via:

• console port• auxiliary port• Telnet

Page 22: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Passwords

• Enable passwordsRouter(config)#enable password cisco

Router(config)#enable secret cisco

• Auxiliary Password

• Console Password

• Telnet Password

• Encrypting Your PasswordRouter(config)#service password-

encryption

Page 23: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Interface DescriptionsSetting descriptions on an interface is helpful to the administrator and, like the hostname, only locally significant. The description command is a helpful one because you can, for instance, use it to keep track of circuit numbers.

Here’s an example:Atlanta(config)#int e0

Atlanta(config-if)#description Sales Lan

Atlanta(config-if)#int s0

Atlanta(config-if)#desc Wan to Miami circuit:6fdda4321

You can view the description of an interface either with the show running-config command or the show interface command.

Page 24: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Router Interfaces

• Bringing up an Interfaceno shutdownshutdownshow interface

• Configuring an IP Address on an Interface

Router(config)#int e0Router(config-if)#ip address 172.16.10.2

255.255.255.0Router(config-if)#no shut

• Serial Interface Commandsclock rate & bandwidth (entered in

kilobits)

Page 25: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Viewing, & Saving Configurations

• Viewing & Saving Configurations– running-configrunning-config saved in DRAM– startup-configstartup-config saved in

NVRAMcopy run start

sh run

sh start

erase startup-config

Page 26: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Verifying Your Configuration

Tools:– show running-config– show startup-config– ping– show cdp nei detail– trace– telnet

Page 27: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Other Verification Methods

• Verifying with the show interface command– Router#show interface ?

• Verifying with the show ip interface command– Router#show ip interface– Router#show ip interface brief– Router#show controllers

Page 28: Sybex CCNA 640-802 Chapter 6: Cisco’s IOS Instructor & Todd Lammle.

Summary

• Go through all the written labs and review questions

• Review answers in class

28


Recommended