OSPFv3與OSPF的配置


實驗拓撲圖

 

 

 

IPv4地址表

Device

Interface

IP Address

R1

F 0/0

10.1.34.1

S 1/0

192.168.34.1

R3

S 1/0

192.168.34.3

 

R4

S 1/0

192.168.34.4

R5

F 0/0

10.1.34.5

S 1/0

12.1.34.5

R6

F 0/0

10.1.34.6

F 0/1

11.1.34.6

R8

F 0/1

11.1.34.8

S 1/0

12.1.34.8

 

步驟1:開啟幀中繼交換功能

R2(config)#frame-relay switching

步驟2:配置接口封裝

R2(config)#int s 1/2 

R2(config-if)#no shutdown

R2(config-if)#clock rate 128000    

R2(config-if)#encapsulation frame-relay

 

R2(config)#int s 1/0

R2(config-if)#no shutdown

R2(config-if)#clock rate 128000  

R2(config-if)#encapsulation frame-relay

 

R2(config)#int s 1/1

R2(config-if)#no shutdown

R2(config-if)#clock rate 128000  

R2(config-if)#encapsulation frame-relay

(3) 步驟3:配置LMI類型

R2(config)#int s 1/2

R2(config-if)#frame-relay lmi-type cisco

R2(config-if)#frame-relay intf-type dce

 

R2(config)#int s 1/0

R2(config-if)#frame-relay lmi-type cisco

R2(config-if)#frame-relay intf-type dce

 

R2(config)#int s 1/1

R2(config-if)#frame-relay lmi-type cisco

R2(config-if)#frame-relay intf-type dce

(4) 步驟4:配置幀中繼交換表

R2(config)#int s 1/2

R2(config-if)#frame-relay route 103 interface s 1/0 01

 R2(config-if)#frame-relay route 104 interface s 1/1 401

 

R2(config)#int Serial 1/0

R2(config-if)#frame-relay route 301 interface Serial1/2 103

 

R2(config)#int Serial 1/1

R2(config-if)#frame-relay route 401 interface Serial1/2 104

此時“show frame-relay route”

檢查幀中繼交換機是否正常

 

 

 

 

 

 

5)步驟5:配置R1、R3、R4,使得它們能夠互相通信

 

R1(config)#int s 1/0 

R1(config-if)#ip address 192.168..34.1 255.255.255.0

R1(config-if)#no shutdown

R1(config-if)#encapsulation frame-relay

R1(config-if)#frame-relay lmi-type cisco

R1(config-if)#no frame-relay inverse-arp     //關閉自動映射

R1(config-if)#frame-relay map ip 192.168.34.3 103 broadcast

R1(config-if)#frame-relay map ip 192.168.34.4 104 broadcast

 

 

R3(config)#int s 1/0 

R3(config-if)#ip address 192.168.34.3 255.255.255.0

R3(config-if)#no shutdown

R3(config-if)#encapsulation frame-relay

R3(config-if)#no frame-relay inverse-arp

R3(config-if)#frame-relay map ip 192.168.34.1 301 broadcast

 

R4(config)#int s 1/0 

R4(config-if)#ip address 192.168

 

.34.4 255.255.255.0

R4(config-if)#no shutdown

R4(config-if)#encapsulation frame-relay

R4(config-if)#no frame-relay inverse-arp

R4(config-if)#frame-relay map ip 192.168.34.1 401 broadcast

 

進行ping命令測試

R1ping到R3與R4

 

 

 

 

R1#show frame-relay map

發現已有兩條本地連接

 

 

步驟6:開始配置ospf 

先配置外部路由器ospf (R6、R1為例,R5.R8同理)

R6(config)#router ospf 1

R6(config-router)#router-id 6.6.6.6

R6 (config-router)#area 1 nssa――配置區域 1 為 NSSA 區域

R6(config)#interface loopback 0

R6(config-if)#ip add 6.6.6.6 255.255.255.255

