簡單搭建OSPF,RIP,NSSA,外部路由匯總網絡拓撲
阿新 • • 發佈:2019-05-13
sub 6.0 ace 16.4 路由器 form str oop ted 今天簡單來搭建一個網絡拓撲,簡單做一個小小的實驗
- 推薦步驟:
- 根據拓撲圖設備配置IP地址
- 配置OSPF將不同的網絡發布到不同的OSPF區域
3.R2訪問R1的Lo0配置靜態路由,在R2配置路由重分發
4.R5訪問R7的Lo0配置默認路由重新發布默認路由
5.R4和R6上配置RIP
6.在R4上配置重新發布RIP和OSPF
7.R4配置外部路由匯總
8.將Area2區域配置為NSSA區域看其他OSPF區域路由表的變化
9.全網互通
- 實驗步驟:
- 根據拓撲圖設備配置IP地址
1)在R1配置0/0接口和loop back 0接口IP地址
R1(config)#interface fastEthernet 0/0
R1(config-if)#ip address 172.16.1.1 255.255.255.0
R1(config-if)#exit
R1(config)#interface loopback 0
R1(config-if)#ip address 192.168.10.1 255.255.255.0
R1(config-if)#exit
2)Show ip inter b查看R1兩個IP是否配置成功
3)R2進入0/0和1/0接口配置IP地址
R2(config)#interface fastEthernet 0/0
R2(config-if)#ip address 172.16.1.2 255.255.255.0
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config-if)#ip address 172.16.2.1 255.255.255.0
R2(config-if)#no shutdown
R2(config-if)#exit
4)Show ip inter b查看R2的兩個IP是否配置成功
5)R3進入1/0和0/0接口配置IP地址
R3(config)#interface fastEthernet 1/0
R3(config-if)#ip address 172.16.2.2 255.255.255.0
R3(config-if)#no shutdown
R3(config)#interface fastEthernet 0/0
R3(config-if)#ip address 172.16.3.1 255.255.255.0
R3(config-if)#no shutdown
R3(config-if)#exit
6)Show ip inter b查看R3兩個IP是否配置成功
7)R4進入0/0 1/0 2/0配置IP地址
R4(config)#interface fastEthernet 0/0
R4(config-if)#ip address 172.16.3.2 255.255.255.0
R4(config-if)#no shutdown
R4(config-if)#exit
R4(config)#interface fastEthernet 1/0
R4(config-if)#ip address 172.16.7.1 255.255.255.0
R4(config-if)#no shutdown
R4(config-if)#exit
R4(config)#interface fastEthernet 2/0
R4(config-if)#ip address 172.16.4.1 255.255.255.0
R4(config-if)#no shutdown
8)Show ip inter b查看R4兩個IP是否配置成功
9)R5進入0/0和1/0接口配置R5兩個IP地址
R5(config)#interface fastEthernet 0/0
R5(config-if)#ip address 172.16.4.2 255.255.255.0
R5(config-if)#no shutdown
R5(config-if)#exit
R5(config)#interface fastEthernet 1/0
R5(config-if)#ip address 172.16.5.1 255.255.255.0
R5(config-if)#no shutdown
10)Show ip inter b查看R5兩個IP是否配置成功
11)R6進入0/0和loopback0 1 2 3接口配置IP地址
R6(config)#interface fastEthernet 0/0
R6(config-if)#ip address 172.16.7.2 255.255.255.0
R6(config-if)#no shutdown
R6(config-if)#exit
R6(config)#interface loopback 0
R6(config-if)#ip address 172.16.8.1 255.255.255.0
R6(config-if)#exit
R6(config)#interface loopback 1
R6(config-if)#ip address 172.16.9.1 255.255.255.0
R6(config-if)#exit
R6(config)#interface loopback 2
R6(config-if)#ip address 172.16.10.1 255.255.255.0
R6(config-if)#exit
R6(config)#interface loopback 3
R6(config-if)#ip address 172.16.11.1 255.255.255.0
R6(config-if)#exit
12)Show ip inter b查看IP是否配置成功
13)R7進入0/0接口和loop back0配置IP地址
R7(config)#interface fastEthernet 0/0
R7(config-if)#ip address 172.16.5.2 255.255.255.0
R7(config-if)#no shutdown
R7(config-if)#exit
R7(config)#interface loopback 0
R7(config-if)#ip address 172.16.6.1 255.255.255.0
R7(config-if)#exit
14)Show ip inter b查看IP是否配置成功 - 配置OSPF將不同的網絡發布到不同的OSPF區域
1)R2啟動OSPF進程宣告直連網絡
R2(config)#router ospf 1
R2(config-router)#network 172.16.2.0 0.0.0.255 area 1
R2(config-router)#exit
2)R3啟動OSPF進程宣告直連網絡
R3(config)#router ospf 1
R3(config-router)#network 172.16.2.0 0.0.0.255 area 1
R3(config-router)#network 172.16.3.0 0.0.0.255 area 0
R3(config-router)#exit
3)R4啟動OSPF進程宣告直連網絡
R4(config)#router ospf 1
R4(config-router)#network 172.16.3.0 0.0.0.255 area 0
R4(config-router)#network 172.16.4.0 0.0.0.255 area 2
R4(config-router)#exit
4)R5啟動OSPF進程宣告直連網絡
R5(config)#router ospf 1
R5(config-router)#network 172.16.4.0 0.0.0.255 area 2
R5(config-router)#exit
5)用ping其他網段,
3.R2訪問R1的Lo0配置靜態路由,在R2配置路由重分發
1)R2配置靜態路由下一跳地址為172.16.1.1
R1配置默認路由下一跳地址為172.16.1.2
R2(config)#ip route 192.168.10.0 255.255.255.0 172.16.1.1
R1(config)#ip route 0.0.0.0 0.0.0.0 172.16.1.2
R2(config)#exit
2)重新分發直連和靜態
R2(config)#router ospf 1
R2(config-router)#redistribute connected subnets
R2(config-router)#redistribute static subnets
R2(config-router)#exit
3)PingR1的loop back 0接口
4.R5訪問R7的Lo0配置默認路由重新發布默認路由
1)R5配置默認下一跳地址為172.16.5.2
R7配置默認下一跳地址為172.16.5.1
R5(config)#ip route 0.0.0.0 0.0.0.0 172.16.5.2
R7(config)#ip route 0.0.0.0 0.0.0.0 172.16.5.1
2)重新分發直連和默認路由
R5(config)#router ospf 1
R5(config-router)#redistribute connected subnets
R5(config-router)#default-information originate
R5(config-router)#exit
3)PingR3的loop back 0接口
5.R4和R6上配置RIP
1)R4啟動RIP進程,宣告直連
R4(config)#router rip
R4(config-router)#network 172.16.7.0
2)R6啟動RIP進程,宣告直連網絡
R6(config)#router rip
R6(config-router)#network 172.16.7.0
R6(config-router)#network 172.16.8.0
R6(config-router)#network 172.16.9.0
R6(config-router)#network 172.16.10.0
R6(config-router)#network 172.16.11.0
R6(config-router)#exit
6.在R4上配置重新發布RIP和OSPF
1)路由重分發RIP發布到ospf中
R4(config)#router ospf 1
R4(config-router)#redistribute rip subnets
R4(config-router)#exit
2)路由重分發OSPF發布到RIP中
R4(config)#router rip
R4(config-router)#redistribute ospf 1 metric 10
R4(config-router)#exit
3)ping
7.R4配置外部路由匯總
R4(config)#router ospf 1
R4(config-router)#summary-address 172.16.0.0 255.255.240.0
R4(config-router)#exit
8.將Area2區域配置為NSSA區域看其他OSPF區域路由表的變化
1)Area 2配置為NSSA區域
R4(config)#router ospf 1
R4(config-router)#area 2 nssa
R5(config)#router ospf 1
R5(config-router)#area 2 nssa
9.全網互通
1)在任何一個路由器上ping都是互通
- 根據拓撲圖設備配置IP地址
簡單搭建OSPF,RIP,NSSA,外部路由匯總網絡拓撲