The word "Router" is replaced with your router's hostname if the hostname is already configured.

Size: px
Start display at page:

Download "The word "Router" is replaced with your router's hostname if the hostname is already configured."

Transcription

1 1.2 IOS User Modes There are two primary modes of operation within the IOS: user mode and privileged mode. When you first connect to the router, you are placed in the user mode. The Cisco documentation refers to this as the user exec mode; I am going to omit "exec" throughout this book. The user mode is indicated by the prompt: Router> The word "Router" is replaced with your router's hostname if the hostname is already configured. The show commands in user mode are limited to a few basic levels. You cannot edit or view configurations at this stage; you can only view the router status and other miscellaneous information. To obtain a basic listing of commands, type a question mark: Router>? Editing the router's configuration requires you to be in the privileged exec mode, which I simply call "privileged mode." Use the enable command to enter this mode: Router>enable Password: Router# Privileged mode prompt You can always tell whether you are in user mode or privileged mode by looking at the prompt. The user mode prompt has a > at the end; the privileged mode prompt always has a # at the end, regardless of the submode. If you are familiar with Unix, you can equate privileged mode to "root" access. You could also equate it to the administrator level in NT or the supervisor in NetWare. In this mode, you have permission to access everything inside the router, including configuration commands. However, you can't type configuration commands directly. Before you can change the router's actual configuration, you must enter a submode of the privileged mode by giving the command configure terminal (see Section 1.3 for a shortcut). This command can be entered only when you are in the privileged mode. Router#configure terminal Enter configuration commands, one per line. End with Ctrl-Z Router(config)# Configuration mode To exit from configuration mode, you can use the command exit or type Ctrl-Z. To exit from enable (privileged) mode, you can use the disable command. So to exit both configuration and enable mode, use the following sequence of commands:

2 Router(config)#exit Router#disable Router> Privileged mode has several submodes in addition to configuration mode; each has its own prompt. To enter these submodes, you must first enter configuration mode by giving the configure terminal command. Here's a summary of the most common modes and prompts (there are many others): Global configuration mode Prompt: Router(config)# This level allows you to enter commands directly into the router configuration. From this level, you can enter any of the other three levels listed here. Once you are done entering commands into the configuration, use Ctrl-Z, exit, or the end command to return to the privileged prompt. The device's hostname is a good example of a configuration item you would find in the global configuration mode. Interface configuration mode Prompt: Router(config-if)# At this level, you are entering interface-specific commands. To enter this mode from theconfiguration prompt, use the command interface followed by an interface name, such as ethernet0, serial0, or serial1. Interface commands are discussed in Chapter 5. Use the exit command to exit from this prompt and return to the configuration prompt. Line configuration mode Prompt: Router(config-line)# From this prompt, you can enter line-specific commands. To enter this mode from the configuration prompt, use the command line, followed by a line type such as vty, console, tty, or async and a line number. The line configuration commands are discussed in Chapter 4. Once again, use the exit command to exit this mode and return to the configuration prompt. Router configuration mode Prompt: Router(config-router)#

3 From this prompt, you can enter only routing commands. To enter this mode from the configuration prompt, use the command router, followed by a routing protocol, such as rip or igrp. These commands differ widely depending on the routing protocol being used. Routing configuration commands are discussed in Chapter 8 through Chapter 10. Use the exit command to exit this mode and return to the configuration prompt. Figure 1-1 is a flow chart that illustrates the transitions between the most common command modes and submodes. (This list is not comprehensive.) The arrows are labeled with the commands that cause the transitions between the modes. Figure 1-1. Transitions between IOS command modes Configuration submodes provide a context in which certain commands are legal and others disallowed. It's one way that IOS tries to prevent you from making mistakes when configuring a router. In the quick-reference section, I list each

4 command with the context (or mode) in which it can be given. Contexts are clearly important on the command line, where the prompt shows the submode you're in. They are equally important in configuration files, where there are no such hints; you just have to know.

