湖北国土资源职业学院
实 训课
程
实 训主训学生
班
实习报告
2011-2012学年第2学期
名 称 路由技术实训
□技能训练 □课程设计 □课程实习
性
质
■综合实习 □生产实习 □毕业实习
时 间 第18-19周 教师 徐霞 姓
名 甘刚 级
网络1101
路由技术实训报告
实训项目一:静态路由
一、实训目的
1.通过本次的实训学会对地址空间划分子网
2.为接口分配适当的地址,并在路由器上进行配置 3.配置并启用接口 4.学会配置静态路由
二、实训任务
1. 配置路由器主机名
2. 配置接口IP及静态路由 3. 禁用 DNS 查找 4. 配置当天消息标语 5. 配置控制台连接的口令 6. 配置 VTY 连接的口令
三、实训过程
1、地址规划表 设备 R1 R2 PC1 PC2 接口 F0 S0/0/0 F0 S0/0/0 网卡 网卡 IP地址 192.168.1.1 192.168.2.1 192.168.3.1 192.168.2.2 192.168.1.10 192.168.3.10 子网掩码 255.255.255.0 255.255.255.0 255.255.255.0 255.255.255.0 255.255.255.0 255.255.255.0 默认网关 不适用 不适用 不适用 不适用 192.168.1.1 192.1683.1 2、操作步骤及命令
1) 配置路由器主机名:(config)#hostname R1 2)配置接口IP:
(config)# interface fastethernet0/0
(config-if)# ip add 192.168.1.1 255.255.255.0
启用接口:(config-if)# no shutdown
(config)# interface serial0/0/0
(config-if)# ip add 192.168.2.1 255.255.255.0 (config-if)# clock rate 64000
启用接口:(config-if)# no shutdown 3) 配置静态路由:
(config)# ip route 0.0.0.0 0.0.0.0 serial0/0/0 4) 禁用DNS查找: (config)# no ip domain-lookup
5) 配置当天消息标语: (config)#banner motd ^Cni shi wo de yan ^ 6) 配置控制台及VTY口令:(config)#line console 0
(config-line)#password cisco
1
路由技术实训报告
(config-line)#login
5) 配置 VTY 连接口令:(config)# line vty 0 2
(config-line)#password cisco (config-line)#login
四、实训结果
R1#show run
Building configuration...
Current configuration : 746 bytes !
version 12.3
no service timestamps log datetime msec no service timestamps debug datetime msec no service password-encryption !
hostname R1 ! !
enable secret 5 $1$mERr$9cTjUIEqNGurQiFU.ZeCi1 ! !
interface FastEthernet0/0
ip address 192.168.1.1 255.255.255.0 duplex auto speed auto !
interface FastEthernet0/1 no ip address duplex auto speed auto shutdown !
interface Serial0/0/0
ip address 192.168.2.1 255.255.255.0 clock rate 64000 !
interface Serial0/0/1 no ip address shutdown !
interface Vlan1 no ip address shutdown !
ip classless
2
路由技术实训报告
ip route 0.0.0.0 0.0.0.0 Serial0/0/0 !
banner motd ^Cni shi wo de yan ^C !
line con 0
password cisco login
line vty 0 4 password cisco login ! ! ! End
五、实训结果分析
通过本次的实训让我学会了如何禁用DNS查找,以及配置控制口令和VTY口令,还有如何配置当天消息标语,总的说来本实训的内容比较少,比较简单,同时也是对以前学习的知识的一个检验和复习吧。在本实训中主要存在的问题是对一些口令不是很熟,所以每次都要对着书打,但经过几次的重复练习后那些口令
基本都记住了。
3
路由技术实训报告
实训项目二:RIPv1配置
一、实训目的
通过本次的实训,学会在路由器上配置RIP路由,明白RIP路由与静态路由的不同之处。
二、实训任务
1. 配置路由器主机名
2. 配置接口IP及RIP路由协议 3. 禁用 DNS 查找 4. 配置当天消息标语 5. 配置控制台连接的口令 6. 配置 VTY 连接的口令
三、实训过程
1、地址规划表 设备 R1 接口 Fa0/0 S0/0/0 Fa0/0 R2 S0/0/0 S0/0/1 R3 PC1 PC2 PC3 Fa0/0 S0/0/1 网卡 网卡 网卡 IP地址 192.168.1.1 192.168.2.1 192.168.3.1 192.168.2.2 192.168.4.2 192.168.5.1 192.168.4.1 192.168.1.10 192.168.3.10 1921.168.5.10 子网掩码 255.255.255.0 255.255.255.0 255.255.255.0 255.255.255.0 255.255.255.0 255.255.255.0 255.255.255.0 255.255.255.0 255.255.255.0 255.255.255.0 默认网关 不适用 不适用 不适用 不适用 不适用 不适用 不适用 192.168.1.1 192.168.3.1 192.168.5.1
2、操作步骤及命令
1) 配置路由器主机名:(config)#hostname R1
配置接口IP:
(config)# interface fastethernet0/0
(config-if)# ip add 192.168.1.1 255.255.255.0
启用接口:(config-if)# no shutdown
(config)# interface serial0/0/0
(config-if)# ip add 192.168.2.1 255.255.255.0 (config-if)# clock rate 64000
启用接口:(config-if)# no shutdown 配置RIP:(config)# router rip
(config-router)# network 192.168.1.0 (config-router)# network 192.168.2.0
配置路由器主机名:(config)#hostname R2
4