FIRST BOOT OF THE ROUTER & STORING ITS CONFIGURATION

Size: px
Start display at page:

Download "FIRST BOOT OF THE ROUTER & STORING ITS CONFIGURATION"

Transcription

1 Volume Issue pp March 202 www. ijsret.org ISSN FIRST BOOT OF THE ROUTER & STORING ITS CONFIGURATION Gyan Prakash Pal Faculty of Electronics & Communication Engineering Department, Shanti Institute of Technology, Meerut (India), 2 Sadhana Pal Faculty of Electronics & Communication Engineering Department, Vishveshwarya Institute of Engineering & Technology, Greater Noida (India) Abstract: Communication devices have become one of the most important instruments to stay in touch with each other. Router is a most important device, used to connect different networks together and route packets of data from one network to another. So it s really important to manage a router. If you are locked out of a router because you forgot the password, this paper will be helpful to re-inter the router. This paper also shows the main components of a router, the router boot sequence and the configuration register, including how to use the configuration register for password recovery. After reading this paper, a new user will understand how to bring up a router and how to crack its password, after that save the running configuration as a backup for future use. Keywords: Router, Configuration register, IOS, RAM, ROM, NVRAM and CLI commands. I. INTRODUCTION A router boots similar to a regular computer as it first performs a power on self test (POST) for the hardware, next loads bootstrap code from ROM, loads the IOS image from Flash into RAM and finally the router locates and loads a configuration file. You can reboot a router by using the power switch or the reload command. The Internetwork Operating System (IOS) and configuration files reside in different locations in a router. So it is very important to understand both where these files are located and how they work. The router configuration is stored in NVRAM. This is the place where the router will search for a configuration file. Alternatively, you can configure the router to load a configuration file from a TFTP server. If the router cannot locate a configuration file (on a new router for example) it will start in setup mode and it will ask if you want to enter the initial configuration dialog. If you answer with No, you'll be taken to the command prompt and you'll be able to configure the router manually. If you answer with Yes, you'll be taken through a list of questions allowing you to configure the router e.g. set a hostname and enable password and secret, configure routed and routing protocols, and assign addresses to interfaces. You can initiate this configuration dialog at any time by using the setup command. II. THE ROUTER BOOT SEQUENCE When a router boots up, it performs a series of steps, called the boot sequence, which test the hardware and load the necessary software. The boot sequence consists of the following steps: a)the router performs a POST. The POST tests the hardware to verify that all the components of the device are operational and present. For example, the POST checks for the different interfaces on the router. The POST is stored in and run from ROM. b) The bootstrap then looks for and loads the IOS software. The bootstrap is a program in ROM that is used to execute programs. The bootstrap program is responsible for finding where each IOS program is located and then loading the file. By default, the IOS software is loaded from flash memory in all routers. The default order of an IOS loading in a router is Flash, TFTP server, then ROM. c)the IOS software looks for a valid configuration file stored in NVRAM. This file is called startupconfiguration. An administrator copies the running-configuration file into NVRAM as a startup-configuration. 202

2 Volume Issue pp March 202 www. ijsret.org ISSN d) If a startup-configuration file found in NVRAM, the router will copy this file and place it in RAM and call the file running-configuration. Then the router will use this file to run the router. III. CONFIGURATION REGISTER All Cisco routers have a 6-bit (2 bytes) configuration register that s written into NVRAM. By default, the configuration register is set to load the Cisco IOS from flash memory and load the startup- configuration file from NVRAM. The6-bit (2 bytes) of the configuration register is read from 5 to 0, from left to right. The default configuration setting on Cisco routers is This means that bits 3, 8 and are on, as shown in Table. Notice that each set of 4 bits is read in binary with a value of 8, 4, 2,. Table : The Configuration Register Bit Number Configur ation Register Bit number Binary Note: The prefix 0 to the configuration register address means that the digits that follow are in hexadecimal. Table 2 lists the configuration register bit meanings. Notice that bit 6 can be used to ignore the NVRAM contents, so this bit is used for password recovery. Table 2: configuration register bit meanings Bit Hex Description Boot field (see table 3) 0 000F Ignore NVRAM contents OEM bit enabled break disabled IP broadcast with all zeros 5, Console line speed Boot default ROM software if network boot fails IP broadcasts do not have net numbers Enable diagnostic message and ignore NVRAM contents The boot field, which consists of bits 0-3 in the configuration register, controls the router boot sequence. Table 3 describes the boot field bits. Table 3: The Boot Field Boot Use Field 00 To boot in ROM monitor mode, set the Configuration register to To boot an IOS image stored in ROM, set the Configuration register to F Any value from 202 through 20F tells the router to use the boot commands specified in NVRAM IV. CHECKING THE CURRENT CONFIGURATION REGISTER VALUE To see the current value of the configuration use the show version command: register, show version IPBASE-M), Version 2.3(4)T7, RELEASE ROM: System Bootstrap, Version 2.(3r)T2, RELEASE SOFTWARE (fc) System returned to ROM by power-on System image file is "flash:c2800nm-ipbasemz.23-4.t7.bin" cisco 28 (MPC860) processor (revision 0x200) with 6046K/520K bytes of memory Processor board ID JAD0590MTZ ( ) M860 processor: part number 0, mask 49 Ethernet/IEEE interface(s) 3 FastEthernet/IEEE interface(s) 7 Low-speed serial(sync/async) network interface(s) 239K bytes of NVRAM. 202