R6(config)#int f 0/0

R6(config-if)#ip add 10.1.34.6 255.255.255.0

R6(config-if)#no shut

R6(config-if)#ip ospf 1 area 0

R6(config-if)#int f 0/1

R6(config-if)#ip add 11.1.34.6 255.255.255.0

R6(config-if)#no shut

R6(config-if)#ip ospf 1 area 0

R6(config-if)#ex

R6(config)#router ospf 1

R6(config-router)#network 6.6.6.6 0.0.0.0 area 0

R6(config-router)#network 10.1.34.0 0.0.0.255 area 0

R6(config-router)#network 11.1.34.0 0.0.0.255 area 0

 

 

 

R1(config)#router ospf 1

R1(config-router)#router-id 1.1.1.1

 

 

R1(config)#interface loopback 0

R1(config-if)#ip add 1.1.1.1 255.255.255.255

R1(config)#int f 0/0

R1(config-if)#ip add 10.1.34.1 255.255.255.0

R1(config-if)#no shut

R1(config-if)#ip ospf 1 area 0

R1(config-if)#int s exiteee1/0

R1(config-if)#ip ospf 1 area 0

R1(config-if)#ex

R1(config)#router ospf 1

R1(config-router)#network 1.1.1.1 0.0.0.0 area 0

R1(config-router)#network 10.1.34.0 0.0.0.255 area 0

R1(config-router)#network 192.168.34.0 0.0.0.255 area 2

R1(config-router)#neighbor 192.168.34.3

R1(config-router)#neighbor 192.168.34.4

 

 

 

步驟7:配置幀中繼中路由器的ospf (R3為例,R4同理)

R3(config)#router ospf 1

R3(config-router)#router-id 3.3.3.3

R3(config-router)#ex

R3(config)#int loopback 0

R3(config-if)#ip add 3.3.3.3 255.255.255.255

R3(config-if)#ip ospf 1 area 2

R3(config-if)#int s 1/0

R3(config-if)# ip ospf 1 area 2

R3(config-if)# ip ospf priority 0

R3(config)#router ospf 1

R3(config-router)#network 3.3.3.3 0.0.0.0 area 2

R3(config-router)#network 192.168.34.0 0.0.0.255 area 2

 

已完成OSPFv2配置,在R1上查ospf鄰居關系

R1#show ip ospf neighbor

 

 

測試路由通斷情況

R5上測試得出結果如下(從內部到外部皆ping通,實驗完成)

 

 Ospfv3配置(與ospfv2拓撲相同)

 

IPv6地址表

Device

Interface

IPv6 Address

R1

F 0/0

2123::34:1/64

S 1/0.1

2356::34:1/64

Loopback 0

2011::1/128

R3

S 1/0.1

2356::34:3/64

 

Loopback 0

2033::1/128

R3

S 1/0.1

2356::34:3/64

 

Loopback 0

2044::1/128

R5

F 0/0

2123::34:5/64

S 1/0

2027::34:5/64:

Loopback 0

2055::1/128

R6

F 0/0

2123::34:6/64

Loopback 0

2066::1/128

R8

S 1/0

2027::34:8/64:

Loopback 0

2088::1/128

 

幀中繼配置與ospfv2相同。

1.完成接口 IPv6 地址的配置,注意不要忘記配置 loopback0

以下只展示 R3 和 R5 的配置:

 

R1(config)#ipv6 unicast-routing ―――全局打開 IPv6 路由功能

R1config)#interface loopback 0

R1(config-if)#ipv6 enable

R1(config-if)#ipv6 address 2011::1/128―――配置 loopback0 接口地址

R1(config-if)#int f 0/0

R1(config-if)#ipv6 enable

R1(config-if)# ipv6 address 2123::34:1/64

R1(config-if)#no shut

R1(config-if)#int s 1/0

R1(config-if)#ipv6 enable

