设为首页收藏本站language 语言切换
查看: 3186|回复: 6
收起左侧

ipv6动态路由

[复制链接]
发表于 2009-12-17 10:49:28 | 显示全部楼层 |阅读模式
实验平台:Cisco 3725+NM4T串口模块+GT96100-FE快速以太网模块

  IOS:     c3725-adventerprisek9-mz.124-9.T1.bin

  实验目标:通过各种支持IPv6的动态路由协议使用整个网络能够互通

  实验拓扑:如下图

R1-R2-R3

  R1配置:

  R1(config)#ipv6 unicast-routing //开启IPv6路由功能(不能少)

  R1(config)#int fa0/0

  R1(config-if)#ipv6 address 2000::1/16

  R1(config-if)#no shut

  R1(config)#int s1/0

  R1(config-if)#ipv6 address 2001::1/16

  R1(config-if)#no shut

  ---------上面为基本IP信息配置部分------------

  R1(config)#ipv6 router rip bjxh  //“bjxh”为任意名称

  R1(config-rtr)#exit

  R1(config)#int fa0/0

  R1(config-if)#ipv6 rip bjxh enable //在接口上激活RIP

  R1(config-if)#int s1/0

  R1(config-if)#ipv6 rip bjxh enable

  ---------以上为支持IPV6的RIPng动态路由配置部分------------

  R1(config)#no ipv6 router rip bjxh  //去掉RIP协议

  R1(config)#ipv6 router ospf 110    //启动OSPFv3进程号为110,各路由器可以不同

  R1(config-rtr)#router-id 1.1.1.1  //必须指定RID

  R1(config)#int fa0/0

  R1(config-if)#ipv6 ospf 110 area 0  //将接口加入到区域0中

  R1(config-if)#int s1/0

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

  ---------以上为支持IPV6的OSPFv3动态路由配置部分------------

  R1(config)#no ipv router ospf 110

  R1(config)#ipv6 router eigrp 90   //启动EIGRP协议,自治系统号为90,各路由器要相同

  R1(config-rtr)#router-id 1.1.1.1  //需要指定RID

  R1(config-rtr)#no shut  //一定要激活协议

  R1(config-rtr)#ex

  R1(config)#int fa0/0

  R1(config-if)#ipv6 eigrp 90  //在接口上激活协议

  R1(config-if)#int s1/0

  R1(config-if)#ipv6 ei 90

  ---------以上为支持IPV6的EIGRP动态路由配置部分------------

  R2配置

  R2(config)#ipv6 unicast-routing

  R2(config)#int s1/0

  R2(config-if)#ipv6 address 2001::2/16

  R2(config-if)#no shut

  R2(config)#int s1/1

  R2(config-if)#ipv6 address 2002::1/16

  R2(config-if)#no shut

  ---------以上为基本IP信息配置部分------------

R2(config)#ipv6 router rip bjxh

  R2(config-rtr)#exit

  R2(config)#int s1/0

  R2(config-if)#ipv6 rip bjxh en

  R2(config-if)#int s1/1

  R2(config-if)#ipv rip bjxh en

  ---------以上为支持IPV6的RIPng动态路由配置部分------------

  R2(config)#no ipv6 router rip bjxh

  R2(config)#ipv6 router ospf 110

  R2(config-rtr)#router-id 2.2.2.2

  R2(config-rtr)#ex

  R2(config)#int s1/0

  R2(config-if)#ipv ospf 110 a 0

  R2(config-if)#int s1/1

  R2(config-if)#ipv os 110 a 1

  ---------以上为支持IPV6的OSPFv3动态路由配置部分------------

  R2(config)#no ipv6 router ospf 110

  R2(config)#ipv6 router eigrp 90

  R2(config-rtr)#router-id 2.2.2.2

  R2(config-rtr)#no shut

  R2(config-rtr)#ex

  R2(config)#int s1/0

  R2(config-if)#ipv ei 90

  R2(config-if)#int s1/1

  R2(config-if)#ipv ei 90

  ---------以上为支持IPV6的EIGRP动态路由配置部分------------

  R3配置:

  R3(config)#ipv6 unicast-routing

  R3(config)#int s1/0

  R3(config-if)#ipv add 2002::2/16

  R3(config-if)#no shut

  R3(config-if)#int fa0/0

  R3(config-if)#ipv add 2003::1/16

  R3(config-if)#no shut

  ---------上面为基本IP信息配置部分------------

  R3(config)#ipv6 router rip bjxh

  R3(config)#int fa0/0

  R3(config-if)#ipv rip bjxh en

  R3(config-if)#int s1/0

  R3(config-if)#ipv rip bjxh en

  ---------以上为支持IPV6的RIP动态路由配置部分------------

  R3(config)#no ipv router rip bjxh

  R3(config)#ipv router os 110

  R3(config-rtr)#router-id 3.3.3.3

  R3(config-rtr)#ex

  R3(config)#int fa0/0

  R3(config-if)#ipv os 110 a 1

  R3(config-if)#int s1/0

  R3(config-if)#ipv os 110 a 1

  ---------以上为支持IPV6的OSPFv3动态路由配置部分------------

  R3(config)#no ipv router ospf 110

  R3(config)#ipv6 router eigrp 90

  R3(config-rtr)#router-id 3.3.3.3

  R3(config-rtr)#no shut

  R3(config-rtr)#ex

  R3(config)#int fa0/0

  R3(config-if)#ipv ei 90

  R3(config-if)#int s1/0

  R3(config-if)#ipv ei 90

  ---------以上为支持IPV6的EIGRP动态路由配置部分------------