5

6 1.3 Command-Line Completion Command-line completion makes the IOS interface much more user-friendly. It saves you extra typing and helps out when you cannot remember a command's syntax. In a previous example, we used the command configure terminal: Router#configure terminal But you could have saved wear and tear on your hands by typing: Router#conf t IOS expands the command conf t to configure terminal. Another shortcut is to press Tab after typing "conf"; the router will fill in the best completion, which is "configure". Here is another example: Router#show running-config This long command can be shortened to: Router#sh ru The router knows that "show" is what you wanted because show is the only command that begins with "sh"; likewise, the only subcommand of show that begins with "ru" is running-config. If the router does not understand a command, it repeats the entire command line and places a caret (^) under the point at which it ran into trouble. For example: Router>show itnerface e0 >show itnerface e0 ^ % Invalid input detected at '^' marker. The caret symbol is pointing to the "t" in "itnerface", which is the command the router does not understand. We can quickly fix that by retyping the command: Router>show interface e0 We now get the correct output! Since we also know how to use shortcuts, we can type: Router>sh int e0 With this command we get the same result as its lengthy counterpart. Commandline completion saves a lot of typing, and it helps you keep your sanity when you're working with long commands.

7 Another form of command-line completion is the use of the Tab key. If you start a command by entering the first few characters, you can hit the Tab key. As long as there is only one match, the router will complete the command: for example, if you type "sh" and hit Tab, the router completes the "sh" with "show". If the router does not complete the command, you can enter a few more letters and try again. 1.4 Get to Know the Question Mark Previously, I said that you can get the available commands by typing? at the prompt. You can also use this trick to find the subcommands of any command. For example, if you know you want to use the copy command but cannot remember which subcommand you need, type: Router#copy? WORD Copy from flash device - format <dev:>[partition:][filename] flash Copy from system flash flh-log Copy FLH log file to server mop Copy from a MOP server rcp Copy from an rcp server running-config Copy from current system configuration startup-config Copy from startup configuration tftp Copy from a TFTP server Another use of the question mark is to find all commands that match what you have typed so far. For example, if you know the first part of a command, type it and then type a question mark. The router will return a list of all the matching commands. In the following example, we remember that the configure command begins with "co", but that's it. The router gives us the matching commands: Router#co? configure connect copy Note the important difference between these two examples. In the first example, there was a space before the question mark, which gave us the next command that complements copy. Had there not been a space, the router would have tried to complete the word "copy" for us, not given us the next available commands. In the next example, we did not add the space, so the router tried to complete "co" with all the commands it could find that start with "co". Another important rule to understand is that the router will return only commands that are relevant to the mode you are currently in. For example, if you are in user mode, you will be given only commands that apply to that mode. 1.5 Command-Line Editing Keys

8 IOS provides a number of keyboard shortcuts that let you edit the line you're typing. They should be familiar to any user of Unix or Emacs. Table 1-1 lists the command-line editing keys. Ctrl-a Ctrl-b Ctrl-d Ctrl-e Ctrl-f Ctrl-k Ctrl-n Ctrl-p Ctrl-t Ctrl-r Ctrl-u Keys Ctrl-w Ctrl-x Ctrl-y Ctrl-z Tab Up arrow Down arrow Left arrow Right Table 1-1. Command-line editing keys Commands Returns the cursor to the beginning of the current line. Moves the cursor back one character. (Equivalent to the left arrow key.) Deletes the character to the left of the cursor. Moves the cursor to the end of the line. Moves the cursor forward one character. (Equivalent to the right arrow key.) Deletes all the characters from the current cursor position to the end of the line. Goes to the next command in the session history. (Equivalent to the down arrow key.) Goes to the previous command in the session history. (Equivalent to the up arrow key.) Switches the current character with the character to the left of the cursor. Redraws or redisplays the current line. Clears the line. Deletes the word to the left of the cursor. Deletes from the cursor position to the beginning of the line. Pastes the most recently deleted characters to the current cursor position. Exits the current configuration mode and returns to the previous configuration mode. Tries to finish the current command. (Command completion.) Moves back through the history of commands. Moves forward through the history of commands. Moves the cursor to the left. Moves the cursor to the right.

