怀念夏天 发表于 2024-11-1 06:19:24

OSPF动态路由设置实行

一、拓扑图

https://i-blog.csdnimg.cn/direct/118e1ce367e04f25b1a7a56105e75c12.png
二、需求

需求:
1、整个网络使用192.168.1.0/24,进行所在分配
2、Area O地区中,R1为DR,_R2为BDR
3、R3与R4之间使用密文认证,暗码为Admin@huawei.com
4、R1、R2、R5上各百设置一个环回接口。Ri1和R2的环回接口可以宣告到OSPF网络
5、设备的RID为每台设备的名称编号(AR1==1.1.1.1)
6、全网可达
三、实行需求分析与验证

1.网段分别

   要将网段192.168.1.0/24分别为六个子网,首先必要确定每个子网的子网掩码。
原始网络的子网掩码为 /24,表示网络部分占前24位。将其分别为8个子网,则必要增加3个比特位,从而新的子网掩码变为 /27。


[*]/27 表示子网掩码为255.255.255.224
[*]每个子网包罗 232−27=25=32232−27=25=32 个所在
[*]在每个子网中,第一个所在为网络所在,最后一个所在为广播所在
接下来计算每个子网的范围:

[*] 子网1:

[*]网络所在: 192.168.1.0
[*]广播所在: 192.168.1.31
[*]可用所在: 192.168.1.1 到 192.168.1.30

[*] 子网2:

[*]网络所在: 192.168.1.32
[*]广播所在: 192.168.1.63
[*]可用所在: 192.168.1.33 到 192.168.1.62

[*] 子网3:

[*]网络所在: 192.168.1.64
[*]广播所在: 192.168.1.95
[*]可用所在: 192.168.1.65 到 192.168.1.94

[*] 子网4:

[*]网络所在: 192.168.1.96
[*]广播所在: 192.168.1.127
[*]可用所在: 192.168.1.97 到 192.168.1.126

[*] 子网5:

[*]网络所在: 192.168.1.128
[*]广播所在: 192.168.1.159
[*]可用所在: 192.168.1.129 到 192.168.1.158

[*] 子网6:

[*]网络所在: 192.168.1.160
[*]广播所在: 192.168.1.191
[*]可用所在: 192.168.1.161 到 192.168.1.190

每个子网包罗32个所在,其中第一个所在为子网所在,最后一个所在为广播所在,其余的所在可以分配给设备使用。
|
2.给路由器设置IP 


AR1
ip address 192.168.1.1 27
ip address 192.168.1.32 27(环回)
Interface                         IP Address/Mask      Physical   Protocol
GigabitEthernet0/0/0            192.168.1.1/27       up         up      
GigabitEthernet0/0/1            unassigned         down       down      
GigabitEthernet0/0/2            unassigned         down       down      
LoopBack0                         192.168.1.33/27      up         up(s)   
NULL0                           unassigned         up         up(s)   



AR2
ip address 192.168.1.2 27
ip address 192.168.1.68 27(环回)
Interface                         IP Address/Mask      Physical   Protocol
GigabitEthernet0/0/0            192.168.1.2/27       up         up      
GigabitEthernet0/0/1            unassigned         down       down      
GigabitEthernet0/0/2            unassigned         down       down      
LoopBack0                         192.168.1.68/27      up         up(s)   
NULL0                           unassigned         up         up(s)   



AR3
ip address 192.168.1.3 27
ip address 192.168.1.97 27
Interface                         IP Address/Mask      Physical   Protocol
GigabitEthernet0/0/0            192.168.1.3/27       up         up      
GigabitEthernet0/0/1            192.168.1.97/27      up         up      
GigabitEthernet0/0/2            unassigned         down       down      
NULL0                           unassigned         up         up(s)   



AR4
ip address 192.168.1.98 27
ip address 192.168.1.129 27
Interface                         IP Address/Mask      Physical   Protocol
GigabitEthernet0/0/0            192.168.1.98/27      up         up      
GigabitEthernet0/0/1            192.168.1.129/27   up         up      
GigabitEthernet0/0/2            unassigned         down       down      
NULL0                           unassigned         up         up(s)   



AR5
ip address 192.168.1.30 27
ip address 192.168.1.161 27(环回)
Interface                         IP Address/Mask      Physical   Protocol
GigabitEthernet0/0/0            192.168.1.30/27      up         up      
GigabitEthernet0/0/1            unassigned         down       down      
GigabitEthernet0/0/2            unassigned         down       down      
LoopBack0                         192.168.1.161/27   up         up(s)   
NULL0                           unassigned         up         up(s)   




3.启动OSPF协议



[*] 地区分别
   Area 0
r1:
https://i-blog.csdnimg.cn/direct/181ea452557841efbd398a415e0bc6aa.png
r2:
https://i-blog.csdnimg.cn/direct/fe13e7c472364126ae5e55cac64f7b07.png
https://i-blog.csdnimg.cn/direct/cb78d9a3d3bf4ea8b38d0cfd85e0a31a.png
r3:
https://i-blog.csdnimg.cn/direct/04dcaafb1bbc403790382a8d6fe1f725.png
https://i-blog.csdnimg.cn/direct/6bbb8275f94141ab866a62b178b1cf07.png
Area 1
r4:
https://i-blog.csdnimg.cn/direct/b0b1d1d01de946c08683328d04f7b171.png
r5:
https://i-blog.csdnimg.cn/direct/ffaa9ddf570f42b2839350bc32ad8f13.png



[*] 检察邻人简表
https://i-blog.csdnimg.cn/direct/0a491d24fbf445a79df80963bc3ff31f.png https://i-blog.csdnimg.cn/direct/11a7c7800be447aaa2495da437f2f93b.png
https://i-blog.csdnimg.cn/direct/e106da06c78e4bbeab7711a45f0deb9c.png
https://i-blog.csdnimg.cn/direct/31864abef46e48bfa2768ed73f2b09c8.png
https://i-blog.csdnimg.cn/direct/4d9f0ae860604c89adccbc97f937112b.png
4. Area O地区中,R1为DR,_R2为BDR

int GigabitEthernet 0/0/0
ospf dr-priority 10
ospf dr-priority 6
https://i-blog.csdnimg.cn/direct/7a1e7d0d13f44df1bcedabab5b500ebe.png
5.  R3与R4之间使用密文认证,暗码为Admin@huawei.com

ospf authentication-mode md5 1 cipher Admin@huawei.com
ospf authentication-mode md5 1 cipher Admin@huawei.com

[*]
6.R1、R2、R5上各百设置一个环回接口。R1和R2的环回接口可以宣告到OSPF网络。若R5环回接口不能宣告信息,则给它设置缺省路由  

 https://i-blog.csdnimg.cn/direct/f06970e13140401cb5813d170a6d239f.png
四、全网可达

https://i-blog.csdnimg.cn/direct/48253405fd5c4d4c87ebb5edb669ef0b.png
https://i-blog.csdnimg.cn/direct/5dfc1cf555c6497b825fbde5e32b54a6.png

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: OSPF动态路由设置实行