Packet Tracer - 单区域OSPFv2的配置思路
1、思路前夕查看
做这个的时候大家了解一下通配符,不然不理解这个东西为什么子网掩码为什么会取反 这里给大家简单演示一下
**2、**使用进程 ID 10 在所有路由器上激活 OSPF。
在 Headquarters 网络中的路由器上使用 network 语句和反向掩码激活 OSPF。
在所有路由器上使用OSPF进程10。
P2P-1 P2P-1(config)#router ospf 10 P2P-1(config-router)#network 10.0.0.0 0.0.0.3 area 0 P2P-1(config-router)#network 10.0.0.8 0.0.0.3 area 0 P2P-1(config-router)#network 10.0.0.12 0.0.0.3 area 0 P2P-2 P2P-2(config)#router ospf 10 P2P-2(config-router)#network 10.0.0.0 0.0.0.3 area 0 P2P-2(config-router)#network 10.0.0.4 0.0.0.3 area 0 P2P-2(config-router)#network 192.168.1.0 0.0.0.255 area 0 P2P-2(config-router)#network 192.168.2.0 0.0.0.255 area 0 P2P-3 P2P-3(config)#router ospf 10 P2P-3(config-router)#network 10.0.0.4 0.0.0.3 area 0 P2P-3(config-router)#network 10.0.0.8 0.0.0.3 area 0 P2P-3(config-router)#network 192.168.3.0 0.0.0.15 area 0
**3、**在总部网络中的路由器上,使用 network命令和通配符掩码激活OSPF,根据需要,在数据服务网络中的路由器上, 通过接口配置激活OSPF。
BC-1 BC-1(config)#interface GigabitEthernet0/0/0 BC-1(config-if)#ip ospf 10 area 0 BC-1(config-if)#interface Serial0/1/0 BC-1(config-if)#ip ospf 10 area 0 BC-2 BC-2(config)#interface GigabitEthernet0/0/0 BC-2(config-if)#ip ospf 10 area 0 BC-2(config-if)#interface GigabitEthernet0/0/1 BC-2(config-if)#ip ospf 10 area 0 BC-3 BC-3(config)#interface GigabitEthernet0/0/0 BC-3(config-if)#ip ospf 10 area 0 BC-3(config-if)#interface GigabitEthernet0/0/1 BC-3(config-if)#ip ospf 10 area 0
**4、**在多接入网络的路由器上配置路由器ID, 如下所示:
o BC-1: 6.6.6.6
o BC-2: 5.5.5.5
o BC-3: 4.4.4.4
BC-1 BC-1(config)#router ospf 10 BC-1(config-router)#router-id 6.6.6.6 BC-2 BC-2(config)#router ospf 10 BC-2(config-router)#router-id 5.5.5.5 BC-3 BC-3(config)#router ospf 10 BC-3(config-router)#router-id 4.4.4.4
5、 在OSPF中实施适当配置,使路由更新不会发送到 不需要的网络中。
P2P-2 P2P-2(config)#router ospf 10 P2P-2(config-router)#passive-interface GigabitEthernet0/0/0 P2P-2(config-router)#passive-interface GigabitEthernet0/0/1 P2P-3 P2P-3(config)#router ospf 10 P2P-3(config-router)#passive-interface GigabitEthernet0/0/0 BC-1 BC-1(config)#router ospf 10 BC-1(config-router)#passive-interface Serial0/1/1 BC-2 BC-2(config)#router ospf 10 BC-2(config-router)#passive-interface GigabitEthernet0/0/0 BC-3 BC-3(config)#router ospf 10 BC-3(config-router)#passive-interface GigabitEthernet0/0/0
**6、**在路由器BC-1上配置最高的OSPF接口优先级, 让它总是成为这个多接入网络中的指定路由器。
BC-1 BC-1(config)#interface GigabitEthernet0/0/0 BC-1(config-if)#ip ospf priority 255
7、 使用出接口命令参数配置 去往ISP云的默认路由。
BC-1 BC-1(config)#ip route 0.0.0.0 0.0.0.0 Serial0/1/1
**8、**把默认路由自动分布到网络中的所有 路由器上。
BC-1 BC-1(config)#router ospf 10 BC-1(config-router)#default-information originate
**9、**配置OSPF路由器,使其千兆以太网接口的开销值为10, 快速以太网接口的开销为100。
P2P-1 P2P-1(config)#router ospf 10 P2P-1(config-router)#auto-cost reference-bandwidth 1000 P2P-2 P2P-2(config)#router ospf 10 P2P-2(config-router)#auto-cost reference-bandwidth 1000 P2P-3 P2P-3(config)#router ospf 10 P2P-3(config-router)#auto-cost reference-bandwidth 1000 BC-1 BC-1(config)#router ospf 10 BC-1(config-router)#auto-cost reference-bandwidth 1000 BC-2 BC-2(config)#router ospf 10 BC-2(config-router)#auto-cost reference-bandwidth 1000 BC-3 BC-3(config)#router ospf 10 BC-3(config-router)#auto-cost reference-bandwidth 1000originate
**10、**配置P2P-1上接口S0/1/1的OSPF开销值为 50。
P2P-1 P2P-1(config)#interface Serial0/1/1 P2P-1(config-if)#ip ospf cost 50
**11、**配置连接P2P-1和BC-1的接口, 将Hello计时器和Dead计时器的值设置为默认值的两倍。
P2P-1 P2P-1(config)#interface Serial0/1/1 P2P-1(config-if)#ip ospf cost 50 P2P-1(config)#interface Serial0/2/0 P2P-1(config-if)#ip ospf hello-interval 20 P2P-1(config-if)#ip ospf dead-interval 80 BC-1 BC-1(config)#interface Serial0/1/0 BC-1(config-if)#ip ospf hello-interval 20 BC-1(config-if)#ip ospf dead-interval 80
12、最终截图
13、视频教学如下
Packet Tracer - 单区域OSPFv2的配置视频
14、速度完成脚本如下(建议先独立做出来)
P2P-1
interface Serial0/1/1
ip ospf cost 50
interface Serial0/2/0
ip ospf hello-interval 20
ip ospf dead-interval 80
router ospf 10
auto-cost reference-bandwidth 1000
network 10.0.0.0 0.0.0.3 area 0
network 10.0.0.8 0.0.0.3 area 0
network 10.0.0.12 0.0.0.3 area 0
P2P-2
router ospf 10
log-adjacency-changes
passive-interface GigabitEthernet0/0/0
passive-interface GigabitEthernet0/0/1
auto-cost reference-bandwidth 1000
network 10.0.0.0 0.0.0.3 area 0
network 10.0.0.4 0.0.0.3 area 0
network 192.168.1.0 0.0.0.255 area 0
network 192.168.2.0 0.0.0.255 area 0
P2P-3
router ospf 10
log-adjacency-changes
passive-interface GigabitEthernet0/0/0
auto-cost reference-bandwidth 1000
network 10.0.0.4 0.0.0.3 area 0
network 10.0.0.8 0.0.0.3 area 0
network 192.168.3.0 0.0.0.15 area 0
BC-1
interface GigabitEthernet0/0/0
ip ospf priority 255
ip ospf 10 area 0
interface Serial0/1/0
ip ospf hello-interval 20
ip ospf dead-interval 80
ip ospf 10 area 0
router ospf 10
router-id 6.6.6.6
passive-interface Serial0/1/1
auto-cost reference-bandwidth 1000
default-information originate
ip route 0.0.0.0 0.0.0.0 Serial0/1/1
BC-2
interface GigabitEthernet0/0/0
ip ospf 10 area 0
interface GigabitEthernet0/0/1
ip ospf 10 area 0
router ospf 10
router-id 5.5.5.5
passive-interface GigabitEthernet0/0/0
auto-cost reference-bandwidth 1000
BC-3
interface GigabitEthernet0/0/0
ip ospf 10 area 0
interface GigabitEthernet0/0/1
ip ospf 10 area 0
router ospf 10
router-id 4.4.4.4
passive-interface GigabitEthernet0/0/0
auto-cost reference-bandwidth 1000