3 Volume Issue pp March 202 www. ijsret.org ISSN K bytes of processor board System flash (Read/Write) Configuration register is 0x202 The last line of this command gives the value of the configuration register. In the example, the value is the default setting. Notice that the show version command also provides the details of IOS version, ROM, RAM, NVRAM, Flash memory and all interfaces in the preceding example. V. CHANGING THE CONFIGURATION REGISTER You can change the configuration register value to modify how the router boots and runs. There are the main reasons you would want to change the configuration register: To force the system into the ROM monitor mode To select a boot source and default boot filename To enable or disable the Break function To control broadcast addresses To set the console terminal baud rate To load operating software from ROM To enable booting from a Trivial File Transfer Protocol (TFTP) server Before changing the configuration register, make sure you know the current configuration register value. Use the show version command to get this information. You can change the configuration register by using the config-register command: Router(config)#config-register 0 20 Router(config)#^z show version [Output cut] Configuration register is (will be 0 20 at next reload) Notice that the show version command displays the current configuration register value and also that value which will be when the router reboots. Any change to the configuration register won t take effect until the router is reloaded. The 0 20 will load the IOS from ROM the next time the router is rebooted. Here is our router after setting the configuration register to 0 20 and reloading: show version 2800 Software (C2800NM-IPBASE-M), Version 2.3(4)T7, RELEASE Cisco IOS Software, ROM: System Bootstrap, Version 2.(3r)T2, RELEASE SOFTWARE (fc) System returned to ROM by power-on System image file is "flash:c2800nm-ipbasemz.23-4.t7.bin" Configuration register is 0x20 A router has full IOS in flash. To set the configuration register back to the default, just type this: config t Enter configuration commands, one per line. End with CNTL/Z. Router(config)#config-register 0x202 Router(config)#^Z %SYS-5-CONFIG_I: Configured from console by console reload Proceed with reload? [confirm]y show version Configuration register is 0x202 VI. RECOVERING PASSWORDS If you forgot the router password, you can change the configuration register to login the router. As I said earlier, bit 6 in the configuration register is used to tell the router whether to use the contents of NVRAM to load a router configuration (startupconfig). The default configuration register value is 0x202; meaning that bit 6 is off. With the default setting, the 202

4 Volume Issue pp March 202 www. ijsret.org ISSN router will look for and load a router configuration stored in NVRAM (startup-config). To recover a password, you need to turn on the bit 6. Doing this will tell the router to ignore the NVRAM contents. The configuration register value after turn on bit 6 is 0x242. Here are the main steps to password recovery:. Boot the router and interrupt the boot sequence by performing a break, which will take the router into ROM monitor mode. 2. Change the configuration register to turn on bit 6 (with the value 0x242). 3. Reload the router. 4. Enter privileged mode. 5. Copy the startup-configuration file to runningconfiguration. 6. Change the password. 7. Reset the configuration register to the default value. 8. Save the router configuration. 9. Reload the router (optional). Interrupting the Router Boot Sequence: Your first step is to boot the router and perform a break. This is usually done by pressing the Ctrl+Break key combination when using HyperTerminal while the router first reboot. reload Proceed with reload? [confirm]y %SYS-5-RELOAD: Reload requested by console. Reload Reason: Reload Command. System Bootstrap, Version 2.(3r)T2, RELEASE SOFTWARE (fc) cisco 28 (MPC860) processor (revision 0x200) with 6046K/520K bytes of memory Self decompressing the image : ########## monitor: command "boot" aborted due to user interrupt rommon > Notice the line monitor: command "boot" aborted due to user interrupt. At this point, you will be at the rommon > prompt, which is called ROM monitor mode. Changing the Configuration Register: You can change the configuration register by using the config-register command. To turn on bit 6, use the configuration register value 0x242. Remember that if you change the configuration register to 0x242, the startup-configuration will be bypassed and the router will load into setup mode. To change the bit value on a Cisco ISR/2800 series router, you just enter the command: rommon > confreg 0x242 You must reset or power cycle for new configuration to take effect rommon 2 > reset System Bootstrap, Version 2.(3r)T2, RELEASE SOFTWARE (fc) cisco 28 (MPC860) processor (revision 0x200) with 6046K/520K bytes of memory Self decompressing the image : ########################################### ############################### [OK] Restricted Rights Legend Use, duplication, or disclosure by the Government is subject to restrictions as set forth in subparagraph (c) of the Commercial Computer Software - Restricted Rights clause at FAR sec and subparagraph (c) () (ii) of the Rights in Technical Data and Computer Software clause at DFARS sec cisco Systems, Inc. 70 West Tasman Drive San Jose, California IPBASE-M), Version 2.3(4)T7, RELEASE Copyright (c) by Cisco Systems, Inc. Compiled Wed 22-Mar-06 8:40 by pt_team Image text-base: 0x , data-base: 0x44E0000 cisco 28 (MPC860) processor (revision 0x200) with 6046K/520K bytes of memory Processor board ID JAD0590MTZ ( ) M860 processor: part number 0, mask 49 Ethernet/IEEE interface(s) 3 FastEthernet/IEEE interface(s) 202

5 Volume Issue pp March 202 www. ijsret.org ISSN Low-speed serial(sync/async) network interface(s) 239K bytes of non-volatile configuration memory K bytes of processor board System flash (Read/Write) IPBASE-M), Version 2.3(4)T7, RELEASE Copyright (c) by Cisco Systems, Inc. Compiled Wed 22-Mar-06 8:40 by pt_team --- System Configuration Dialog --- Continue with configuration dialog? [yes/no]: n Press RETURN to get started! Router>en The router will reload and ask if you want to use setup mode (because no startup-config is used). Answer NO to entering setup mode; press Enter to go into user mode and then type enable to go into privileged mode. Viewing and Changing the Configuration: Now you are past the point where you would need to enter the user-mode and privileged-mode password in a router. Copy the startup-config file to the runningconfig file: copy startup-config running-config or use the shortcut: copy start run The configuration is now running in random access memory (RAM), and you are in privileged mode, meaning that you can now view and change the configuration. But you can t view the enable secret setting for the password since it is encrypted. To change the password, do this config t Enter configuration commands, one per line. End with CNTL/Z. Router(config)#enable secret Gyan Router(config)# Resetting the Configuration Register and Reloading the Router: After you are finished changing password, set the configuration register back to the default value with the config-register command: config t Router(config)#config-register 0x202 Router(config)# Finally, save the new configuration with a copy running-config startup-config and reload the router. copy running-config startup-config Destination filename [startup-config]? Building configuration... [OK] reload Proceed with reload? [confirm] %SYS-5-RELOAD: Reload requested by console. Reload Reason: Reload Command. System Bootstrap, Version 2.(3r)T2, RELEASE SOFTWARE (fc) cisco 28 (MPC860) processor (revision 0x200) with 6046K/520K bytes of memory Self decompressing the image : ########################################### ############################### [OK] Restricted Rights Legend Use, duplication, or disclosure by the Government is subject to restrictions as set forth in subparagraph (c) of the Commercial Computer Software - Restricted Rights clause at FAR sec and subparagraph (c) () (ii) of the Rights in Technical Data and Computer Software clause at DFARS sec cisco Systems, Inc. 70 West Tasman Drive San Jose, California IPBASE-M), Version 2.3(4)T7, RELEASE 202

