路由技术实训报告(5)

2019-03-03 17:39

路由技术实训报告

ip address 172.20.20.254 255.255.255.0 clock rate 64000 !

interface Vlan1 no ip address shutdown !

router rip version 1

passive-interface FastEthernet0/0 passive-interface Serial0/0/0 network 10.0.0.0 network 172.20.0.0

default-information originate no auto-summary !

ip classless

ip route 0.0.0.0 0.0.0.0 Serial0/0/1 ! !

line con 0 line vty 0 4 password cisco login ! ! ! End

ISP#show run

Building configuration...

Current configuration : 820 bytes !

version 12.3

no service timestamps log datetime msec no service timestamps debug datetime msec no service password-encryption !

hostname ISP ! !

no ip domain-lookup ! !

interface FastEthernet0/0

ip address 172.16.1.1 255.255.255.0 duplex auto speed auto !

20

路由技术实训报告

interface FastEthernet0/1 no ip address duplex auto speed auto shutdown !

interface Serial0/0/0 no ip address shutdown !

interface Serial0/0/1

ip address 172.20.20.1 255.255.255.0 !

interface Vlan1 no ip address shutdown !

ip classless

ip route 10.45.0.0 255.255.254.0 Serial0/0/1 ip route 192.168.1.0 255.255.255.0 Serial0/0/1 ip route 0.0.0.0 0.0.0.0 Serial0/0/1 ip route 0.0.0.0 0.0.0.0 Serial0/0/0

ip route 10.45.2.0 255.255.255.0 10.45.1.1 ! ! !

line con 0 line vty 0 4 password cisco login ! ! ! end

五、实训结果分析

这个实训是我认为在为期两周的实训中最难的实训之一,因为涉及到排错,所以往往在所花费的时间上比重新配置它所花费的时间更长,所以我选择重新配置,根据RIPv1的配置方法完成个路由器的配置,可是在最后只完成了80%,在检查了多次之后依然无解。求解!!!!

21

路由技术实训报告

实训项目五:RIPv2故障排除

一、实训目的

给出了已经做好的实习文件,学会在其中找出错误,并将其改正。

二、实训任务

1. 清除路由器上的配置,并重启路由器 2. 完成各路由器的配置 3. 禁用DNS查找

4. 配置控制台连接的口令 5. 配置 VTY 连接口令

三、实训过程

1、地址规划表 设备 接口 Fa0/0 HQ Fa0/1 S0/0/0 S0/0/1 Fa0/0 BRANCH 1 Fa0/1 S0/0/0 Fa0/0 BRANCH 2 PC1 PC2 PC3 PC4 PC5 PC6

Fa0/1 S0/0/1 网卡 网卡 网卡 网卡 网卡 网卡 IP地址 192.168.1.1 192.168.1.129 子网掩码 255.255.255.128 255.255.255.192 默认网关 不适用 不适用 不适用 不适用 不适用 不适用 不适用 不适用 不适用 不适用 172.16.0.1 172.16.2.1 192.168.1.1 172.16.4.1 172.16.4.129 209.165.200.225 255.255.255.252 209.165.200.229 255.255.255.252 172.16.0.1 172.16.4.129 172.16.4.1 172.16.4.129 172.16.0.10 172.16.2.10 192.168.1.10 192.168.1.138 172.16.4.10 172.16.4.138 255.255.254.0 255.255.254.0 255.255.255.128 255.255.255.128 255.255.254.0 255.255.254.0 255.255.255.128 255.255.255.128 255.255.255.128 209.165.200.226 255.255.255.252 209.165.200.230 255.255.255.252 255.255.255.192 192.168.1.129 2、操作步骤及命令

1)清除路由器上的配置,并重启路由器:

(路由器名)# erase startup-config

(路由器名)# reload 2) 完成各路由器的配置 : 配置路由器主机名:(config)#hostname HQ

配置接口IP:

(config)# interface fastethernet0/0

(config-if)# ip add 192.168.1.1 255.255.255.128

22

路由技术实训报告

启用接口:(config-if)# no shutdown

(config)# interface fastethernet0/1

(config-if)# ip add 192.168.1.129 255.255.255.192

config-if)# no shutdown

(config)# interface serial0/0/0

(config-if)# ip add 209.165.200.225 255.255.255.252 (config-if)# clock rate 64000

启用接口:(config-if)# no shutdown

(config)# interface serial0/0/1

(config-if)# ip add 209.165.200.229 255.255.255.252 (config-if)# clock rate 64000

启用接口:(config-if)# no shutdown

配置RIP:(config)# router rip

(config-router)# version 2

(config-router)# passive-interface FastEthernet0/0

(config-router)# passive-interface FastEthernet0/1

(config-router)# network 192.168.1.0 (config-router)# network 209.165.200.0

(config-router)# default-information originate (config-router)# no auto-summary

配置路由器主机名:(config)#hostname BRANCH 1 配置接口IP:

(config)# interface fastethernet0/0

(config-if)# ip add 172.16.0.1 255.255.254.0

启用接口:(config-if)# no shutdown

(config)# interface fastethernet0/1

(config-if)# ip add 172.16.2.1 255.255.254.0

启用接口:(config-if)# no shutdown

(config)# interface serial0/0/0

(config-if)# ip add 209.165.200.226 255.255.255.252 (config-if)# clock rate 64000

启用接口:(config-if)# no shutdown 配置RIP:(config)# router rip

(config-router)# version 2

(config-router)# passive-interface FastEthernet0/0 (config-router)# passive-interface FastEthernet0/1

(config-router)# network 172.16.0.0 (config-router)# network 209.165.200.0

(config-router)# default-information originate (config-router)# no auto-summary

配置路由器主机名:(config)#hostname BRANCH 2

23

路由技术实训报告

配置接口IP:

(config)# interface fastethernet0/0

(config-if)# ip add 172.16.4.1 255.255.255.128

启用接口:(config-if)# no shutdown

(config)# interface fastethernet0/1

(config-if)# ip add 172.16.4.129 255.255.255.128

启用接口:(config-if)# no shutdown

(config)# interface serial0/0/1

(config-if)# ip add 209.165.200.230 255.255.255.252 (config-if)# clock rate 64000

启用接口:(config-if)# no shutdown 配置RIP:(config)# router rip

(config-router)# version 2

(config-router)# passive-interface FastEthernet0/0 (config-router)# passive-interface FastEthernet0/1

(config-router)# network 172.16.0.0 (config-router)# network 209.165.200.0

(config-router)# default-information originate (config-router)# no auto-summary

3)禁用DNS查找:(config)# no ip domain-lookup 4)配置控制台连接的口令:(config)#line console 0

(config-line)#password cisco (config-line)#login

5) 配置 VTY 连接口令:(config)# line vty 0 2

(config-line)#password cisco (config-line)#login

四、实训结果

BRANCH1#show run

Building configuration...

Current configuration : 834 bytes !

version 12.3

no service timestamps log datetime msec no service timestamps debug datetime msec no service password-encryption !

hostname BRANCH1 ! !

interface FastEthernet0/0

ip address 172.16.0.1 255.255.254.0

24


路由技术实训报告(5).doc 将本文的Word文档下载到电脑 下载失败或者文档不完整,请联系客服人员解决!

下一篇:2014年1-6月浙江省及全国大气污染防治设备月度产量数据统计报告

相关阅读
本类排行
× 注册会员免费下载(下载后可以自由复制和排版)

马上注册会员

注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信: QQ: