拓扑设计:
设计ip:
192.168.1.0 /24
三个环回:
192.168.1.0 /26 192.168.1.64 /26 192.168.1.128 /26
一个骨干:
192.168.1.192/26 192.168.1.0/30
ospf基础配置:r1----r4
eg: [r2]ospf router-id 2.2.2.2
[r2-ospf-1]area 0
[r2-ospf-1-area-0.0.0.0]network 192.168.1.0 0.0.0.255
:将r1r2r3(g0/0/0)配置未区域0 将r3(g0/0/1)r4配置为区域
[r3]ospf router-id 4.4.4.4
[r3-ospf-1]area 1
[r3-ospf-1-area-0.0.0.1]network 192.168.1.0 0.0.0.3
干涉选举: r1-r3 r3为dr设备 无bdr设备
将r3 给0/0/0口优先级改为3
[r3]interface GigabitEthernet 0/0/0
[r3-GigabitEthernet0/0/0]ospf dr-priority 3 修改接口优先级
同理:将r1,r2改为0
r4环回未宣告 ,现除r4环回无法ping同,其余均可:(r1ping r2及r3均可)
保障更心安全:认证
[r1-GigabitEthernet0/0/0]ospf authentication-mode md5 1 cipher 123456
[r2-GigabitEthernet0/0/0]ospf authentication-mode md5 1 cipher 123456
[r3-GigabitEthernet0/0/0]ospf authentication-mode md5 1 cipher 123456
[r3-GigabitEthernet0/0/1]ospf authentication-mode md5 1 cipher 123456
[r4-GigabitEthernet0/0/0]ospf authentication-mode md5 1 cipher 123456
r4:缺省路由
[r4-ospf-1]default-route-advertise always
设置空接口,避免环路,
[r2]ip route-static 192.168.1.0 24 NULL 0
[r2]ip route-static 192.168.1.0 24 NULL 0
[r3]ip route-static 192.168.1.0 24 NULL 0
完成后ping4.4.4.1 (isp)
减少路由条路,区域汇总:
[r3-ospf-1-area-0.0.0.0]abr-summary 192.168.1.0 255.255.255.0
全网可达。