安徽工业经济职业技术学院 实验报告
课程名:《网络互连技术与项目实践》
题目:ofps 单区域配置实验
姓名:yzzs
班级:31715
学号:1703012**
1、实验目的
掌握OSPF单区域配置
2、实验设备
PC(三台)、路由器(三台)、交叉线(三条)
Dec串口线(两台)
三、实验内容及步骤
首先我们为PC配饰IP地址和子网掩码和默认网关分别为
PC1:10.10.10.1 255.255.255.0 10.10.10.254
PC2:20.20.20.1 255.255.255.0 20.20.20.254
PC3:50.50.50.1 255.255.255.0 50.50.50.254
为方便实验我们将路由器的名称设为R1、R2、R3
设置方法
Continue with configuration dialog? [yes/no]: no
Router>enable (进入特权视图)
Router#config terminal (进入全局视图)
Router(config)#hostname R1 (修改主机名)
R1(config)#
接下来配置路由器每个端口的IP地址
R1(config)#interface f0/0(进入端口视图)
R1(config-if)#ip address 10.10.10.254 255.255.255.0
R1(config-if)#no shutdown (使配置生效)
同理
R1(config)#interface f0/1
R1(config-if)#ip address 20.20.20.254 255.255.255.0
R1(config-if)#no shutdown (使配置生效)
R1(config)#interface s1/1
R1(config-if)#ip address 30.30.30.1 255.255.255.0
~ 1 / 3 ~
R1(config-if)#no shutdown (使配置生效)
R1(config-if)#clock rate 64000 ——配置时钟频率
R1(config-if)#no shutdown
同理其他两个路由器
R2
Continue with configuration dialog? [yes/no]: no
Router>enable (进入特权视图)
Router#config terminal (进入全局视图)
Router(config)#hostname R2 (修改主机名)
R2(config)#
R2(config)#interface s1/0(进入端口视图)
R2(config-if)#ip address 30.30.30.2 255.255.255.0
R2(config-if)#clock rate 64000 ——配置时钟频率
R2(config-if)#no shutdown
R2(config-if)#no shutdown (使配置生效)
R2(config)#interface s1/1
R2(config-if)#ip address 40.40.40.1 255.255.255.0
R2(config-if)#no shutdown (使配置生效)
R3
Continue with configuration dialog? [yes/no]: no
Router>enable (进入特权视图)
Router#config terminal (进入全局视图)
Router(config)#hostname R3(修改主机名)
R3(config)#
R3(config)#interface s1/0(进入端口视图)
R3(config-if)#ip address 40.40.40.2 255.255.255.0
R3(config-if)#no shutdown (使配置生效)
~ 2 / 3 ~
R3(config)#interface s1/1
R3(config-if)#ip address 50.50.50.254 255.255.255.0
R3(config-if)#no shutdown (使配置生效)
R1配置:
R1(config)#router ospf 1 ——配置OSPF协议
R1(config-router)#network 10.10.10.0 0.0.0.255 area 1
R1(config-router)#network 20.20.20.0 0.0.0.255 area 1 R1(config-router)#network 30.30.30.0 0.0.0.255 area 1
R2配置:
R2(config)#router ospf 1
R2(config-router)#network 30.30.30.0 0.0.0.255 area 1
R2(config-router)#network 40.40.40.0 0.0.0.255 area 1
R3配置:
R2(config)#router ospf 1
R2(config-router)#network 40.40.40.0 0.0.0.255 area 1
R2(config-router)#network 50.50.50.0 0.0.0.255 area 1
4、实验总结
通过配置ospf协议,实现网络互连互通,减低了区域内每个路由器的压力