cisco路由器的IOS常用命令的配置.doc_第1页
cisco路由器的IOS常用命令的配置.doc_第2页
cisco路由器的IOS常用命令的配置.doc_第3页
cisco路由器的IOS常用命令的配置.doc_第4页
cisco路由器的IOS常用命令的配置.doc_第5页
已阅读5页,还剩4页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

实验一: cisco路由器的IOS常用命令的配置适合环境: cisco路由器的IOS常用命令的配置目 标:通过完成该实验将能够理解和掌握路由器主要的命令模式;通过命令行模式配置路由器的密码;主机名,接口IP地址,接口描述信息,Banner,路由器配置信息存盘,以及各项配置信息的查看通过命令行进行路由器各类信息的查看(版本、配置内容,硬件信息等)学会使用帮助键,快捷键,提示键完成以上内容的操作预备知识:CISCO PACKET TRACER5.0使用;cisco路由器的基本知识 实验设备:为了完成该实验,需要以下设施实验机房;CISCO PACKET TRACER5. 实验目的:掌握cisco设备的基本配置命令和方法任务开始:任务具体步骤1路由器的几个操作模式Router /用户模式Routerenable /用户模式敲入enable进入特权模式Router#configure terminal /特权模式敲入configure termina进入配置模式Router(config)#interface ethernet 0 /进入接口配置模式敲入interface+接口类型+接口编号,进入接口配置模式(如:interface serial 0 或是interface serial 0/1 ,interface fast1/1,接口编号是多少具体要看是哪个型号的设备)Router(config-if)#exit /从接口模式退出到配置模式Router(config)#exit /从配置模式退出到enable模式Router# /enable模式,也是特权模式.注意:任何时候按Ctrl-z或是end都会退出到特权模式任务具体步骤2命名主机名路由默认主机名为Router把路由器的主机名命名为2n-R2600-ARouter(config)#hostname 2n-R2600-A2n-R2600-A (config)#2n-R2600-A(config)#hostname 2nplan/设置主机名是2nplan2nplan(config)#任务具体步骤给路由器设置时间,并查看时间信息2nplan#clock set 23:46:50 sep 4 2006 /设置时间2nplan#show clock /用show clock 命令查看时间23:46:57.527 UTC Mon Sep 4 20062nplan#任务具体步骤给路由器设置banner/登录信息2nplanr(config)#banner motd welcome Enter TEXT message. End with the character w.welcome to 2npan/登录信息Router(config)#Z%SYS-5-CONFIG_I: Configured from console by consoleWelcome to wisdom / 配置是banner之后无论谁登录到路由器都会先看到的信息.Banner信息很多情况下是一些警告的信息任务具体步骤路由器接口的描述2nplan(config)#interface ethernet 02nplan(config-if)#description ToFuzhou-R2600-A描述该路由器的ethernet口是接到福州的路由器A,一般都要尽可以的描述详细一点,这样有利于日后的维护任务具体步骤6路由器,交换机密码的设置Aenable密码的设置并查看(enable的密码就是从用户模式到特权模式的密码,enable的密码有两种,一种是加密的,一种是不加密码的,建议使用enable secret 设置密码)2nplan(config)#enable password cisco/明文密码2nplan(config)#enable secret cisco1/加密密码如果enable的两个密码同时设置,只是secret生效2nplan(config)#end2nplan#查看密码设置2nplan#show runBuilding configuration.Current configuration:!enable secret 5 $1$LNtZ$XFAQft5YyTsrXFVAXNp0Y/加密过的enable password cisco /显示为明文, 容易被破解不过可以手工加密,用命令service password-encryption 进行加密2nplan(config)#service password-encryption2nplan#show runBuilding configuration.Current configuration:!enable secret 5 $1$LNtZ$XFAQft5YyTsrXFVAXNp0Y/加密过的enable password 7 104D000A0618手工加密过的任务具体步骤6路由器,交换机密码的设置B设置交换机路由器的console 口密码2nplan(config)#line console 02nplan(config-line)#login启用密码no login 是不启用密码2nplan(config-line)#password cisco 设置的密码为cisco2nplan(config-line)#end配置后要输入console口密码cisco 才可以进入用户模式注意:密码区分大小写任务具体步骤6路由器,交换机密码的设置C配置辅助端口(AUX)的用户密码1、router(config)#line aux 0 进入辅助端口配置模式2、router(config-line)#login 开启登陆密码保护3、router(config-line)#password cisco 设置密码为cisco,密码区分大小写注意:密码区分大小写任务具体步骤6路由器,交换机密码的设置设置路由器交换机的vty 密码(也是就是远程登陆telnet的密码)2nplan(config)#line vty 0 4/4的意思是到,个人可以同时登录2nplan(config-line)#login/启用密码,no login 是不启用密码2nplan(config-line)#password cisco/设置的密码为cisco注意:密码区分大小写测试网络的连通性:telnet+IP address任务具体步骤6路由器,交换机密码的设置:删除enable ,console ,vty 密码2nplan(config)#no enable password2nplan(config)#no enable secret2nplan(config)#line con2nplan(config)#line console 02nplan(config-line)#no password2nplan(config)#line vty 0 42nplan(config-line)#no password2nplan(config-line)#任务具体步骤路由器接口IP的设置2nplan(config-if)# ip address 00 /设置接口ip地址00,子网掩码为2nplan(config-if)# no shutdown /启动接口默认情况下路由器接口是关闭的,需要命令no shutdown开启,开启后关闭可以用shutdown关闭2nplan (config-if)# shutdown 关闭接口测试网络的连通性:任务具体步骤8查看路由器ios信息2nplan#show version /查看软件版本信息Cisco Internetwork Operating System SoftwareIOS (tm) C2600 Software (C2600-I-M), Version 12.2(28), RELEASE SOFTWARE (fc5)Technical Support: /techsupportCopyright (c) 1986-2005 by cisco Systems, Inc.Compiled Wed 27-Apr-04 19:01 by miwangImage text-base: 0x8000808C, data-base: 0x80A1FECCROM: System Bootstrap, Version 12.1(3r)T2, RELEASE SOFTWARE (fc1)Copyright (c) 2000 by cisco Systems, Inc.ROM: C2600 Software (C2600-I-M), Version 12.2(28), RELEASE SOFTWARE (fc5)System returned to ROM by reloadSystem image file is flash:c2600-i-mz.122-28.bincisco 2620 (MPC860) processor (revision 0x200) with 60416K/5120K bytes of memory.Processor board ID JAD05190MTZ (4292891495)M860 processor: part number 0, mask 49Bridging software.X.25 software, Version FastEthernet/IEEE 802.3 interface(s)32K bytes of non-volatile configuration memory.16384K bytes of processor board System flash (Read/Write)Configuration register is 0x2102任务具体步骤9查看路由器接口信息2nplan#show interfaces /查看接口信息FastEthernet0/0 is administratively down, line protocol is down (disabled)默认情况下接口是关闭的 Hardware is Lance, address is 0009.7ca3.cb80 (bia 0009.7ca3.cb80) MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec, rely 255/255, load 1/255 Encapsulation ARPA, loopback not set ARP type: ARPA, ARP Timeout 04:00:00, Last input 00:00:08, output 00:00:05, output hang never Last clearing of show interface counters never Queueing strategy: fifo Output queue :0/40 (size/max) 5 minute input rate 0 bits/sec, 0 packets/sec 5 minute output rate 0 bits/sec, 0 packets/sec 0 packets input, 0 bytes, 0 no buffer Received 0 broadcasts, 0 runts, 0 giants, 0 throttles 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort 0 input packets with dribble condition detected 0 packets output, 0 bytes, 0 underruns 0 output errors, 0 collisions, 1 interface resets 0 babbles, 0 late collision, 0 deferred 0 lost carrier, 0 no carrier 0 output buffer failures, 0 output buffers swapped out2nplan#任务具体步骤10查看路由器配置信息2nplan#show running-config /查看路由器配置信息Building configuration.Current configuration : 258 bytes!version 12.2no service password-encryption!hostname 2nplan!ip ssh version 1!interface Fas

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论