R1(config-if)# encapsulation frame-relay

R1(config-if)#no shut

R1(config)#interface serial 1/0.1 multipoint

R1(config-subif)#ipv6 address 2356::34:1/64

R1(config-subif)#frame-relay map ipv6 2356::34:3 103 broadcast  

R1(config-subif)#frame-relay map ipv6 2356::34:4 104 broadcast

R1(config-subif)#frame-relay map ipv6 2356::34:1 104 broadcast

R1(config-subif)#frame-relay map ipv6 FE80::C804:1CFF:FE48:8 104 broadcast

R1(config-subif)#frame-relay map ipv6 FE80::C803:1CFF:FE48:8 103 broadcast

 

 

R3(config)#ipv6 unicast-routing

R3(config)#interface loopback 0

R3(config-if)#ipv6 address 2033::1/128

R3(config-if)#int s 1/0

R3(config-if)#ipv6 enable

R3(config-if)# encapsulation frame-relay

R3(config-if)#no shutdown

R3(config)#interface serial 1/0.1 multipoint

R3(config-subif)#ipv6 address 2356::34:3/64

R3(config-subif)#frame-relay map ipv6 2356::34:1 301 broadcast  

R3(config-subif)#frame-relay map ipv6 2356::34:4 301 broadcast

R3(config-subif)#frame-relay map ipv6 2356::34:3 301 broadcast

R3(config-subif)#frame-relay map ipv6 FE80::C804:1CFF:FE48:8 304 broadcast

R3(config-subif)#frame-relay map ipv6 FE80::C801:1CFF:FE48:8 301 broadcast

 

R4(config)#ipv6 unicast-routing

R4(config)#interface loopback 0

R4(config-if)#ipv6 address 2044::1/128

R4(config-if)#int s 1/0

R4(config-if)#ipv6 enable

R4(config-if)# encapsulation frame-relay

R4(config-if)#no shutdown

R4(config)#interface serial 1/0.1 multipoint

R4(config-subif)#ipv6 address 2356::34:4/64

R4(config-subif)#frame-relay map ipv6 2356::34:1 401 broadcast  

R4(config-subif)#frame-relay map ipv6 2356::34:4 401 broadcast

R4(config-subif)#frame-relay map ipv6 2356::34:3 401 broadcast

R4(config-subif)#frame-relay map ipv6 FE80::C803:1CFF:FE48:8 403 broadcast

R4(config-subif)#frame-relay map ipv6 FE80::C801:1CFF:FE48:8 401 broadcast

 

R1ping通 R3.R4

 

用show frame-relay pvc命令查看,幀中繼配置完成

 

 

 

2. 按實驗拓撲圖標識的區域,完成 OSPFv3 的基本配置。區域 1 為 NSSA 區域。

R6(config)#ipv6 unicast-routing

R6(config)#ipv6 router ospf 1―――啟動 OSPFv3 進程

R6(config-rtr)#router-id 6.6.6.6

R6(config-rtr)#area 1 nssa――配置區域 1 為 NSSA 區域

R6(config-rtr)#int f 0/0

R6(config-if)#ipv6 enable

R6(config-if)# ipv6 ospf 1 area 0

R6(config-if)#no shutdown

R6(config-if)#int loopback 0

R6(config-if)#ipv6 enable

R6(config-if)#ipv6 address 2066::1/128

R6(config-if)# ipv6 ospf 1 area 0

R6(config-if)#int f 0/1

R6(config-if)#ipv6 enable

R6(config-if)# ipv6 ospf 1 area 1

R6(config-if)#no shutdown

 

 

R5(config)#ipv6 unicast-routing

R5(config)#ipv6 router ospf 1―――啟動 OSPFv3 進程

R5(config-rtr)#router-id 5.5.5.5

R5(config-rtr)#area 1 nssa――配置區域 1 為 NSSA 區域

R5(config-rtr)#int f 0/0