6 Volume Issue pp March 202 www. ijsret.org ISSN Copyright (c) by Cisco Systems, Inc. Compiled Wed 22-Mar-06 8:40 by pt_team Image text-base: 0x , data-base: 0x44E0000 cisco 28 (MPC860) processor (revision 0x200) with 6046K/520K bytes of memory Processor board ID JAD0590MTZ ( ) M860 processor: part number 0, mask 49 Ethernet/IEEE interface(s) 3 FastEthernet/IEEE interface(s) 7 Low-speed serial(sync/async) network interface(s) 239K bytes of non-volatile configuration memory K bytes of processor board System flash (Read/Write) IPBASE-M), Version 2.3(4)T7, RELEASE Copyright (c) by Cisco Systems, Inc. Compiled Wed 22-Mar-06 8:40 by pt team %LINK-5-CHANGED: Interface Vlan, changed state to up %LINK-5-CHANGED: Interface FastEthernet0/0, %LINK-5-CHANGED: Interface FastEthernet0/, %LINK-5-CHANGED: Interface FastEthernet/0, %LINK-5-CHANGED: Interface Ethernet//0, %LINK-5-CHANGED: Interface FastEthernet0/0, %LINK-5-CHANGED: Interface FastEthernet0/, %LINK-5-CHANGED: Interface FastEthernet/0, %LINK-5-CHANGED: Interface Ethernet//0, %LINK-5-CHANGED: Interface Vlan, changed state to administratively down Press RETURN to get started! By the help of changing configuration register, you can bypass the booting sequence to enter the router. Now you can recover the password of the router and save the running-configuration file to the startup-configuration for future use. Have a pleasant stay in your router. REFERENCES [] Comer, D. Internetworking with TCP/IP, Volume : Principles, Protocols and Architecture. Upper Saddle River, NJ: Prentice Hall, [2] Comer, D. Computer Networks. Upper Saddle River, NJ: Prentice Hall, [3] Huitema, C. Routing in the Internet. Upper Saddle River, NJ: Prentice Hall, [4] Perlman, R. Interconnection: Bridges, Routers, Switches and Internetworking Protocols. Reading, MA: Addison-Wesley, [5] Stallings, W. Data and Computer Communications. Upper Saddle River, NJ: Prentice Hall, [6] Stallings, W. High Speed Networks. Upper Saddle River, NJ: Prentice Hall, 998. [7] Yuan R. and Strayer, W. Virtual Private Network. Reading, MA: Addison-Wesley, 200. [8] Tanenbaum, A. Computer Networks. Upper Saddle River, NJ: Prentice Hall, [9] Peterson, L. and Davie B. Computer Networks: A System Approach. San Francisco, CA: Morgan, Kaufmans, [0]Moy, J. OSPF: Anatomy of an Internet Routing Protocol. Reading, MA: Addison-Wesley, 998. Router> Router>enable Password: VII. CONCLUSION 202

co Password Recovery Procedure for the Cisco 1700 Series R

co Password Recovery Procedure for the Cisco 1700 Series R co Password Recovery Procedure for the Cisco 1700 Series R Table of Contents Password Recovery Procedure for the Cisco 1700 Series Routers...1 Introduction...1 Before You Begin...2 Conventions...2 Prerequisites...2

More information

Password Recovery Procedure for the Cisco 1700 and 1800 Series Routers

Password Recovery Procedure for the Cisco 1700 and 1800 Series Routers Password Recovery Procedure for the Cisco 1700 and 1800 Series Routers Document ID: 22187 Introduction Prerequisites Requirements Components Used Related Products Conventions Step by Step Procedure Example

More information

Table of Contents. Cisco Password Recovery Procedure for the Cisco 2000, 2500, 3000, 4000, AccessPro, 7000 (RP), AGS, IGS, STS

Table of Contents. Cisco Password Recovery Procedure for the Cisco 2000, 2500, 3000, 4000, AccessPro, 7000 (RP), AGS, IGS, STS ry Procedure for the Cisco 2000, 2500, 3000, 4000, AccessPro, , IGS, STS Table of Contents Password Recovery Procedure for the Cisco 2000, 2500, 3000, 4000, AccessPro, 7000 (RP), AGS, IGS, STS 10x...1

More information

Password Recovery Procedure for the Cisco 3600 and 3800 Series Routers

Password Recovery Procedure for the Cisco 3600 and 3800 Series Routers Password Recovery Procedure for the Cisco 3600 and 3800 Series Routers Document ID: 22189 Contents Introduction Prerequisites Requirements Components Used Related Products Conventions Step by Step Procedure

More information

Password Recovery Procedure for the Cisco 1900 Series Integrated Services Routers

Password Recovery Procedure for the Cisco 1900 Series Integrated Services Routers Password Recovery Procedure for the Cisco 1900 Series Integrated Services Routers Document ID: 112058 Contents Introduction Prerequisites Requirements Components Used Related Products Conventions Step

More information

Password Recovery Procedure for the Catalyst 5500 Supervi

