ospfv3

OSPFV3配置

 

 

 

一、ipv6地址规划

 

路由

接口

地址

Loopback0

R1

 

F0/0

2001:db8:102:3::1/64

2001:cf:102:1::1/64

F0/1

2001:db8:102:4::1/64

 

R2

F0/1

2001:db8:102:3::2/64

2001:cf:102:2::1/64

F0/0

2001:db8:102:5::1/64

 

R3

S1/2

2001:db8:102:1::3/64

2001:cf:102:3::1/64

F0/0

2001:db8:102:3::3/64

 

R4

 

 

2001:cf:102:4::1/64

R5

S1/0

2001:db8:102:1::1/64

2001:cf:102:5::1/64

R6

S1/1

2001:db8:102:1::2/64

2001:cf:102:6::1/64

R7

F2/0

2001:db8:102:5::2/64

 

F0/1

2001:db8:102:4::2/64

2001:cf:102:7::1/64

F0/0

2001:db8:102:2::2/64

 

R8

F0/0

2001:db8:102:2::1/64

2001:cf:102:8::1/64

 

 

二、配置步骤

采用帧中继连接,R4作为帧中继交换机,帧中继路由R3,R5,R6静态配置dlci

 

R3#configure terminal

R3(config)#ipv6 unicast-routing

R3(config)#interface Serial4/2

R3(config-if)# frame-relay map ipv6 2001:DB8:102:1::1 402 broadcast

R3(config-if)# frame-relay map ipv6 2001:DB8:102:1::2 401 broadcast  

R3(config-if)#frame-relay map ipv6 FE80::CE01:1EFF:FE28:0 401 broadcast

R3(config-if)# frame-relay map ipv6 FE80::CE02:EFF:FE60:0 402 broadcast  

R3(config-if)#exit

 

R5#configure terminal

R5(config)#ipv6 unicast-routing

R5(config)interface Serial1/0

R5(config-if)#frame-relay map ipv6 2001:DB8:102:1::3 202 broadcast

R5(config-if)#frame-relay map ipv6 2001:DB8:102:1::2 201 broadcast

R5(config-if)# frame-relay map ipv6 FE80::CE01:1EFF:FE28:0 201 broadcast

R5(config-if)# frame-relay map ipv6 FE80::CE04:19FF:FE18:0 202 broadcast

R5(config-if)#exit

 

R6#configure terminal

R6(config)#ipv6 unicast-routing

R6(config)interface Serial1/1

R6(config-if)# frame-relay map ipv6 2001:DB8:102:1::3 102 broadcast

R6(config-if)# frame-relay map ipv6 2001:DB8:102:1::1 101 broadcast

R6(config-if)#frame-relay map ipv6 FE80::CE04:19FF:FE18:0 102 broadcast

R6(config-if)#frame-relay map ipv6 FE80::CE02:EFF:FE60:0 101 broadcast

R6(config-if)#exit

 

测试连通性:

R6 ping R3

R6#ping 2001:db8:102:1::3 ok

 

 

 

帧中继环境下配置ospf

R3#configure terminal

R3(config)#ipv6 router ospf 1

R3(config-rtr)#router-id 3.3.3.3    配置路由id

R3(config-rtr)# area 0 range 2001:DB8::/32

R3(config-rtr)# exit

R3(config)#interface Serial1/2

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

R3(config-if)# ipv6 enable

R3(config-if)# ipv6 ospf neighbor FE80::CE02:EFF:FE60:0 priority 1    手动配置邻居

R3(config-if)# ipv6 ospf neighbor FE80::CE01:1EFF:FE28:0  priority 1

R3(config-if)#exit

R3(config)#interface fastEthernet 0/0

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

 

R6配置参考下面R5配置

 

R5#configure terminal

R5(config)#ipv6 router ospf 1

R5(config-rtr)#router-id 5.5.5.5      路由id

R5(config-rtr)# exit

R5(config)#interface Serial1/0

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

R5(config-if)# ipv6 enable

R5(config-if)#exit

 

配置其他区域的OSPFV3

R2参考R1配置

R1#configure terminal

R1(config)#ipv6 unicast-routing

R1(config)#ipv6 router ospf 1

R1(config-rtr)#router-id 1.1.1.1

R1(config-rtr)#area 1 nssa 定义区域1为nssa区域

R1(config-rtr)#exit

R1(config)#interface fastEthernet 0/0

R1(config-if)#ipv6 enable

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

R1(config-if)#exit

R1(config)#interface fastEthernet 0/1

R1(config-if)#ipv6 enable

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

R1(config-if)#exit

 

 

 

配置路由重发布

R7#configure terminal

R7(config)#ipv6 unicast-routing

R7(config)#ipv6 router rip ys

R7(config-rtr)#redistribute ospf 1 metric 4       将ospfv3重发布到RIP中 R7(config-rtr)# redistribute connected

R7(config-rtr)#exit

R7(config)#ipv6 router ospf 1

R7(config-rtr)# router-id 7.7.7.7

R7(config-rtr)#area 1 nssa

R7(config-rtr)# redistribute rip          将rip重发布到ospfv3中

R7(config-rtr)# redistribute connected    把连接 R8 的网段重分布到 OSPFv3

R7(config-rtr)# exit

 

测试连通性

R8 ping R3

R8#ping 2001:db8:102:1::3  

 

 

查看R5的邻居:

R5#show ipv6 ospf neighbor

 

 

 

 

实验总结:

通过此次作业,让我对于上学期学的ospf知识有了更深的理解,同时结合帧中继等,动手操作让目前学习的内容了解有了更深的层次。这作业做了两天半时间,从一开始配置错误导致无法ping通,到后面地址配置错误,算错导致后期排错排了很久。相信这次作业能对于实操有非常重要的意义。

 

posted @ 2019-05-29 10:10  这么瘦的胖子  阅读(338)  评论(4编辑  收藏  举报