好消息,超酷的在线虚拟网络实验室上线了!点击开始实验

为获得更好的浏览效果,建议您使用 Firefox 或者 Chrome 浏览器



MSR系列路由器

IPv6路由协议之OSPFv3路由协议的基本配置

关键字:MSR;OSPFV3;IPv6

一、组网需求

在三台MSR路由器之间启用OSPFv3路由协议,两台PC机通过无状态地址自动配置方式获取IPv6地址,并分别在PC机上配置IPv6的默认网关。要求PC主机能够互相ping通。

二、组网图

设备清单:MSR路由器      3

          PC            2

三、配置步骤

1.     配置PC主机

cmd命令行里进行如下配置:

ipv6 install            //安装IPv6协议

2.        配置路由器  

R1 配置

#

ipv6                 //全局使能IPv6(必配)

#

interface Ethernet0/0

 port link-mode route

 ipv6 address 1::1/64   //配置接口IPv6地址

 undo ipv6 nd ra halt   //使能接口的路由宣告功能

#

interface Ethernet0/1

 port link-mode route

 ipv6 address 2::1/64

 ospfv3 100 area 0.0.0.0   //在接口里使能OSPFv3并加入到Area 0

#

ospfv3 100            //创建OSPFv3进程进程号为100

 router-id 100.1.1.2

 import-route direct    //引入直连路由

#

R2 配置

#

ipv6                 //全局使能IPv6(必配)

#

interface Ethernet0/1

 port link-mode route

 ipv6 address 2::2/64

ospfv3 100 area 0.0.0.0   //在接口里使能OSPFv3并加入到Area 0

#

interface Ethernet0/0

 port link-mode route

 ipv6 address 3::1/64

 ospfv3 100 area 0.0.0.1   //在接口里使能OSPFv3并加入到Area 0

#

ospfv3 1

 router-id 2.2.2.2

#

R3 配置

#

 ipv6                 //全局使能IPv6(必配)

#

interface Ethernet0/0

 port link-mode route

 ipv6 address 4::1/64

 ospfv3 1 area 0.0.0.1   //在接口里使能OSPFv3并加入到Area 1

 undo ipv6 nd ra halt

#

interface Ethernet0/1

 port link-mode route

 ipv6 address 3::2/64

 ospfv3 1 area 0.0.0.1   //在接口里使能OSPFv3并加入到Area 1

#

ospfv3 1

 router-id 3.3.3.3

#

四、配置关键点

1、不要忘记配置路由器的Router-id

2、注意与OSPFv2配置的不同,OSPFv3需要在接口里使能,并将接口加入到相应的区域中

3、一定要在全局使能IPv6

X Close
X Close