IPv6 路由实验 - 图1

图 1-1

注:如无特别说明,描述中的 R1 或 SW1 对应拓扑中设备名称末尾数字为 1 的设备,R2 或 SW2 对应拓扑中设备名称末尾数字为 2 的设备,以此类推;另外,同一网段中,IP 地址的主机位为其设备编号,如 R3 的 g0/0 接口若在 192.168.1.0/24 网段,则其 IP 地址为 192.168.1.3/24,以此类推


实验需求

  1. 按照图示配置 IPv6 地址
  2. 按照图示配置 RIPng
  3. 按照图示配置 OSPFv3,配置 Router-id 为 X.X.X.X,X 为 设备编号
  4. 在 R3 上对 RIPng 和 OSPFv3 进行双向路由引入

实验解法

  1. 配置 IPv6 地址部分略

  2. 配置 RIPng
    步骤 1:在 R1 上创建 RIPng 进程,并在直连接口使能 RIPng

    1. [R1]ripng
    2. [R1]interface g0/0
    3. [R1-GigabitEthernet0/0]ripng 1 enable
    4. [R1]interface g0/1
    5. [R1-GigabitEthernet0/1]ripng 1 enable


步骤 2:在 R2 上创建 RIPng 进程,并在直连接口使能 RIPng

  1. [R2]ripng
  2. [R2]interface g0/0
  3. [R2-GigabitEthernet0/0]ripng 1 enable
  4. [R2]interface g0/1
  5. [R2-GigabitEthernet0/1]ripng 1 enable


步骤 3:在 R3 上创建 RIPng 进程,并在连接 RIPng 的接口上使能 RIPng

  1. [R3]ripng
  2. [R3]interface g0/0
  3. [R3-GigabitEthernet0/0]ripng 1 enable
  4. [R3]interface g0/1
  5. [R3-GigabitEthernet0/1]ripng 1 enable
  1. 按照图示配置 OSPFv3,配置 Router-id 为 X.X.X.X,X 为 设备编号
    步骤 1:在 R3 上创建 OSPFv3 进程,并把连接 OSPFv3 的接口使能在区域 0
    1. [R3]ospfv3
    2. [R3-ospfv3-1]router-id 3.3.3.3
    3. [R3]interface g0/2
    4. [R3-GigabitEthernet0/2]ospfv3 1 area 0
    5. [R3]interface g5/0
    6. [R3-GigabitEthernet5/0]ospfv3 1 area 0


步骤 2:在 R4 上创建 OSPFv3 进程,并把 G0/0 口使能进区域 0, G0/1 口使能进区域 1

  1. [R4]ospfv3
  2. [R4-ospfv3-1]router-id 4.4.4.4
  3. [R4]interface g0/0
  4. [R4-GigabitEthernet0/2]ospfv3 1 area 0
  5. [R4]interface g0/1
  6. [R4-GigabitEthernet5/0]ospfv3 1 area 1


步骤 3:在 R5 上创建 OSPFv3 进程,并把 G0/0 口使能进区域 0, G0/1 口使能进区域 1

  1. [R5]ospfv3
  2. [R5-ospfv3-1]router-id 5.5.5.5
  3. [R5]interface g0/0
  4. [R5-GigabitEthernet0/2]ospfv3 1 area 0
  5. [R5]interface g0/1
  6. [R5-GigabitEthernet5/0]ospfv3 1 area 1
  1. 在 R3 上对 RIPng 和 OSPFv3 进行双向路由引入
    步骤 1:在 R3 上配置 RIPng 引入至 OSPFv3,配置 OSPFv3 引入至 RIPng
    1. [R3-ripng-1]import-route ospfv3 1
    2. [R3-ospfv3-1]import-route ripng 1


效果测试:在 R1 上查看 IPv6 路由表,发现可以学习到 2001:6::/64 网段路由,在 R5 上查看 IPv6 路由表,发现可以学习到 2001:1::/64 网段路由

  1. [R1]display ipv6 routing-table
  2. Destinations : 9 Routes : 10
  3. ……
  4. Destination: 2001:6::/64 Protocol : RIPng
  5. NextHop : FE80::38AA:66FF:FE9B:305 Preference: 100
  6. Interface : GE0/0 Cost : 1
  7. ……
  1. [R5]display ipv6 routing-table
  2. Destinations : 9 Routes : 9
  3. ……
  4. Destination: 2001:1::/64 Protocol : O_ASE2
  5. NextHop : FE80::38AA:66FF:FE9B:30C Preference: 150
  6. Interface : GE0/0 Cost : 1
  7. ……


http://www.dengfm.com/15259337736263.html