9 Keys arrow Ctrl-^, then x Table 1-1. Command-line editing keys Commands Aborts the sequence. Breaks out of any executing command.

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

Using the Cisco NCS Command-Line Interface

Using the Cisco NCS Command-Line Interface CHAPTER 2 This chapter provides helpful tips for understanding and configuring the Cisco Prime Network Control System (NCS) from the command-line interface (CLI). The Cisco NCS can be deployed for small,

More information

Command-Line Interfaces

Command-Line Interfaces CHAPTER 2 This chapter describes the CLIs you use to configure the Catalyst 4500 series switch. This chapter includes the following major sections: Accessing the Switch CLI, page 2-1 Performing Command-Line

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

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

Cisco IOS Software Basic Skills

Cisco IOS Software Basic Skills APPENDIX A Understanding how to use Cisco IOS software can save you time when you are configuring your router. If you need a refresher, take a few minutes to read this appendix. This appendix contains

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

Using the Command-Line Interface

Using the Command-Line Interface CHAPTER 2 This chapter describes the Cisco IOS command-line interface (CLI) and how to use it to configure your Cisco ME 3400 Ethernet Access switch. It contains these sections: Understanding Command Modes,

More information

Command-Line Interfaces

Command-Line Interfaces CHAPTER 2 This chapter describes the CLIs you use to configure the Catalyst 4500 series switch. This chapter includes the following major sections: Accessing the Switch CLI, page 2-2 Performing Command-Line

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

Basic IOS Configuration and Basic Serial WAN Connectivity

Basic IOS Configuration and Basic Serial WAN Connectivity 3............................................. Basic IOS Configuration and Basic Serial WAN Connectivity 1. In which of the following modes in Cisco s IOS can you issue show commands? (Choose two.) A.

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

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

Cisco IOS Configuration Basics

Cisco IOS Configuration Basics Cisco IOS Configuration Basics Switching Router Overview Router configuration controls the operation of the router s: Interface IP address and netmask Routing information (static, dynamic or default) Boot

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

Using the Command-Line Interface

Using the Command-Line Interface Information About, page 1 How to Use the CLI to Configure Features, page 5 Information About Command Modes The Cisco IOS user interface is divided into many different modes. The commands available to you

More information

Practice Dynagen. Winpcap 4.0. RPMs for are now available in the download section. Thanks to Sean Walberg for performing the packaging.

Practice Dynagen. Winpcap 4.0. RPMs for are now available in the download section. Thanks to Sean Walberg for performing the packaging. Dynagen What is the Dynagen? Dynagen is a front end dfor use with the Dynamips Cisco router emulator. It uses an INI like configuration file to provision Dynamips emulator networks. It takes care of specifying

More information

Using Cisco IOS Software

Using Cisco IOS Software APPENDIX A This appendix describes the basics about using the Cisco IOS software that is installed on every Cisco ubr905 and Cisco ubr925 cable access routers: Accessing the Command-Line Interface, page

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

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

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

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

Lab Command Line Fundamentals Instructor Version 2500

Lab Command Line Fundamentals Instructor Version 2500 Lab 2.2.9 Command Line Fundamentals Instructor Version 2500 Objective Log into a router and go to the user and privileged modes. Use several basic router commands to determine how the router is configured.

More information

Basic IOS Command Structure. Router#disable Router>

Basic IOS Command Structure. Router#disable Router> Router#disable Router> Basic IOS Command Structure Each IOS command has specific format or syntax and is executed at the appropriate prompt. The general syntax for a command is the command followed by

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

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

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

~ 1 ~ Ankara University Department of Computer Engineering COM LAB 1 Part 1