Password Recovery Procedure for the Catalyst 5500 Supervi Password Recovery Procedure for the Catalyst 5500 Supervi Table of Contents Password Recovery Procedure...1 for the Catalyst 5500 Supervisor RSFC...1 Introduction...1 Before You Begin...1 Conventions...1

More information

Password Recovery Procedure for the Cisco 801, 802, 803, 804, 805, 811, and 813 Series Routers

Password Recovery Procedure for the Cisco 801, 802, 803, 804, 805, 811, and 813 Series Routers Password Recovery Procedure for the Cisco 801, 802, 803, 804, 805, 811, and 813 Series Routers Document ID: 12732 Contents Introduction Prerequisites Requirements Components Used Related Products Conventions

More information

No Service Password-Recovery

No Service Password-Recovery No Service Password-Recovery Last Updated: January 18, 2012 The No Service Password-Recovery feature is a security enhancement that prevents anyone with console access from accessing the router configuration

More information

Lab 5.2.6b Managing IOS Images with ROMmon and Xmodem Instructor Version 2500

Lab 5.2.6b Managing IOS Images with ROMmon and Xmodem Instructor Version 2500 Lab 5.2.6b Managing IOS Images with ROMmon and Xmodem Instructor Version 2500 Objective Recover a Cisco router stuck in ROM monitor (ROMmon) mode. Learn how to avoid having to use Xmodem to restore an

More information

ord Recovery Procedure for the Cisco Catalyst 8510 Multiserv

ord Recovery Procedure for the Cisco Catalyst 8510 Multiserv ord Recovery Procedure for the Cisco Catalyst 8510 Multiserv Table of Contents Password Recovery Procedure for the Cisco Catalyst 8510 Multiservice Switch Router...1 Introduction...1 Before You Begin...1

More information

Table of Contents. Cisco The no service password recovery Command for Secure ROMMON Configuration Example

Table of Contents. Cisco The no service password recovery Command for Secure ROMMON Configuration Example Table of Contents The no service password recovery Command for Secure ROMMON Configuration Example...1 Introduction...1 Prerequisites...1 Requirements...1 Hardware and Software Requirements...1 Components

More information

Lab Managing IOS Images with TFTP Instructor Version 2500

Lab Managing IOS Images with TFTP Instructor Version 2500 Lab 5.2.5 Managing IOS Images with TFTP Instructor Version 2500 Objective Backup a copy of a router IOS from flash to a TFTP server. Reload the backup IOS software image from a TFTP server into flash on

More information

II+/II+TS/II+10GE/III/IV/V/V 10GE

II+/II+TS/II+10GE/III/IV/V/V 10GE Password Recovery Procedure for the Catalyst 4500/4000 Supervisor Engine II+/II+TS/II+10GE/III/IV/V/V 10GE Module and Catalyst 4900 Switches that Run Cisco IOS Software Document ID: 21229 Contents Introduction

More information

assword Recovery Procedure for the Catalyst 4000 Supervisor

assword Recovery Procedure for the Catalyst 4000 Supervisor assword Recovery Procedure for the Catalyst 4000 Supervisor Table of Contents Password Recovery Procedure for the Catalyst 4000 Supervisor III/IV Module...1 Introduction...1 Before You Begin...1 Conventions...1

More information

o Password Recovery Procedure for the Catalyst 6000 MSFC

o Password Recovery Procedure for the Catalyst 6000 MSFC o Password Recovery Procedure for the Catalyst 6000 MSFC Table of Contents Password Recovery Procedure...1 for the Catalyst 6000 MSFCI/MSFCII...1 Introduction...1 Before You Begin...1 Conventions...1 Prerequisites...1

More information

Router Startup and Configuration

Router Startup and Configuration Router Startup and Configuration Router Startup In general, the boot process follows these steps: Test hardware (POST) Load the bootstrap program Locate and load the Cisco IOS Locate and load the router

More information

Troubleshoot IOS Hypervisor and System Image Recovery for CGR 1000

Troubleshoot IOS Hypervisor and System Image Recovery for CGR 1000 Troubleshoot IOS Hypervisor and System Image Recovery for CGR 1000 Contents Introduction Prerequisites Requirements Components Used Steps to Recover Hypervisor and System Image Download Hypervisor Images

More information

Maintaining the MGX RPM-PR

Maintaining the MGX RPM-PR APPENDIX A This appendix describes maintenance procedures you might need to perform as your internetworking needs change. It contains the following sections: Reading Front Panel LEDs Recovering a Lost

More information

Using the Setup Script

Using the Setup Script APPENDIX A Using the Setup Script The information herein applies to the Cisco AS5350, Cisco AS5400, and Cisco AS5400HPX universal gateways that the latter requires use of Cisco IOS release 122(2)XB or

More information

Table of Contents. Cisco Xmodem Console Download Procedure Using ROMmon

Table of Contents. Cisco Xmodem Console Download Procedure Using ROMmon Table of Contents Xmodem Console Download Procedure Using ROMmon...1 Introduction...1 Before You Begin...1 Conventions...1 Prerequisites...1 Components Used...1 Overview...2 Usage...2 Examples...3 Xmodem

More information

Lab Using the Boot System Command. Objective. Background/Preparation

Lab Using the Boot System Command. Objective. Background/Preparation Lab 5.1.3 Using the Boot System Command Objective Display information about the Cisco IOS Image (software) that is currently running. Determine where the IOS is booting from. Check the amount of RAM, Flash

More information

Configuration Register Information

Configuration Register Information APPENDIXA The following information is found in this appendix: Configuration Bit Meanings, page A-1 Displaying the Configuration Register While Running Cisco IOS, page A-5 Displaying the Configuration

More information

Xmodem Console Download Procedure Using ROMmon

Xmodem Console Download Procedure Using ROMmon Xmodem Console Download Procedure Using ROMmon Contents Introduction Prerequisites Requirements Components Used Conventions Overview Usage Examples Xmodem Procedure for Downloading a Cisco IOS Software

