Назад | Перейти на главную страницу

Ubuntu 14.04 игнорирует конфигурацию SLAAC IPv6

У меня возникают проблемы с получением сервера Ubuntu 14.04 для получения адреса IPv6 через SLAAC. Я прошел через процесс изменения всех настроек конфигурации, которые смог найти через Google, но он все еще застрял с адресом fe80 :: Scope: Link.

Мой файл интерфейсов выглядит так:

auto eth0
iface eth0 inet dhcp
iface eth0 inet6 auto

Я добавил в свой файл sysctl.conf следующую строку:

net.ipv6.conf.all.use_tempaddr=0

И когда я проверяю другие настройки sysctl, я получаю следующее:

net.ipv6.conf.eth0.accept_dad = 1
net.ipv6.conf.eth0.accept_ra = 1
net.ipv6.conf.eth0.accept_ra_defrtr = 1
net.ipv6.conf.eth0.accept_ra_pinfo = 1
net.ipv6.conf.eth0.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.eth0.accept_ra_rtr_pref = 1
net.ipv6.conf.eth0.accept_redirects = 1
net.ipv6.conf.eth0.accept_source_route = 0
net.ipv6.conf.eth0.autoconf = 1
net.ipv6.conf.eth0.dad_transmits = 1
net.ipv6.conf.eth0.disable_ipv6 = 0
net.ipv6.conf.eth0.force_mld_version = 0
net.ipv6.conf.eth0.force_tllao = 0
net.ipv6.conf.eth0.forwarding = 0
net.ipv6.conf.eth0.hop_limit = 64
net.ipv6.conf.eth0.max_addresses = 16
net.ipv6.conf.eth0.max_desync_factor = 600
net.ipv6.conf.eth0.mc_forwarding = 0
net.ipv6.conf.eth0.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.eth0.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.eth0.mtu = 1500
net.ipv6.conf.eth0.ndisc_notify = 0
net.ipv6.conf.eth0.proxy_ndp = 0
net.ipv6.conf.eth0.regen_max_retry = 3
net.ipv6.conf.eth0.router_probe_interval = 60
net.ipv6.conf.eth0.router_solicitation_delay = 1
net.ipv6.conf.eth0.router_solicitation_interval = 4
net.ipv6.conf.eth0.router_solicitations = 3
net.ipv6.conf.eth0.suppress_frag_ndisc = 1
net.ipv6.conf.eth0.temp_prefered_lft = 86400
net.ipv6.conf.eth0.temp_valid_lft = 604800
net.ipv6.conf.eth0.use_tempaddr = 0

Я ищу любые другие места, где мне нужно изменить настройки, или если есть журнал, который я должен посмотреть, чтобы определить, почему я все еще получаю адрес fe80 :: вместо адреса на основе SLAAC.

Другие компьютеры в той же сети Windows, Linux, Mac нормально получают адреса IPv6.