我的主机连接到与路由器和 DHCP6 服务器相连的网络。路由器上的 radvd.conf 设置如下:
interface eth1
{
AdvSendAdvert on;
AdvManagedFlag on;
AdvOtherConfigFlag off;
prefix fc00:192:168:30::/64
{
AdvOnLink on;
AdvAutonomous on;
AdvRouterAddr off;
};
};
dhcp6s.conf 设置:
interface eth1{
server preference 255;
renew-time 360;
rebind-time 450;
prefer-life-time 500;
valid-life-time 500;
allow rapid-commit;
link AAA{
range fc00:192:168:20::100 to fc00:192:268:20::200/64;
prefix fc00:192:168:20::/64;
};
};
在 Ubuntu 14.04 客户端主机中:在 /etc/sysctl.conf 文件中添加:
net.ipv6.conf.all.accept_ra = 1
net.ipv6.conf.all.autoconf = 1
在 /etc/network/interfaces
iface eth1 inet manual
iface eth1 inet6 auto
当我设置“iface eth1 inet6 auto”时,我只获得 RA 地址(fc00:192:168:30::/64),如果我设置“iface eth1 inet6 dhcp”,我将获得 dhcp6 地址(fc00:192:168:20::/64)。
请告诉我有什么方法可以在 eth1 上同时获取 RA 和 DHCP6 地址。
提前致谢,Shruti