More information

Cisco 4000 Series Virtual Configuration Register

Cisco 4000 Series Virtual Configuration Register APPENDIX D Cisco 4000 Series Virtual Configuration Register This appendix describes the Cisco 4000 series virtual configuration register, the factory-default settings, and the procedures for changing those

More information

Catalyst 6500/6000 MSFC Boot from the Supervisor Engine PC Card Configuration Example

Catalyst 6500/6000 MSFC Boot from the Supervisor Engine PC Card Configuration Example Catalyst 6500/6000 MSFC Boot from the Supervisor Engine PC Card Configuration Example Document ID: 65079 Contents Introduction Prerequisites Requirements Components Used Conventions Background Information

More information

Lab 3: Basic Device Configuration

Lab 3: Basic Device Configuration Lab 3: Basic Device Configuration University of Jordan Faculty of Engineering & Technology Computer Engineering Department Computer Networks Laboratory 907528 2 Lab 3: Basic Device Configuration **Given

More information

URIs in Cisco's IOS look like "flash:/directory/filename" when they're referred to by commands. For example

URIs in Cisco's IOS look like flash:/directory/filename when they're referred to by commands. For example Rev. 20180820.134621 35. IOS Files & Boot c cnac o okbook.com F I L E S Y S T E M S URIs in Cisco's IOS look like "flash:/directory/filename" when they're referred to by commands. For example R5# more

More information

Cisco NCS 4216 Initial Configuration

Cisco NCS 4216 Initial Configuration This chapter guides you through a basic router configuration, which is sufficient for you to access your network. Complex configuration procedures are beyond the scope of this publication and can be found

More information

Using the setup Command Facility

Using the setup Command Facility CHAPTER 2 This chapter describes how to use the setup command facility to configure your Cisco integrated access device (IAD). The setup command facility prompts you to enter information needed to start

More information

Configurations for the Layer 3 Switch Router

Configurations for the Layer 3 Switch Router CHAPTER 3 This chapter describes the initial configuration of the Layer 3 switch router and contains the following major sections: Starting Up the Layer 3 Switch Router, page 3-1 Using the Console and

More information

Backup a copy of a router IOS from flash to a TFTP server. Reload the backup IOS software image from a TFTP server into flash on a router.

Backup a copy of a router IOS from flash to a TFTP server. Reload the backup IOS software image from a TFTP server into flash on a router. Lab 5.2.5 Managing IOS Images with TFTP Objective Backup a copy of a router IOS from flash to a TFTP server. Reload the backup IOS software image from a TFTP server into flash on a router. Background/Preparation

More information

Lab 6.2.7a Managing Switch Operating System Files 2900XL Series

Lab 6.2.7a Managing Switch Operating System Files 2900XL Series Lab 6.2.7a Managing Switch Operating System Files 2900XL Series Objective Create and verify a basic switch configuration. Backup the switch IOS to a TFTP server and then restore it. Background/Preparation

More information

Installing and Upgrading Software

Installing and Upgrading Software This chapter describes how to update software on the Cisco ASR 920 Series Router. Upgrading Field Programmable Hardware Devices, page 1 File Systems on the Cisco ASR 920 Series Router, page 1 Restrictions,

More information

Maintaining the Cisco 7202 Router

Maintaining the Cisco 7202 Router CHAPTER 6 This chapter describes basic maintenance procedures for the Cisco 7202. The procedures are presented in the following sections: Viewing Your System Configuration, page 6-1 Removing and Replacing

More information

Maintaining the System Software

Maintaining the System Software CHAPTER 7 This chapter describes the tasks required for maintaining the Content Router software: Upgrading the System Software, page 7-1 Recovering the Content Router System Software, page 7-4 Maintaining

More information

How to Upgrade from ROMmon Using the Boot Image

How to Upgrade from ROMmon Using the Boot Image How to Upgrade from ROMmon Using the Boot Image Document ID: 6301 Contents Introduction Prerequisites Requirements Components Used Conventions What Is the Boot Image? (Rx boot) Loading the Boot Image Related

More information

First-Time Configuration

First-Time Configuration CHAPTER 3 This chapter contains information with which you should be familiar before you begin to configure your router for the first time, including information about understanding boot images, interface

More information

IOS and Configuration Basics

IOS and Configuration Basics APPENDIX C This appendix contains basic information about the Cisco Internet Operating System (IOS) software and includes the following sections: Cisco IOS Modes of Operation Getting Context-Sensitive

More information

Chapter 6: Network Layer

Chapter 6: Network Layer Chapter 6: Network Layer Introduction to Networks Intro to Networks v5 Network Layer Intro to Networks v5 2 The Network Layer End to End Transport processes Addressing end devices Encapsulation of Packets

More information

Rebooting and Reloading - Configuring Image Loading Characteristics

Rebooting and Reloading - Configuring Image Loading Characteristics Rebooting and Reloading - Configuring Image Loading Characteristics The basic processes completed by a Cisco device (such as a router) when it reboots can be specifically configured to improve function

More information

IP Routing Configuration in a Router with Troubleshooting

IP Routing Configuration in a Router with Troubleshooting International Journal of Electronics and Computer Science Engineering 93 Available Online at www.ijecse.org ISSN-2277-1956 IP Routing Configuration in a Router with Troubleshooting 1 Gyan Prakash Pal,

More information

Introduction To Cisco IOS

Introduction To Cisco IOS S SRS CNS Lab2 IntroductionToCiscoIOS IntroductionToCiscoIOS 1 RouterArchitecture Ciscoroutershavemanysimilaritieswithpersonalcomputers.Afterall,mostoperating systems offer basic routing features to any

More information

How to Upgrade Software Images on Catalyst Switch Layer 3 Modules

How to Upgrade Software Images on Catalyst Switch Layer 3 Modules How to Upgrade Software Images on Catalyst Switch Layer 3 Modules Document ID: 20685 Contents Introduction Prerequisites Requirements Components Used Conventions Background Information Before You Begin