~ 1 ~ Ankara University Department of Computer Engineering COM LAB 1 Part 1 ~ 1 ~ Ankara University Department of Computer Engineering COM332 2017 LAB 1 Part 1 SECTION 1 PC Network TCP/IP Configuration Objective Identify tools used to discover a computer network configuration

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

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

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

Antonio Cianfrani. Packet Tracer

Antonio Cianfrani. Packet Tracer Antonio Cianfrani Packet Tracer Packet Tracer (1/2) Packet Tracer? Cisco Packet Tracer is a software able to emulate CISCO networking devices. Packet Tracer features: Allows to create network topologies

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

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 2: Routers

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

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

CHAPTER 2 ACTIVITY

CHAPTER 2 ACTIVITY CHAPTER 2 ACTIVITY 2.1.1.1 1. CLI stands for 2. GUI stands for 3. Write the step you used to go to CLI interface on Windows 4. The OS, normally loads from a disk drive, into RAM. 5. The portion of the

More information

Using the Cisco IOS Command-Line Interface

Using the Cisco IOS Command-Line Interface Using the Cisco IOS -Line Interface Last Updated: May 2, 2008 The Cisco IOS command-line interface (CLI) is the primary user interface used for configuring, monitoring, and maintaining Cisco devices This

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

Network Cable : Configure & Verifying Cross-Over Cable. Network Profile: Network Discovery, File and Printer sharing

Network Cable : Configure & Verifying Cross-Over Cable. Network Profile: Network Discovery, File and Printer sharing Lab # Lab 1 Lab 2 Lab 3 Lab 4 Lab 5 Lab 6 Lab 7 Lab 8 Lab 9 Lab 10 Lab 11 Lab 12 Lab 13 Lab 14 Lab 15 Lab 16 Lab 17 Lab 18 Lab 19 Lab 20 Lab 21 Lab 22 Lab 23 Topic LAN Card: Check Speed, Enable/Disable.

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

Configuring Local Authentication

Configuring Local Authentication This chapter describes local authentication. This chapter also describes procedures to configure local authentication and privilege levels. This chapter includes the following topics: Understanding Authentication,

More information

Lab Advanced Telnet Operations Instructor Version 2500

Lab Advanced Telnet Operations Instructor Version 2500 Lab 4.2.4 Advanced Telnet Operations Instructor Version 2500 Objective Use the telnet command to remotely access other routers. Verify that the application layer between the source and the destination

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

KIM DONNERBORG / RTS. Cisco Lab Øvelse Af Kim Donnerborg / RTS. Side 0 af 8

KIM DONNERBORG / RTS. Cisco Lab Øvelse Af Kim Donnerborg / RTS. Side 0 af 8 KIM DONNERBORG / RTS Side 0 af 8 INDHOLDSFORTEGNELSE Lab: Basic Router Configuration... 2 Topology Diagram... 2 Addressing Table... 2 Learning Objectives... 2 Scenario... 2 Task 1: Cable the Network....

More information

Using the Command-Line Interface (CLI)

Using the Command-Line Interface (CLI) Using the -Line Interface (CLI) The Cisco IOS command-line interface (CLI) is the primary user interface used for configuring, monitoring, and maintaining Cisco devices. This user interface allows you

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

CCNA relevante Befehle

CCNA relevante Befehle CCNA relevante Befehle router>enable Password: router#disable router>en Password: router#configure terminal router(config)#exit router#show arp router#show flash: all router#show history router#show interfaces

More information

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

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

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

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

The Lab. The lab (cont ) 5 (6) routers ETSF05 + ETSF The routing lab. Jens A Andersson. Many links (vlans) Front-end server

The Lab. The lab (cont ) 5 (6) routers ETSF05 + ETSF The routing lab. Jens A Andersson. Many links (vlans) Front-end server ETSF05 + ETSF10 2011 The routing lab Jens A Andersson The Lab 2 The lab (cont ) 5 (6) routers Cisco 1841 IOS vers 15 Many links (vlans) Front-end server Access to router lab tftp and ftp server for the

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

