云计算专业——ipv6静态路由配置、RIPNG、ospfv3实验

云计算专业——ipv6静态路由配置、RIPNG、ospfv3实验
拓扑图如图所示:
在这里插入图片描述

路由器配置命令如下:

AR1:
system-view
sysname AR1
ipv6
interface g0/0/0
ipv6 enable
ipv6 address 2021:0:0:6::1 64
interface g0/0/1
ipv6 enable
ipv6 address 2021:0:0:16::1 64

ipv6 route-static 2021:0:0:26:: 64 2021:0:0:6::2

ripng 1
interface g0/0/0
ripng 1 enable
interface g0/0/1
ripng 1 enable

ospfv3 1
router-id 1.1.1.1
interface g0/0/0
ospfv3 1 area 0
interface g0/0/1
ospfv3 1 area 1
AR2:
system-view
sysname AR2
ipv6
interface g0/0/0
ipv6 enable
ipv6 address 2021:0:0:6::2 64
interface g0/0/1
ipv6 enable
ipv6 address 2021:0:0:26::1 64

ipv6 route-static 2021:0:0:16:: 64 2021:0:0:6::1

ripng 1
interface g0/0/0
ripng 1 enable
interface g0/0/1
ripng 1 enable

ospfv3 1
router-id 2.2.2.2
interface g0/0/0
ospfv3 1 area 0
interface g0/0/1
ospfv3 1 area 1

测试连通性:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
再进行抓包测试:
在这里插入图片描述
菜菜的代码,希望能够帮助到你哟!

猜你喜欢

转载自blog.csdn.net/Sconnie/article/details/113766855