在FreeBSD中如何配置IPv6P地址
时间:2019-11-20 08:53:59 来源:igfitidea点击:
在FreeBSD 7中,如何配置IPv6网络?
FreeBSD Linux如何设置IPv6 地址?
在FreeBSD 配置IPv6网络
编辑/etc/rc.conf文件:
# vi /etc/rc.conf
添加以下配置:
ipv6_enable="YES" ipv6_ifconfig_fxp0="2001:470:1e04:5ea::10" ipv6_defaultrouter="2001:470:1e04:5ea::1"
重启IPv6网络服务:
# /etc/rc.d/network_ipv6 restart
查看新分配的IP地址:
# ifconfig # ifconfig | grep inet6
如何测试IPv6网络?
使用ping6或traceroute6命令:
$ ping6 ipv6.google.com
$ traceroute6 ipv6.google.com
如何使用ifconfig命令配置IPv6地址?
使用ifconfig命令分配IP地址:
# ifconfig {interface-name} inet6 {IPv6-Address} prefixlen {routed-bit} # ifconfig le0 inet6 001:470:1e04:5ea::10 prefixlen 64
要添加默认路由器:
# route -n add -inet6 default {IPv6-Router-IP} # route -n add -inet6 default 2001:470:1e04:5ea::1