您的位置:首页 > 职场人生

IPv6配置

2008-07-22 14:20 681 查看
这篇文章是我的实验报告,如果有不正确的还希望大家指点!!!多谢啦!!!


ipv6--osp
R1的配置
en
config t
no ip dom loo
interf loop 1
ip add 1.1.1.1 255.0.0.0
ipv6 unicast-routing
interf loop 0
ipv6 add 2001::1/64
ipv6 ospf 10 area 0
exi
interf e1/0
ipv6 add 2002::1/64
no shut
ipv6 ospf 10 area 0
end


R2的配置
en
config t
no ip dom loo
interf loop 1
ip add 2.2.2.2 255.0.0.0
ipv6 unicast-routing
interf e1/0
ipv6 add 2002::2/64
no shut
ipv6 ospf 10 area 0
exi
interf e1/1
ipv6 add 2003::1/64
no shut
ipv6 ospf 10 area 0
end


R3的配置
en
config t
no ip dom loo
interf loop 1
ip add 3.3.3.3 255.0.0.0
ipv6 unicast-routing
interf e1/1
ipv6 add 2003::2/64
no shut
ipv6 ospf 10 area 0
end
ping 2001::1

ipv6--rip
R1的配置
en
config t
no ip dom loo
ipv6 unicast-routing
interf loop 0
ipv6 add 2001::1/64
ipv6 rip wang enable
exi
interf e1/0
ipv6 add 2002::1/64
no shut
ipv6 rip wang enable
end


R2的配置
en
config t
no ip dom loo
ipv6 unicast-routing
interf e1/0
ipv6 add 2002::2/64
no shut
ipv6 rip wang enable
exi
interf e1/1
ipv6 add 2003::1/64
no shut
ipv6 rip wang enable
end


R3的配置
en
config t
no ip dom loo
ipv6 unicast-routing
interf e1/1
ipv6 add 2003::2/64
no shut
ipv6 rip wang enable
end
ping 2001::1

ipv6--静态路由
R1的配置
en
config t
no ip dom loo
ipv6 unicast-routing
interf loop 0
ipv6 add 2001::1/64
exi
interf e1/0
ipv6 add 2002::1/64
no shut
exi
ipv6 route 2003::/64 2002::2
end


R2的配置
en
config t
no ip dom loo
ipv6 unicast-routing
interf e1/0
ipv6 add 2002::2/64
no shut
exi
interf e1/1
ipv6 add 2003::1/64
no shut
exi
ipv6 route 2001::/64 2002::1
end


R3的配置
en
config t
no ip dom loo
ipv6 unicast-routing
interf e1/1
ipv6 add 2003::2/64
no shut
exi
ipv6 route 2002::/64 2003::1
ipv6 route 2001::/64 2003::1
exi



内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  配置 职场 IPv6