More information

Chapter 5 Review Questions

Chapter 5 Review Questions Chapter 5 Review Questions The following questions are designed to test your understanding of this chapter s material. For more information on how to get additional questions, please see www.lammle.com/ccn

More information

CCENT Study Guide. Chapter 7 Managing a Cisco Internetwork

CCENT Study Guide. Chapter 7 Managing a Cisco Internetwork CCENT Study Guide Chapter 7 Managing a Cisco Internetwork Chapter 7 Objectives The CCENT Topics Covered in this chapter include: 2.0 LAN Switching Technologies 2.6 Configure and verify Layer 2 protocols.

More information

Chapter 5 Router and IOS Basics

Chapter 5 Router and IOS Basics Chapter 5 Router and IOS Basics Benefits of Routing Routers provide Packet filtering Connections between local networks Traffic control Wide area network (WAN) connections Routers operate at the Network

More information

Chapter 11. Configuring and Testing Your Network

Chapter 11. Configuring and Testing Your Network Chapter 11 Configuring and Testing Your Network CCNA1-1 Chapter 11 Note for Instructors These presentations are the result of a collaboration among the instructors at St. Clair College in Windsor, Ontario.

More information

CCNA 1 Chapter 2 v5.0 Exam Answers %

CCNA 1 Chapter 2 v5.0 Exam Answers % CCNA 1 Chapter 2 v5.0 Exam Answers 2015 100% 1. Which two features are characteristics of flash memory? (Choose two.) Flash provides nonvolatile storage. Flash receives a copy of the IOS from RAM when

More information

Cisco ASR 903 Initial Configuration

Cisco ASR 903 Initial Configuration This chapter guides you through a basic configuration, which is sufficient for you to access your network. Complex configuration procedures are beyond the scope of this publication and can be found in

More information

Upgrading the Software

Upgrading the Software APPENDIX B Upgrading the Software You can upgrade your software in the following ways: From the Cisco IOS command-line interface (CLI) From the ROM monitor Cisco recommends upgrading your software from

More information

Replace Supervisor Module in Cisco Catalyst 6500 Virtual Switching System 1440

Replace Supervisor Module in Cisco Catalyst 6500 Virtual Switching System 1440 Replace Supervisor Module in Cisco Catalyst 6500 Virtual Switching System 1440 Document ID: 109334 Contents Introduction Prerequisites Requirements Components Used Conventions Configure Network Diagram

More information

Configuring the Cisco ubr904 Cable Modem

Configuring the Cisco ubr904 Cable Modem CHAPTER 4 Configuring the Cisco ubr904 Cable Modem This chapter describes how to configure your Cisco ubr904 cable modem and includes the following sections: Configuration Overview Configuration Scenarios

More information

Configuring for the First Time

Configuring for the First Time CHAPTER 2 This section describes the initial steps of configuring the Catalyst 4224 and outlines the features of the Cisco IOS command line interface (CLI). Use this tool when you configure Catalyst 4224

More information

CCNA 1 Chapter 2 v5.0 Exam Answers 2013

CCNA 1 Chapter 2 v5.0 Exam Answers 2013 CCNA 1 Chapter 2 v5.0 Exam Answers 2013 1. Refer to the exhibit. A switch was configured as shown. A ping to the default gateway was issued, but the ping was not successful. Other switches in the same

More information

Packet Tracer - Configuring Initial Switch Settings

Packet Tracer - Configuring Initial Switch Settings Topology Objectives Part 1: Verify the Default Switch Configuration Part 2: Configure a Basic Switch Configuration Part 3: Configure a MOTD Banner Part 4: Save Configuration Files to NVRAM Part 5: Configure

More information

Accessing and Using GRUB Mode

Accessing and Using GRUB Mode About GRUB Mode and the Configuration Register, page 1 Accessing GRUB Mode, page 2 Using the GRUB Menu, page 3 Modifying the Configuration Register (confreg), page 4 Changing the Configuration Register

More information

2.1. Device Connection

2.1. Device Connection 2.1. Device Connection Cisco routers and switches do not have monitors, and you cannot connect a keyboard or a mouse directly to the device. To manage the device, you connect to the router or switch through

More information

Checklists for Configuring the Gateway

Checklists for Configuring the Gateway CHAPTER 7 The Cisco Unified Communications Manager Business Edition 3000 uses either Cisco 2901 Integrated Services Router (ISR2901) or Cisco Media Convergence Server 7890C1 (MCS7890-C1) to serve as your

More information

Lab Configuring Basic Router Settings with IOS CLI (Instructor Version Optional Lab)

Lab Configuring Basic Router Settings with IOS CLI (Instructor Version Optional Lab) (Instructor Version Optional Lab) Instructor Note: Red font color or gray highlights indicate text that appears in the instructor copy only. Optional activities are designed to enhance understanding and/or

More information

MiPDF.COM. 3. Which procedure is used to access a Cisco 2960 switch when performing an initial configuration in a secure environment?

MiPDF.COM. 3. Which procedure is used to access a Cisco 2960 switch when performing an initial configuration in a secure environment? CCNA1 v6.0 Chapter 2 Exam Answers 2017 (100%) MiPDF.COM 1. What is the function of the kernel of an operating software? It provides a user interface that allows users to request a specific task. The kernel

More information

Lab Troubleshooting RIP

Lab Troubleshooting RIP Lab 7.2.6 Troubleshooting RIP Objective Set up an IP addressing scheme using class B networks. Configure RIP on routers. Observe routing activity using the debug ip rip command. Examine routes using the

More information

Lab 7 Configuring Basic Router Settings with IOS CLI

Lab 7 Configuring Basic Router Settings with IOS CLI Lab 7 Configuring Basic Router Settings with IOS CLI Objectives Part 1: Set Up the Topology and Initialize Devices Cable equipment to match the network topology. Initialize and restart the router and switch.