Using the Command-Line Interface

Using the Command-Line Interface CHAPTER 1 The Cisco Metro Ethernet (ME) 3400E Series Ethernet Access switch is supported by Cisco IOS software. This chapter describes how to use the switch command-line interface (CLI) to configure software

More information

Configuration File Management Commands

Configuration File Management Commands This chapter provides detailed descriptions of commands used to manage configuration files in Cisco IOS Release 12.2. Configuration files contain the set of commands used to customize the function of the

More information

Lab Configuring OSPF Timers 2500 Series

Lab Configuring OSPF Timers 2500 Series Lab 2.3.5 Configuring OSPF Timers 2500 Series 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

Telnet, Console and AUX Port Passwords on Cisco Routers Configuration Example

Telnet, Console and AUX Port Passwords on Cisco Routers Configuration Example Telnet, Console and AUX Port Passwords on Cisco Routers Configuration Example Document ID: 45843 Contents Introduction Prerequisites Requirements Components Used Conventions Background Information Configure

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

TELECOMMUNICATION MANAGEMENT AND NETWORKS

TELECOMMUNICATION MANAGEMENT AND NETWORKS QUAID-E-AWAM UNIVERSITY OF ENGINEERING SCIENCE AND TECHNOLOGY, NAWABSHAH TELECOMMUNICATION MANAGEMENT AND NETWORKS LAB # 3 CONFIGURING INTERFACES OF ROUTER AND SWITCH Topology Diagram Addressing Table

More information

CCNA Explorer 1 Chapter 11 Configuring & Testing Your Network

CCNA Explorer 1 Chapter 11 Configuring & Testing Your Network CCNA Explorer 1 Chapter 11 Configuring & Testing Your Network 11.1.1 What is the system software in Cisco devices? The Cisco IOS provides devices with what network services? How is the IOS generally accessed?

More information

Lab Troubleshooting Routing Issues with show ip route and show ip protocols Instructor Version 2500

Lab Troubleshooting Routing Issues with show ip route and show ip protocols Instructor Version 2500 Lab 9.3.5 Troubleshooting Routing Issues with show ip route and show ip protocols Instructor Version 2500 Objective Use the show ip route and show ip protocol commands to diagnose a routing configuration

More information

Module 9, Assignment 7

Module 9, Assignment 7 Module 9, Assignment 7 7.2.3 Control Router via Console (in Packet Tracer) 1. Prepare a Cisco 1841 Router (see figure 6-9). 2. Prepare a PC for administration. 3. Prepare a console cable and plug the serial

More information

Before you start the lab exercises see the lab administrator or EEE3080F tutor to get assigned to your routers.

Before you start the lab exercises see the lab administrator or EEE3080F tutor to get assigned to your routers. EEE00F Lab Basics of the Network Lab Student Lab Manual Before you start the lab exercises see the lab administrator or EEE00F tutor to get assigned to your routers. Contents. Resources used in the labs...

More information

LAB MANUAL for Computer Network

LAB MANUAL for Computer Network LAB MANUAL for Computer Network CSE-310 F Computer Network Lab L T P - - 3 Class Work : 25 Marks Exam : 25 MARKS Total : 50 Marks This course provides students with hands on training regarding the design,

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

Student Instructions: "Rob Router" Learns How to Communicate...Again!

Student Instructions: Rob Router Learns How to Communicate...Again! Student Instructions: "Rob Router" Learns How to Communicate...Again! PART 1 Perform the following tasks: Configure the router assigned to you. (Use the Router Configuration Setup handout.) When finished

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

Lab: RIP v2 with VLSM

Lab: RIP v2 with VLSM Lab: RIP v2 with VLSM Topology Diagram Addressing Table Device Interface IP Address Subnet Mask Default Gateway BRANCH HQ ISP PC1 PC2 PC3 PC4 PC5 Lo1 S0/0/0 Lo1 S0/0/0 S0/0/1 S/0/0/1 Learning Objectives

