思科路由的26个基本实验
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
cisconet 实验一修改cisco 路由器的名称及路由器密码命令操作
实验要求:
1. 路由器名:cisconet
2. 设置password为cisconet,secret为cisconet,vty为cisconet,
3. 并要求所有密码都加密。
实验过程:
cisconet> enable
cisconet# configure terminal
cisconet(config)#hostname cisconet 设置路由器名
cisconet(config)# enable password cisconet 设置password
cisconet(config)# enable secret cisconet 设置secret
cisconet(config)# line vty 0 4
cisconet(config-line)#login 要求密码验证
cisconet(config-line)#password cisconet 设置vty密码
cisconet(config-line)#exit 退出线路配置模式
cisconet(config)#service password-encryption 对密码加密
cisconet 实验二配置路由器端口ip地址/标识及保存当前的配置操作
实验要求:
1:在路由器的端口下配置ip地址 202.119.249.219
掩码 255.255.255.0
2:配置路由器提示信息 welcome to cisconet cisconet lab
3:配置路由器接口提示信息 this is a serial port
4:保存当前的配置
cisconet>enable
cisconet# configure terminal
cisconet(config)# interface fastethernet 0/0 cisconet(config-if)# ip address 202.119.249.219 255.255.255.0
对以太网口fa0/0配置IP
cisconetkeji(config-if)# no shutdown 开启端口
cisconet(config-if)exit
cisconet(config)#banner motd “
cisconet(config)#welcome to cisconet cisconet lab”提示信息
以上几部是设置登陆提示信息
cisconet(config)# interface serial 0
cisconet(config-if)# description this is a serial port 端口描述信息
cisconet(config-if)#end
cisconet#copy running-config startup-config 对配置进行保存
cisconet 实验三CDP命令操作
实验要求:
1. 路由器名:cisconet1、 cisconet2、 cisconet3.
2. 设置password为cisconet,secret为cisconet,vty为cisconet,,并要求所有密码都加密.
3. 配置各路由器.
实验过程:
配置路由器1
router(config)#hostname cisconet1 设置路由器名
cisconet1(config)enable password cisconet 设置password
cisconet1(config)enable secret cisconet 设置secret
cisconet1(config)line vty 0 4
cisconet1(config-line)#login 要求密码验证
cisconet1(config-line)#password cisconet 设置vty密码
cisconet1(config-line)end
cisconet1(config)#service password-encryption 对密码加密
cisconet1(config)#interface serial 0
cisconet1(config-if)#ip address 202.119.249.1 255.255.255.0 设置s0的IP地址和子网掩码
cisconet1(config-if)#clock rate 56000 设置时钟频率
cisconet1(config-if)#no shutdown 开启端口
路由器2和路由器3的配置和路由器1类似,只是各接口的IP地址设置不同,同时要
在路由器3的serial 1接口上配置时钟频率,而路由器2的两个接口上不需配置时钟.
在路由器2上操作:
cisconet2#show cdp 显示CDP信息
cisconet2#show cdp neighbors 显示相连的CDP邻居汇总信息cisconet2#show cdp neighbor detail 显示相连的CDP邻居详细信息cisconet2#show cdp traffic 显示CDP所用的数据包的信息
cisconet2#show cdp entry * 显示所有相邻路由器的所有信息cisconet2#show cdp entry cisconet1(路由器名) 显示特定邻居(cisconet1)的详细信息
cisconet 实验四环回接口的使用和创建
实验要求:
1.路由器名为cisconet,通过路由器的CONSOLE口直接用反线与PC上的COM口相连;
2.在路由器上将密码设置为cisconet后,保存配置;
3.重新启动路由器将密码破解.
实验过程:
在cisconet上的配置:
router(config)#hostname cisconet 将路由器名设置为cisconet
cisconet(config)#enable secret cisconet 设置路由器的特权密码cisconet(config)exit
cisconet#copy running-config startup-config 保存配置
cisconet#reload 重新启动路由器