More information

Maintaining System Memory

Maintaining System Memory Maintaining System Memory Last Updated: December 3, 2010 Maintaining system memory enables you to configure, use and monitor the different types of memory on your router. Finding Feature Information Your

More information

Accessing the WAN Chapter 4 - PART II Modified by Tony Chen 07/20/2008

Accessing the WAN Chapter 4 - PART II Modified by Tony Chen 07/20/2008 Network Security Accessing the WAN Chapter 4 - PART II Modified by Tony Chen 07/20/2008 ITE I Chapter 6 2006 Cisco Systems, Inc. All rights reserved. Cisco Public 1 Notes: If you see any mistake on my

More information

Activating or Deactivating Interface Module

Activating or Deactivating Interface Module This chapter provides information about activating or deactivating interface module (IM) on the Cisco ASR-920-24SZ-IM Router. For more information about the commands used in this chapter, see the Cisco

More information

4(b): Assign the IP address on the Serial interface of Router. Console Cable

4(b): Assign the IP address on the Serial interface of Router. Console Cable Lab#4 Router Basic IOS 4(a). Router Basic Commands & Configuration 4(b) Assign the IP address on the Serial interface of Router Console Cable R1 PC1 Objectives Be familiar with use of different Configuration

More information

Useful Switch Information

Useful Switch Information Useful Switch Information More detailed information is available at http://www.cisco.com/univercd/cc/td/doc/product/software/ios121/index.htm Summary of Commands 1 The enable command 1 The show mac-address-table

More information

First-Time Configuration

First-Time Configuration This chapter describes the actions to take before turning on your router for the first time Setup Mode, on page 1 Verifying the Cisco IOS Software Version, on page 4 Configuring the Hostname and Password,

More information

Powering On the Cisco VG224 Voice Gateway

Powering On the Cisco VG224 Voice Gateway CHAPTER 4 To power on your Cisco VG224 voice gateway, perform the following tasks in the order listed, as required: Checklist for Power-On, page 4-1 Power-On Procedure, page 4-1 Initial Configuration Procedures,

More information

Configuring Passwords and Privileges

Configuring Passwords and Privileges Configuring Passwords and Privileges Using passwords and assigning privilege levels is a simple way of providing terminal access control in your network. This chapter describes the following topics and

More information

Route Processor Redundancy Plus (RPR+)

Route Processor Redundancy Plus (RPR+) Route Processor Redundancy (RPR) provides an alternative to the High System Availability (HSA) feature. HSA enables a system to reset and use a standby Route Switch Processor (RSP) if the active RSP fails.

More information

Initial Configuration on ML-Series Card

Initial Configuration on ML-Series Card CHAPTER 3 This chapter describes the initial configuration of the ML-Series card and contains the following major sections: Hardware Installation, page 3-1 Cisco IOS on the ML-Series Card, page 3-2 Startup

More information

Lab Configuring OSPF Timers

Lab Configuring OSPF Timers Lab 2.3.5 Configuring OSPF Timers Objective Setup an IP addressing scheme for OSPF area. Configure and verify OSPF routing. Modify OSPF interface timers to adjust efficiency of network. Background/Preparation

More information

Lab Router Configuration Using Setup Instructor Version 2500

Lab Router Configuration Using Setup Instructor Version 2500 Lab 2.2.1 Router Configuration Using Setup Instructor Version 2500 Objective Use the System Configuration dialog (setup). Establish some basic router configurations. Background/Preparation A new router

More information

Lab Establishing and Verifying a Telnet Connection Instructor Version 2500

Lab Establishing and Verifying a Telnet Connection Instructor Version 2500 Lab 4.2.2 Establishing and Verifying a Telnet Connection Instructor Version 2500 Objective Establish a Telnet connection to a remote router. Verify that the application layer between source and destination

More information

LAB 3 Basic Switch Configuration Commands

LAB 3 Basic Switch Configuration Commands LAB 3 Basic Switch Configuration Commands This lab explains basic switch configuration commands in detail with examples. Configuration and commands explained in this tutorial are essential commands to

More information

CS IT ports switch basic configuration. Lecture (01) Introduction to 24 ports managed switches By: Dr. Ahmed ElShafee.

CS IT ports switch basic configuration. Lecture (01) Introduction to 24 ports managed switches By: Dr. Ahmed ElShafee. Lecture (01) Introduction to 24 ports managed switches By: Dr. Ahmed ElShafee CS IT Agenda 24 ports switch basic configuration Switch remote configuration peer2peer star network clients/server star network

More information

outing and Switching Elective : Le

outing and Switching Elective : Le Routing and Switching Elective : Lecture Notes Nepal Engineering College Compiled by: Junior Professor: Daya Ram Budhathoki Nepal Engineering college, Changunarayan Chapters covered: Cabling Router Configuration

More information

Configure Initial Router Settings on Cisco 4000 Series ISRs

Configure Initial Router Settings on Cisco 4000 Series ISRs Configure Initial Router Settings on Cisco 4000 Series ISRs This chapter describes how to perform the initial configuration on Cisco 4000 Series Integrated Services Routers (ISRs). It contains the following

More information

Cisco ASR 1009-X Router and Cisco ASR 1006-X Router Power Up and Initial Configuration

Cisco ASR 1009-X Router and Cisco ASR 1006-X Router Power Up and Initial Configuration Cisco ASR 1009-X Router and Cisco ASR 1006-X Router Power Up and Initial Configuration This chapter guides you through a basic router configuration, which is sufficient for you to access your network.

More information

Lab Password Recovery Procedure on a Catalyst 2950 Series Switch 2900XL Series

Lab Password Recovery Procedure on a Catalyst 2950 Series Switch 2900XL Series Lab 6.2.8 Password Recovery Procedure on a Catalyst 2950 Series Switch 2900XL Series Objective Create and verify a basic switch configuration. Change passwords and use the password recovery procedure.

