2012年思科认证考试备考的朋友,为了能让大家找到更多的复习资料,思科认证考试网特搜集了有关22012年思科认证(CCNP)考试复习指导资料,帮助大家复习,祝大家考试顺利。
如何实测思科路由器ipv6地址
对于思科路由器的IPV6实测,我们要进行哪些操作呢?具体的配置命令都有哪些呢?下面的文章讲给你详细的介绍,相信此文会对你有所帮助。
#没有配置ipv6地址的接口
r1#sh run int fa1/0
interface FastEthernet1/0
ip address 172.16.12.1 255.255.255.0
duplex auto
speed auto
end
r1#sh ipv6 int bri
FastEthernet1/0 [up/up]
unassigned
FastEthernet1/1 [administratively down/down]
unassigned
r1(config)#int fa1/0
r1(config-if)#ipv6 addr ?
WORD General prefix name
X:X:X:X::X IPv6 link-local address
X:X:X:X::X/<0-128> IPv6 prefix
autoconfig Obtain address using autoconfiguration
#配置本地链路地址不成功,因为ipv6的link-local地址必须是fe80::/16开头的
r1(config-if)#ipv6 addr 3333::1 link-local
% Invalid link-local address
#先配置ipv6 prefix地址
r1(config-if)#ipv6 addr 3333::1/112
r1(config-if)#do sh run int fa1/0
interface FastEthernet1/0
ip address 172.16.12.1 255.255.255.0
duplex auto
speed auto
ipv6 address 3333::1/112