More information

Lab Configuring the OSPF Routing Process

Lab Configuring the OSPF Routing Process Lab 2.3.1 Configuring the OSPF Routing Process Objective Setup an IP addressing scheme for OSPF area 0. Configure and verify Open Shortest Path First (OSPF) routing. Background/Preparation Cable a network

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

Console Port, Telnet, and SSH Handling

Console Port, Telnet, and SSH Handling Console Port Overview, on page 1 Connecting Console Cables, on page 1 Installing USB Device Drivers, on page 1 Console Port Handling Overview, on page 2 Telnet and SSH Overview, on page 2 Persistent Telnet,

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

SEMESTER 2 Chapter 1 Planning and Cabling a Network V 4.0

SEMESTER 2 Chapter 1 Planning and Cabling a Network V 4.0 SEMESTER 2 Chapter 1 Planning and Cabling a Network V 4.0 135 points 1.1.1 What are the common components between a router and other computers? CPU RAM ROM Operating System 1.1.1.2 What does a router connect?

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 Verifying RIP v2 Configuration

Lab Verifying RIP v2 Configuration Lab 1.2.5 Verifying RIP v2 Configuration Objective Configure RIP v1 and v2 on routers. Use show commands to verify RIP v2 operation. Background/Preparation Cable a network similar to the one shown in the

More information

Lab Troubleshooting IP Address Issues Instructor Version 2500

Lab Troubleshooting IP Address Issues Instructor Version 2500 Lab 4.2.6 Troubleshooting IP Address Issues Instructor Version 2500 Objective Configure two routers and two workstations in a small WAN. Troubleshoot problems introduced by incorrect configurations. Background/Preparation

More information

Lab Configuring OSPF Authentication 2500 Series

Lab Configuring OSPF Authentication 2500 Series Lab 2.3.4 Configuring OSPF Authentication 2500 Series Objective Setup an IP addressing scheme for Open Shortest Path First (OSPF) area. Configure and verify OSPF routing. Introduce OSPF authentication

More information

Using the Command-Line Interface

Using the Command-Line Interface CHAPTER 1 The command-line interface (CLI) is a line-oriented user interface that has a set of commands for configuring, managing, and monitoring the CSS. To help you use these commands, this chapter provides

More information

Configuring Switch-Based Authentication

Configuring Switch-Based Authentication CHAPTER 7 This chapter describes how to configure switch-based authentication on the switch. Unless otherwise noted, the term switch refers to a standalone switch and to a switch stack. This chapter consists

More information

config mode: Router> enable Router# configure terminal Enter configuration commands, one per line. End with CNTL/Z.

config mode: Router> enable Router# configure terminal Enter configuration commands, one per line. End with CNTL/Z. CCNA1-CH2 2.1.1.1 OS / IOS 2.1.2.1 console (serial) / ssh / telnet 2.1.2.2 putty (teraterm / mobxterm / ) 2.1.3.1 IOS operation: console (cable + config) in packettracer 2.1.3.2 user EXEC vs Privileged

More information

Examples of Cisco APE Scenarios

Examples of Cisco APE Scenarios CHAPTER 5 This chapter describes three example scenarios with which to use Cisco APE: Access to Asynchronous Lines, page 5-1 Cisco IOS Shell, page 5-3 Command Authorization, page 5-5 Note For intructions

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

CCNA 1 Chapter 11 V4.0 Answers

CCNA 1 Chapter 11 V4.0 Answers CCNA 1 Chapter 11 V4.0 Answers 1. Refer to the exhibit. What command will place the router into the correct mode to configure an appropriate interface to connect to a LAN? UBAMA# configure terminal UBAMA(config)#

More information

CCENT Study Guide. Chapter 6 Cisco s Internetworking Operating System (IOS)

