计网实验五报告_Cisco IOS基本操作.doc_第1页
计网实验五报告_Cisco IOS基本操作.doc_第2页
计网实验五报告_Cisco IOS基本操作.doc_第3页
计网实验五报告_Cisco IOS基本操作.doc_第4页
计网实验五报告_Cisco IOS基本操作.doc_第5页
已阅读5页,还剩3页未读 继续免费阅读

下载本文档

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

文档简介

计算机网络课程设计实验报告_(模板)实验项目序号及名称:实验五、Cisco IOS 基本使用实验台号:实验时间:实验小组号:成员及本次实验分工:实验目的和任务:1.熟悉Cisco IOS系统及其 IOS设备 2.识别路由器和交换机之间连接所需的连接组件,并能正确连接3.在路由器(或者交换机)与一个终端之间建立控制台连接,登陆并认识和使用它们的基本命令 4.使用Help并编辑特性,保存路由器的配置 5.设置口令、主机名、描述、IP地址及时钟实验环境说明:两台Cisco 2610XM路由器,两台Cisco 2950交换机,两条控制线,八台计算机实验过程及步骤(可另附页、使用网络拓扑图等辅助说明):配置路由器的准备:用路由器自带的一条串行电缆将路由器的Console口与1台计算机串口相连按照以下步骤启动超级终端:“开始”“程序”“附件”“通讯”“超级终端”;启动以后为此次连接取一个名字(如cisco),然后进入下一步;在“连接时使用”一栏中选择COM1,按确定进入下一步;在出现的“COM1属性”对话框中单击“还原为默认值”,然后确定。进入特权模式和进入配置模式:RouterenableRouter#Router#config t Router(config)#interface fastethernet 0/0 Router(config-if)#exit Router(config-if)#interface serial 0/0/0Router(config-if)#exitRouter(config)#exitRouter#disableRouter使用Help并编辑特性RouterenableRouter#cl?Router#clock?Router#clock set ?Router#clock set 10:30:30 ?Router# clock set 10:30:30 17 April 2010Router#show clock(显示 10:30:59.159 UTC Sat Apr 17 2010)Router#show access-list 10 不要按回车 按ctrl+A:把光标移到首部 按ctrl+E:把光标移到尾部 按ctrl+A然后按ctrl+F:光标往前(向右)移动一个字母 按ctrl+B然后按ctrl+F:光标往后(向左)移动一个字母Router#show historyRouter#show terminalRouter#terminal no enditing保存路由器的配置RouterenableRouter#show start在按tabRouter#show startup-configRouter#copy running-config startup-config两次回车Router#show startup-configRouter#show running-configRouter#erase startRouter#show startup-configRouter#reload设置口令RouterenRouter#enableRouter#enable secret ciscoRouter#enable password ciscoRouter#endRouter#show running-configRouter#exitRouterenPassword:ciscoRouter#conf tRouter(config)#no enable secretRouter#exitRouterenPassword:ciscolRouter#conf tRouter(config)#line ?Router(config)#Consol:本地配置Router(config)#Aux:辅助端口Router(config)#Vty:虚拟串口Router(config)#line con 0Router(config)#loginRouter(config)#password cisco1Router(config)#line vty 0 4Router(config)#loginRouter(config)#password cisco1Route(config)r#line aux 0Router(config)#loginRouter(config)#password cisco1Router(config)#line aux 0Router(config)#endRouter回车Password: cisco1RouterenPassword:ciscolRouter#conf tRoute(config)r#line con 0Router(config)# exec-timeout 0 0Router(config)#logging synchronous设置主机名,描术IP地址及时钟频率RouterenRouter#conf tRouter(config)#hostname RouterARouterA(config)#bannerRouterA(config)#banner motd#RouterA(config)#this is a motd banner.#RouterA(config)#endRouterA#exitRouterAenRouterA#conf tRouterA(config)#line con 0RouterA(config-line)#loginRouterA(config-line)#password cisco1RouterA(config-line)#endRouterA#exit回车Password:cisco1RouterAenRouterA#conf tRouterA(config)#no banner motd(login)RouterA(config)#interface fasterthernet 0/0RouterA(config)#ip address 1.1.1.1 255.255.0.0RouterA(config)#no shutdownRouterA(config)#interface serial0/0RouterA(config-if)#ip adderss 1.1.1.2 255.255.0.0RouterA(config-if)#no shutRouterA(config-if)#description WAN linkRouterA(config-if)#bandwidth 64RouterA(config-if)#clock rate 64000RouterA(config-if)#endRouterA#show interface serial 0/0具体步骤如下:步骤一:将Console线的JR45端连接至路由器或交换机CONSOLE接口,将Console线的DB9针端口连接至主机的COM端口。 步骤二:打开超级终端创建一个连接并还原默认设置即可连接至路由器或交换机的CLI模式。步骤三:首次开机将询问是否进入系统配置对话框,输入no并回车即可得到命令提示符。步骤四:配置主机名,描述,接口IP地址及时钟频率并设置口令(1) 配置主机名 Routerenable 进入特权模式 Router#configure terminal 进入全局配置模式 Router(config)#hostname R1 修改路由器的主机名 R1(config)#主机名修改成功 R1(config)#end 通过end命令退回至特权模式,进行下一步操作(2) 配置接口IP地址及时钟频率,接口描述: R1#show ip interface brief 查看接口编号,确定线缆所连接口 R1#configure terminal 进入全局配置模式 R1(config)#interface Serial X/X/X 进入该编号的接口 R1(config-if)#ip address 192.168.100.1 255.255.255.0 配置IP地址,IP地址根据实际需求配置即可,如配置错误可通过在命令 前加no的方式删除 R1(config-if)#description connection to isp 配置接口描述 R1(config-if)#clock rate 19200 设置DEC端的时钟频率,是否为DEC端可通过串行线缆连接头处标识确定 R1(config-if)#no shutdown 开启接口,路由器接口默认处于关闭状态,必须使用该命令手动开启! R1(config-if)#end 输入end命令回退至特权模式 R1#shut ip interface brief 再次查看接口状态(3) 配置enable,console口令 R1#configue terminal 进入全局配置模式 R1(config)#enable secret cisco1 配置一个MD5的enable密码 R1(config)#line console 0 进入console 0 进入console接口 R1(config-line)#passsword cisco 给console接口配置一个登录密码 R1(config-line)#login 开启console接口的认证 R1(config-line)#end 回退至特权

温馨提示

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

评论

0/150

提交评论