+ All Categories
Home > Technology > 8. internal components of router

8. internal components of router

Date post: 19-Jun-2015
Category:
Upload: swarndeep-singh
View: 1,125 times
Download: 2 times
Share this document with a friend
Popular Tags:
22
Introduction to Router’s Internal Components
Transcript
Page 1: 8. internal components of router

Introduction to Router’s Internal Components

Page 2: 8. internal components of router

Internal Components

RAM NVRAM Flash ROM

InterfacesConsoleAuxiliary

Page 3: 8. internal components of router

RAM

Temporary storage for router configuration files

RAM content is lost on power down or restartStores...

Routing tables ARP cache Fast switching cache Packet buffering

Page 4: 8. internal components of router

NVRAM

Non-volatile RAMStores backup/startup configuration filesContent is not lost when router is powered

down or restarted.

Page 5: 8. internal components of router

Flash

EEPROM (Electronically Erasable Programmable Read-Only Memory)

Holds the Cisco IOS (Internetworking Operating System)

Allows updating of software without replacing the Flash chip

Multiple versions of IOS can be storedRetained on power down

Page 6: 8. internal components of router

ROM

Contains POST (Power On Self Test)A bootstrap program

(loads the Cisco IOS)And mini-operating system software:

Backup, trimmed down version of the IOS Upgrades require installing new chip set

Page 7: 8. internal components of router

Interfaces

Network connections through which packets enter and exit the router

Attached to the motherboard or as separate modules on “modular” routers.

Page 8: 8. internal components of router

As the router is booted, the following is loaded into RAM’s Working Storage.

RAM Specifics

CommandExecutive

InternetworkOperating

System(IOS)

ProgramsActiveConfig

FileTables Buffers

Page 9: 8. internal components of router

Programs include the bootstrap program that • tests the equipment (POST) • and locates the IOS.

RAM Specifics

Page 10: 8. internal components of router

RAM Specifics

Once the IOS is located by the bootstrap program, it is loaded in to RAM.

Page 11: 8. internal components of router

RAM Specifics

Part of the IOS is the Command EXEC. This is the program that translates the commands you type into a language that the IOS can understand.

Page 12: 8. internal components of router

RAM Specifics

Once the IOS is initialized, it looks for an active configurations file (usually in NVRAM) and loads it. This file tells the router specifically what to do.

Page 13: 8. internal components of router

RAM Specifics

The tables are loaded from the configuration file including...• ARP Tables• Routing Tables

Page 14: 8. internal components of router

RAM Specifics

Finally, all leftover memory in RAM is used as the buffer for processing incoming and outgoing packets.

Page 15: 8. internal components of router

Router Status Commands

“Show” commands yield status information about various router components, as shown on the next slides...

Page 16: 8. internal components of router

Example Show Commands

show version displays:

configuration of the system hardware IOS version names and sources of configuration files the current setting of the configuration register

(used in password recovery)

Page 17: 8. internal components of router

show running-config displays the active configuration file loaded in

RAM

Page 18: 8. internal components of router

show startup-config displays the backup configuration file stored in

NVRAM # copy run start

Page 19: 8. internal components of router

show protocols displays the status of all configured Layer 3 protocols displays the status of all interfaces

Page 20: 8. internal components of router

show ip route displays the routes to all networks known to the router

Page 21: 8. internal components of router

show controller displays information about each interface controller.

Key: shows whether serial interface is DTE or DCE (setting determined by the connected cable).

Important mainly in Cisco lab, where some routers are configured DCE.

Page 22: 8. internal components of router

Recommended