路由的OSPF协议

路由的 OSPF 协议
实验目的:了解路由的 OSPF 协议
实验环境:用两台路由器模拟出两个局域网分别是 192.168.1.0 192.168.3.0
使用 OSPF 的协议使的两个局域网可以通信
实验的拓扑图如下
实验步骤:
1: 进入第一台路由配置如下
Router>en
Router # config t
Router (config) # host r1
r1 (config) #int fa1/0
r1 (config-if)# ip add 192.168.1.1 255.255.255.0
r1 (config-if) # no shut
r1 (config) # int s0/0
r1 (config-if) # ip add 192.168.2.1 255.255.255.0
 r1 (config-if) #clock rate 64000
r1 (config-if) # no shut
r1 (config-if) #exit
r1 (config) #router ospf 100    启动 ospf 协议
r1 (config-router) #net 192.168.1.0 255.255.255.0 area 1  宣告网络
r1 (config-router) #net 192.168.2.0  255.255.255.0  area 1
r1(config-router)#^Z
r1 (config) # exit      
r1 # copy run start
2: 进入第二台路由配置如下
Router>en
Router # config t
Router (config) # host r2
r2 (config) #int fa1/0
r2 (config-if)# ip add 192.168.3.1 255.255.255.0
r2 (config-if) # no shut
r2 (config) # int s0/0
r2 (config-if) # ip add 192.168.2.2 255.255.255.0
r2 (config-if) # no shut
r2 (config-if) #exit
r2 (config) #router ospf 100    启动 ospf 协议
r2 (config-router) #net 192.168.2.0 255.255.255.0 area 1  宣告网络
r2 (config-router) #net 192.168.3.0  255.255.255.0  area 1
r2(config-router)#^Z
r2(config) # exit       
r2 # copy run start
3 :经过测试 pc1 pc2 成功通信
Pc 机的 ip 设置如下
Pc1 192.168.1.2 255.255.255.0 192.168.1.1
Pc2 192.168.3.2 255.255.255.0 192.168.3.1
 

你可能感兴趣的:(职场,路由,休闲,ospf)