R3#show ipv rou

  IPv6 Routing Table - 8 entries

  Codes: C - Connected, L - Local, S - Static, R - RIP, B - BGP

  U - Per-user Static route

  I1 - ISIS L1, I2 - ISIS L2, IA - ISIS interarea, IS - ISIS summary

  O - OSPF intra, OI - OSPF inter, OE1 - OSPF ext 1, OE2 - OSPF ext 2

  ON1 - OSPF NSSA ext 1, ON2 - OSPF NSSA ext 2

  D - EIGRP, EX - EIGRP external

  R   2000::/16 [120/3]

  via FE80::C000:13FF:FE2C:0, Serial1/0

  R   2001::/16 [120/2]

  via FE80::C000:13FF:FE2C:0, Serial1/0

  ---------部分省略-----------

  R3#show ipv route

  IPv6 Routing Table - 8 entries

  Codes: C - Connected, L - Local, S - Static, R - RIP, B - BGP

  U - Per-user Static route

  I1 - ISIS L1, I2 - ISIS L2, IA - ISIS interarea, IS - ISIS summary

  O - OSPF intra, OI - OSPF inter, OE1 - OSPF ext 1, OE2 - OSPF ext 2

  ON1 - OSPF NSSA ext 1, ON2 - OSPF NSSA ext 2

  D - EIGRP, EX - EIGRP external

  OI  2000::/16 [110/138]

  via FE80::C000:13FF:FE2C:0, Serial1/0

  OI  2001::/16 [110/128]

  via FE80::C000:13FF:FE2C:0, Serial1/0

  ---------部分省略-----------

  R3#show ipv rou

  IPv6 Routing Table - 8 entries

  Codes: C - Connected, L - Local, S - Static, R - RIP, B - BGP

  U - Per-user Static route

  I1 - ISIS L1, I2 - ISIS L2, IA - ISIS interarea, IS - ISIS summary

  O - OSPF intra, OI - OSPF inter, OE1 - OSPF ext 1, OE2 - OSPF ext 2

  ON1 - OSPF NSSA ext 1, ON2 - OSPF NSSA ext 2

  D - EIGRP, EX - EIGRP external

  D   2000::/16 [90/2707456]

  via FE80::C000:13FF:FE2C:0, Serial1/0

  D   2001::/16 [90/2681856]

  via FE80::C000:13FF:FE2C:0, Serial1/0

  ---------部分省略-----------

  R3#p 2000::1

  Type escape sequence to abort.

  Sending 5, 100-byte ICMP Echos to 2000::1, timeout is 2 seconds:

  !!!!!

  Success rate is 100 percent (5/5), round-trip min/avg/max = 44/88/192 ms
发表于 2010-10-25 19:00:40 | 显示全部楼层
不错不错,支持!!!
沙发 2010-10-25 19:00:40 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2012-2-14 16:04:33 | 显示全部楼层
学习了,支持楼主
板凳 2012-2-14 16:04:33 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2012-4-13 13:50:57 | 显示全部楼层
学习了,谢谢
地板 2012-4-13 13:50:57 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2012-10-3 12:02:06 | 显示全部楼层
5# 2012-10-3 12:02:06 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2012-11-20 15:49:11 | 显示全部楼层
不错。学习了!
6# 2012-11-20 15:49:11 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2013-8-4 11:17:16 | 显示全部楼层
看了LZ的帖子,我只想说一句很好很强大!
7# 2013-8-4 11:17:16 回复 收起回复
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2025-5-21 13:20 , Processed in 0.117941 second(s), 25 queries , Redis On.  

  Powered by Discuz!

  © 2001-2025 HH010.COM

快速回复 返回顶部 返回列表