Cisco Packet Tracer配置OSPF双进程,双点双向重分发的详细命令配置
时间: 2023-03-31 11:01:14 浏览: 152
您好,以下是配置OSPF双进程,双点双向重分发的详细命令配置:
1. 配置两个进程号:
Router(config)#router ospf 1
Router(config-router)#router-id 1.1.1.1
Router(config)#router ospf 2
Router(config-router)#router-id 2.2.2.2
2. 配置两个区域:
Router(config-router)#network 10.1.1. ...255 area
Router(config-router)#network 10.2.2. ...255 area 1
3. 配置双向重分发:
Router(config)#router ospf 1
Router(config-router)#redistribute ospf 2 metric 10 subnets tag 1
Router(config)#router ospf 2
Router(config-router)#redistribute ospf 1 metric 10 subnets tag 2
4. 配置双点双向重分发:
Router(config)#router ospf 1
Router(config-router)#redistribute ospf 2 metric 10 subnets tag 1
Router(config-router)#redistribute connected metric 10 subnets tag 1
Router(config)#router ospf 2
Router(config-router)#redistribute ospf 1 metric 10 subnets tag 2
Router(config-router)#redistribute connected metric 10 subnets tag 2
希望以上回答能够帮到您。
阅读全文