More information

Lab 1. CLI Navigation. Scenario. Initial Configuration for R1

Lab 1. CLI Navigation. Scenario. Initial Configuration for R1 Lab 1 CLI Navigation This lab covers the most basic skills for accessing and using the command-line interface (CLI) on a Cisco router or switch. Many of the small, picky details of how the CLI works cannot

More information

Upgrading the Cisco IOS XE Software

Upgrading the Cisco IOS XE Software Prerequisites for the Software Upgrade Process, page 1 Saving Backup Copies of Your Old System Image and Configuration, page 2 Using TFTP or Remote Copy Protocol to Copy the System Image into Boot Flash

More information

Lab Command Modes and Router Identification. Objective. Background/Preparation. Step 1 Login to the router in user EXEC mode

Lab Command Modes and Router Identification. Objective. Background/Preparation. Step 1 Login to the router in user EXEC mode Lab 3.1.2 Command Modes and Router Identification Objective Identify basic router modes of user EXEC and privileged EXEC. Use commands to enter specific modes. Become familiar with the router prompt for

More information

Lab 4.2.5a Connectivity Tests Ping

Lab 4.2.5a Connectivity Tests Ping Lab 4.2.5a Connectivity Tests Ping Objective Use the ping command to send ICMP datagrams to target host. Verify that the network layer between source and destination is working properly. Retrieve information

More information

Cisco cbr Converged Broadband Routers High Availability Configuration Guide for Cisco IOS XE Everest

Cisco cbr Converged Broadband Routers High Availability Configuration Guide for Cisco IOS XE Everest Cisco cbr Converged Broadband Routers High Availability Configuration Guide for Cisco IOS XE Everest 16.5.1 First Published: 2017-04-07 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San

More information

Using Cisco IOS XE Software

Using Cisco IOS XE Software This chapter describes the basics of using the Cisco IOS XE software and includes the following section: Accessing the CLI Using a Router Console, on page 1 Accessing the CLI Using a Router Console Before

More information

Command-Line Interface (CLI) Basics

Command-Line Interface (CLI) Basics 4 CHAPTER This chapter is intended as a quick reference, not as a step-by-step explanation of the Cisco IOS. The chapter describes basic Cisco IOS software command-line interfaces that you may need to

More information

King Fahd University of Petroleum & Minerals. Configuration of Routers and Establishing Routed Networks

King Fahd University of Petroleum & Minerals. Configuration of Routers and Establishing Routed Networks King Fahd University of Petroleum & Minerals Electrical Engineering Department EE 400, Experiment # 7 Objectives: Configuration of Routers and Establishing Routed Networks The objective of this experiment

More information

This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and

This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and exclusive use by instructors in the CCNA Exploration:

More information

Initial Configuration

Initial Configuration 3 CHAPTER This chapter describes the initial configuration of the ML-Series card and contains the following major sections: Hardware Installation, page 3-1 Cisco IOS on the ML-Series Card, page 3-2 Startup

More information

Lab Configuring Router Passwords. Objective. Background/Preparation. Step 1 Login to the router in user EXEC mode

Lab Configuring Router Passwords. Objective. Background/Preparation. Step 1 Login to the router in user EXEC mode Lab 3.1.3 Configuring Router Passwords Objective Configure a password for console login to user EXEC mode. Configure a password for virtual terminal (Telnet) sessions. Configure a secret password for privileged

More information

Fast Software Upgrade

Fast Software Upgrade Information About, page 1 Microcontroller MCU Upgrade, page 1 Restrictions for, page 2 Prerequisites for, page 2 Perform a, page 2 Fast Reload, page 7 Verify the, page 9 Information About During a software

More information

Lab Backing up Configuration Files

Lab Backing up Configuration Files Lab 3.2.9 Backing up Configuration Files Objective Demonstrate the capture of the running configuration of a router to an ASCII text file with HyperTerminal. Edit or modify the configuration with a text

More information

Network Virtualization Configuration Guide, Cisco IOS XE (Cisco NCS 4200 Series)

Network Virtualization Configuration Guide, Cisco IOS XE (Cisco NCS 4200 Series) Network Virtualization Configuration Guide, Cisco IOS XE 16.5.1 (Cisco NCS 4200 Series) Revised: April 23, 2017, Enabling Network Virtualization Satellite Mode Overview The Satellite Network Virtualization

More information

Cisco ASR 1000 Series Routers Power Up and Initial Configuration

Cisco ASR 1000 Series Routers Power Up and Initial Configuration Cisco ASR 1000 Series Routers Power Up and Initial Configuration This chapter guides you through a basic router configuration, which is sufficient for you to access your network. Complex configuration

More information

Lab Well-Known Port Numbers and Multiple Sessions

Lab Well-Known Port Numbers and Multiple Sessions Lab 10.2.5 Well-Known Port Numbers and Multiple Sessions Objective Enable HTTP services on a router. Show multiple HTTP and Telnet sessions on a single host. Observe well-known TCP port numbers on the

More information

configuring and connecting 24

configuring and connecting 24 Lecture (01) configuring and connecting 24 ports switch Dr. Ahmed M. ElShafee ١ ٢ Step 1: connecting your PC to the Console Port. Open HyperTerminal software Press RETURN to get started. Switch> (User

More information

Lecture (01) configuring and connecting 24 ports switch

Lecture (01) configuring and connecting 24 ports switch Lecture (01) configuring and connecting 24 ports switch Dr. Ahmed M. ElShafee ١ ٢ Step 1: connecting your PC to the Console Port. Open HyperTerminal software Press RETURN to get started. Switch> (User

More information

CCNA Layer 2 switching. Revision no.: PPT/2K605/03

CCNA Layer 2 switching. Revision no.: PPT/2K605/03 CCNA 640-801 Layer 2 switching Revision no.: PPT/2K605/03 What is Switching? It breaks the Collision Domain It takes the packet and forwards to destined port without any modification. Network still remains

More information