R5(config-if)#ipv6 enable

R5(config-if)# ipv6 ospf 1 area 0

R5(config-if)#no shutdown

R5(config-if)#int loopback 0

R5(config-if)#ipv6 enable

R5(config-if)#ipv6 address 2055::1/128

R5(config-if)# ipv6 ospf 1 area 0

R5(config-if)#int s 1/0

R5(config-if)#ipv6 enable

R5(config-if)# ipv6 ospf 1 area 1

R5(config-if)#no shutdown

 

 

 

R1(config)#ipv6 unicast-routing

R1(config)#ipv6 router ospf 1―――啟動 OSPFv3 進程

R1(config-rtr)#router-id 1.1.1.1

R1(config-rtr)#int f 0/0

R1(config-if)#ipv6 enable

R1(config-if)# ipv6 ospf 1 area 0

R1(config-if)#no shutdown

R1(config-if)#int loopback 0

R1(config-if)#ipv6 enable

R1(config-if)#ipv6 address 2011::1/128

R1(config-if)# ipv6 ospf 1 area 0

R1(config-if)#int s 1/0.1

R1(config-subif)#ipv6 enable

R1(config-subif)# ipv6 ospf 1 area 2

R1(config-subif)#ipv6 ospf neighbor FE80::C803:1CFF:FE48:8

R1(config-subif)#ipv6 ospf neighbor FE80::C804:1CFF:FE48:8

 

R3(config)#ipv6 router ospf 1

R3(config-rtr)#router-id 5.5.5.5

R3(config-rtr)#int loopback 0

R3(config-if)#ipv6 enable

R3(config-if)#ipv6 address 2033::1/128

R3(config-if)# ipv6 ospf 1 area 2

R3(config-if)#int s 1/0.1

R3(config-subif)#ipv6 enable

R3(config-subif)# ipv6 ospf 1 area 2

R3(config-subif)# ipv6 ospf priority 0

R3(config-subif)# ipv6 address FE80::C803:1CFF:FE48:8 link-local

 

R4config)#ipv6 router ospf 1

R4config-rtr)#router-id 4.4.4.4

R4config-rtr)#int loopback 0

R4config-if)#ipv6 enable

R4(config-if)#ipv6 address 2044::1/128

R4(config-if)# ipv6 ospf 1 area 2

R4(config-if)#int s 1/0.1

R4(config-subif)#ipv6 enable

R4(config-subif)# ipv6 ospf 1 area 2

R4(config-subif)# ipv6 ospf priority 0

R4(config-subif)# ipv6 address FE80::C804:1CFF:FE48:8 link-local

 

 

R8(config)#ipv6 unicast-routing

R8(config)#ipv6 router ospf 1―――啟動 OSPFv3 進程

R8(config-rtr)#router-id 8.8.8.8

R8(config-rtr)#area 1 nssa――配置區域 1 為 NSSA 區域

R8(config-rtr)#int s 1/0

R8(config-if)#ipv6 enable

R8(config-if)# ipv6 ospf 1 area 1

R8(config-if)#no shutdown

R8(config-if)#int loopback 0

R8(config-if)#ipv6 enable

R8(config-if)#ipv6 address 2088::1/128

R8(config-if)# ipv6 ospf 1 area 1

R8(config-if)#int f 0/1

R8(config-if)#ipv6 enable

R8(config-if)# ipv6 ospf 1 area 1

R8(config-if)#no shutdown

3.檢查 OSPFv3 的鄰居關系

在 R31上檢查,可以看到鄰居的 Router-ID 都是用 IPv4 的地址格式標識

R1#show ipv6 ospf neighbor

 

4.測試路由通斷情況在R3測試。Ospfv3配置成功。

 

 

總結

  本次的作業難點主要的點在於幀中繼的規則和OSPF的區域划分,不懂的問題也隊內同學相互討論,互幫互助解決問題共同進步。

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM