Linux中Ipv6配置

1. ipv6添加IPV6地址

ip -6 addr add <ipv6address>/<prefixlength> dev <interface>
ip -6 addr add 2001:0db8:0:f101::1/64 dev eth0
ifconfig <interface> inet6 add <ipv6address>/<prefixlength>
ifconfig eth0 inet6 add 2001:0db8:0:f101::1/64

2. ipv6添加默认路由

ip -6 route add <ipv6network>/<prefixlength> via <ipv6address>
ip -6 route add default via 2001:0db8:0:f101::1
route -A inet6 add <ipv6network>/<prefixlength> gw
route -A inet6 add default gw 2001:0db8:0:f101::1

3. ipv6查看路由

#linux
ip -6 route show
route -A 'inet6'
route -6

#windows查看路由表
route print

4. ipv6查看邻居缓存

#linux
ip -6 neighbor show

#windows查看邻居缓存
netsh interface ipv6 show neighbors

6. ipv6使用ping命令

#linux
ping -6 2001:0db8:0:f101::1

发表评论

邮箱地址不会被公开。 必填项已用*标注