码迷,mamicode.com
首页 > 系统相关 > 详细

linux 下给网卡添加ipv6、路由

时间:2018-12-25 20:00:32      阅读:905      评论:0      收藏:0      [点我收藏+]

标签:net   style   Fix   address   windows   class   nbsp   res   print   

 

添加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
添加默认路由
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
查看路由
ip -6 route show
route -A inet6
route -6
windows查看路由表
route print
查看邻居缓存
ip -6 neighbor show
windows查看邻居缓存
netsh interface ipv6 show neighbors

 

linux 下给网卡添加ipv6、路由

标签:net   style   Fix   address   windows   class   nbsp   res   print   

原文地址:https://www.cnblogs.com/Elaine1/p/10175663.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!