CCENT Study Guide. Chapter 6 Cisco s Internetworking Operating System (IOS) CCENT Study Guide Chapter 6 Cisco s Internetworking Operating System (IOS) Chapter 6 Objectives The CCENT Topics Covered in this chapter include: 2.0 LAN Switching Technologies 2.3 Troubleshoot interface

More information

Using the Command-Line Interface

Using the Command-Line Interface CHAPTER 1 The command-line interface (CLI) is a line-oriented user interface that provides commands for configuring, managing, and monitoring the GSS. To help you use these commands, this chapter contains

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

Lab Configuring IGRP Instructor Version 2500

Lab Configuring IGRP Instructor Version 2500 Lab 7.3.5 Configuring IGRP Instructor Version 2500 Objective Setup IP an addressing scheme using class C networks. Configure IGRP on routers. Background/Preparation Cable a network similar to the one in

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

Catalyst 2960-X Switch Routing Configuration Guide, Cisco IOS Release 15.0(2)EX

Catalyst 2960-X Switch Routing Configuration Guide, Cisco IOS Release 15.0(2)EX Catalyst 2960-X Switch Routing Configuration Guide, Cisco IOS Release 15.0(2)EX First Published: July 10, 2013 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA

More information

CCNA2 Chapter 1 Practice

CCNA2 Chapter 1 Practice CCNA2 Chapter 1 Practice Where should a crossover UTP cable be used? (Choose 2) To connect two PCs together directly. To connect a router to an Ethernet switch. To connect a PC to an Ethernet switch. To

More information

The Project Study two different routing protocols for intra domain Internet routing Hands-on experience

The Project Study two different routing protocols for intra domain Internet routing Hands-on experience ETSF05 2013 The routing lab Jens A Andersson The Project Study two different routing protocols for intra domain Internet routing Hands-on experience configuring and managing routers how to set up routing

More information

Lab Manual. ISC 350 (Networks and Telecommunication) Information Technology Solutions. Prepared by: Eng. Altaf Al Farhan.

Lab Manual. ISC 350 (Networks and Telecommunication) Information Technology Solutions. Prepared by: Eng. Altaf Al Farhan. Kuwait University Information Technology Solutions College of Computing Sciences and Engineering Department of Information Science Lab Manual ISC 350 (Networks and Telecommunication) Prepared by: Eng.

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

Cable Commands: t. timeout idle-session, page 2 timeout init-session, page 3 timeout off-session, page 4 type, page 5

Cable Commands: t. timeout idle-session, page 2 timeout init-session, page 3 timeout off-session, page 4 type, page 5 timeout idle-session, page 2 timeout init-session, page 3 timeout off-session, page 4 type, page 5 1 timeout idle-session timeout idle-session To set the default video timeout idle-session, use the timeout

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

Lab Configuring OSPF Authentication

Lab Configuring OSPF Authentication Lab 2.3.4 Configuring OSPF Authentication Objective Setup an IP addressing scheme for Open Shortest Path First (OSPF) area. Configure and verify OSPF routing. Introduce OSPF authentication into the area.

More information

Lab Troubleshooting Routing Issues with debug Instructor Version 2500

Lab Troubleshooting Routing Issues with debug Instructor Version 2500 Lab 9.3.7 Troubleshooting Routing Issues with debug Instructor Version 2500 Objective Utilize a systematic OSI troubleshooting process to diagnose routing problems. Use various show commands to gather

More information

Education by Simulation Stand Alone Labs For CCNA

Education by Simulation Stand Alone Labs For CCNA Education by Simulation Stand Alone Labs For CCNA Copyright 1998-2004 Boson Software, Inc. All Rights Reserved. No part of this copyrighted document or related copyrighted software may be reproduced, transmitted,

More information

Lab Configuring ISDN BRI (U-Interface)

Lab Configuring ISDN BRI (U-Interface) Lab 4.2.1 Configuring ISDN BRI (U-Interface) Objective Configure an ISDN router to make a successful connection to a local ISDN switch. Background/Preparation This lab assumes that a router with an ISDN

More information