OSPF基础实验

实验要求

1.R1-3为区域0,R3到R4为区域1;其中R3的环回也在区域0
2.R1-R3,R3为DR设备,没有BDR
3.R4的环回地址已固定,其他所有网段使用192.168.1.0/24进行合理分配
4.R4环回不能宣告,全网可达,保障更新安全,避免环路,减少路由条目数量

实验拓扑

在这里插入图片描述

实验内容

地址划分结果如下
在这里插入图片描述
给每台路由器配置地址
R1

[Huawei]sys r1
[r1]int lo0 
[r1-LoopBack0]ip add 192.168.1.129 27
[r1-LoopBack0]int g0/0/0
[r1-GigabitEthernet0/0/0]ip add 192.168.1.1 29

R2

[Huawei]sys r2
[r2]int lo0
[r2-LoopBack0]ip  add 192.168.1.161 27
[r2-LoopBack0]int g0/0/0
[r2-GigabitEthernet0/0/0]ip add 192.168.1.2 29

R3

[r3]int lo0
[r3-LoopBack0]ip add 192.168.1.193 27
[r3-LoopBack0]int g0/0/0
[r3-GigabitEthernet0/0/0]ip add 192.168.1.3 29
Jul 21 2022 22:16:42-08:00 r3 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP 
on the interface GigabitEthernet0/0/0 has entered the UP state. 
[r3-GigabitEthernet0/0/0]int g0/0/1
[r3-GigabitEthernet0/0/1]ip add 192.168.1.97 25

R4

[Huawei]sys r4
[r4]int lo0
[r4-LoopBack0]ip add 4.4.4.4 24
[r4-LoopBack0]int g0/0/0
[r4-GigabitEthernet0/0/0]ip add 192.168.1.98 25

接着建议 ping一下 直连通不通

接着就可以起OSPF动态路由协议
R1上

[r1]ospf 1 rou	
[r1]ospf 1 router-id 1.1.1.1
[r1-ospf-1]ar	
[r1-ospf-1]area 0
[r1-ospf-1-area-0.0.0.0]net	
[r1-ospf-1-area-0.0.0.0]network  192.168.1.0 0.0.0.255

R2

[r2]ospf 1 router-id 2.2.2.2
Info: The configuration succeeded. You need to restart the OSPF process to valid
ate the new router ID.
[r2-ospf-1]ar	
[r2-ospf-1]area 0
[r2-ospf-1-area-0.0.0.0]net	
[r2-ospf-1-area-0.0.0.0]network 192.168.1.0 0.0.0.255

R3

[r3]ospf 1 router-id 3.3.3.3
[r3-ospf-1]ar	
[r3-ospf-1]area 0
[r3-ospf-1-area-0.0.0.0]net	
[r3-ospf-1-area-0.0.0.0]network  192.168.1.193 0.0.0.0
[r3-ospf-1-area-0.0.0.0]net	
[r3-ospf-1-area-0.0.0.0]network  192.168.1.3 0.0.0.0
[r3-ospf-1]area 1
[r3-ospf-1-area-0.0.0.1]net	
[r3-ospf-1-area-0.0.0.1]network  192.168.1.97 0.0.0.0

R4

[r4]ospf 1 router-id 4.4.4.4
[r4-ospf-1]ar	
[r4-ospf-1]area 1
[r4-ospf-1-area-0.0.0.1]net	
[r4-ospf-1-area-0.0.0.1]network 192.168.1.0 0.0.0.255

然后在R3上看一下邻居之间的关系

[r3]display ospf peer brief

	 OSPF Process 1 with Router ID 3.3.3.3
		  Peer Statistic Information
 ----------------------------------------------------------------------------
 Area Id          Interface                        Neighbor id      State    
 0.0.0.0          GigabitEthernet0/0/0             1.1.1.1          Full        
 0.0.0.0          GigabitEthernet0/0/0             192.168.1.161    Full        
 0.0.0.1          GigabitEthernet0/0/1             4.4.4.4          Full        
 ----------------------------------------------------------------------------

发现都已经建立了邻接关系。
接着看一下在区域0里面的DR和BDR

[r3]display ospf peer

	 OSPF Process 1 with Router ID 3.3.3.3
		 Neighbors 

 Area 0.0.0.0 interface 192.168.1.3(GigabitEthernet0/0/0)'s neighbors
 Router ID: 1.1.1.1          Address: 192.168.1.1     
   State: Full  Mode:Nbr is  Slave  Priority: 1
   DR: 192.168.1.1  BDR: 192.168.1.2  MTU: 0    
   Dead timer due in 34  sec 
   Retrans timer interval: 0 
   Neighbor is up for 00:02:05     
   Authentication Sequence: [ 0 ] 

要使R3为DR,并且没有BDR。
则在R1-2上的配置
R1

[r1]int g0/0/0
[r1-GigabitEthernet0/0/0]ospf dr	
[r1-GigabitEthernet0/0/0]ospf dr-priority 0

R2与R1一样
再在R3上查看

[r3]display ospf peer

	 OSPF Process 1 with Router ID 3.3.3.3
		 Neighbors 

 Area 0.0.0.0 interface 192.168.1.3(GigabitEthernet0/0/0)'s neighbors
 Router ID: 1.1.1.1          Address: 192.168.1.1     
   State: Full  Mode:Nbr is  Slave  Priority: 0
   DR: 192.168.1.3  BDR: None   MTU: 0    
   Dead timer due in 35  sec 
   Retrans timer interval: 4 
   Neighbor is up for 00:00:51     
   Authentication Sequence: [ 0 ] 


可以发现R3为DR,并且没有BDR

实验完成。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值