FreeBSD:IPv6配置设置前缀值

时间:2020-01-09 10:38:35  来源:igfitidea点击:

如何在FreeBSD操作系统下为IPv6地址设置前缀?
您可以通过编辑/etc/rc.conf文件为IPv6地址设置prefixlen,执行:

# vi /etc/rc.conf

假设em0的IPv6地址为2001:48c8:7 :: 2,请执行:

ipv6_ifconfig_em0="2001:48c8:7::2 prefix 64"

保存并关闭文件。
重新启动网络。
您还可以使用ifconfig命令在shell提示符下进行设置,如下所示:

ifconfig interFace inet6 ipv6IpAddress prefixlen Value
ifconfig fxp0 inet6 2001:48c8:7::2 prefixlen 64

其中:

  • fxp0em0FreeBSD NIC接口名称
  • 2001:48c8:7 :: 2IPv6公用IP地址
  • 64IPv6前缀值