# IPv6路由实验
# 一、实验拓扑
注:如无特别说明,描述中的 R1 或 SW1 对应拓扑中设备名称末尾数字为 1 的设备,R2 或 SW2 对应拓扑中设备名称末尾数字为 2 的设备,以此类推;另外,同一网段中,IP 地址的主机位为其设备编号,如 R3 的 g0/0 接口若在 192.168.1.0/24 网段,则其 IP 地址为 192.168.1.3/24,以此类推
# 二、实验需求
- 按照图示配置 IPv6 地址
- 按照图示配置 RIPng
- 按照图示配置 OSPFv3,配置 Router-id 为 X.X.X.X,X 为 设备编号
- 在 R3 上对 RIPng 和 OSPFv3 进行双向路由引入
# 三、实验解法
1.配置 IPv6 地址
[R1]int g0/0
[R1-GigabitEthernet0/0]ipv6 address 2001:1::1/64
其他接口配置同理这里略
2.配置 RIPng
步骤 1:在 R1 上创建 RIPng 进程,并在直连接口使能 RIPng
[R1]ripng
[R1]interface g0/0
[R1-GigabitEthernet0/0]ripng 1 enable
[R1]interface g0/1
[R1-GigabitEthernet0/1]ripng 1 enable
步骤 2:在 R2 上创建 RIPng 进程,并在直连接口使能 RIPng
[R2]ripng
[R2]interface g0/0
[R2-GigabitEthernet0/0]ripng 1 enable
[R2]interface g0/1
[R2-GigabitEthernet0/1]ripng 1 enable
步骤 3:在 R3 上创建 RIPng 进程,并在连接 RIPng 的接口上使能 RIPng
[R3]ripng
[R3]interface g0/0
[R3-GigabitEthernet0/0]ripng 1 enable
[R3]interface g0/1
[R3-GigabitEthernet0/1]ripng 1 enable
3.按照图示配置 OSPFv3,配置 Router-id 为 X.X.X.X,X 为 设备编号
步骤 1:在 R3 上创建 OSPFv3 进程,并把连接 OSPFv3 的接口使能在区域 0
[R3]ospfv3
[R3-ospfv3-1]router-id 3.3.3.3
[R3]interface g0/2
[R3-GigabitEthernet0/2]ospfv3 1 area 0
[R3]interface g5/0
[R3-GigabitEthernet5/0]ospfv3 1 area 0
步骤 2:在 R4 上创建 OSPFv3 进程,并把 G0/0 口使能进区域 0, G0/1 口使能进区域 1
[R4]ospfv3
[R4-ospfv3-1]router-id 4.4.4.4
[R4]interface g0/0
[R4-GigabitEthernet0/2]ospfv3 1 area 0
[R4]interface g0/1
[R4-GigabitEthernet5/0]ospfv3 1 area 1
步骤 3:在 R5 上创建 OSPFv3 进程,并把 G0/0 口使能进区域 0, G0/1 口使能进区域 1
[R5]ospfv3
[R5-ospfv3-1]router-id 5.5.5.5
[R5]interface g0/0
[R5-GigabitEthernet0/2]ospfv3 1 area 0
[R5]interface g0/1
[R5-GigabitEthernet5/0]ospfv3 1 area 1
4.在 R3 上对 RIPng 和 OSPFv3 进行双向路由引入
步骤 1:在 R3 上配置 RIPng 引入至 OSPFv3,配置 OSPFv3 引入至 RIPng
[R3-ripng-1]import-route ospfv3 1
[R3-ospfv3-1]import-route ripng 1
效果测试:在 R1 上查看 IPv6 路由表,发现可以学习到 2001:6::/64 网段路由,在 R5 上查看 IPv6 路由表,发现可以学习到 2001:1::/64 网段路由
[R1]display ipv6 routing-table
Destinations : 9 Routes : 10
……
Destination: 2001:6::/64 Protocol : RIPng
NextHop : FE80::38AA:66FF:FE9B:305 Preference: 100
Interface : GE0/0 Cost : 1
……
[R5]display ipv6 routing-table
Destinations : 9 Routes : 9
……
Destination: 2001:1::/64 Protocol : O_ASE2
NextHop : FE80::38AA:66FF:FE9B:30C Preference: 150
Interface : GE0/0 Cost : 1
……
← BGP联盟实验 6 to 4隧道实验 →