Difference between revisions of "Disable IPv6 Privacy"

From Luna Node
Jump to: navigation, search
(Created page with "Ubuntu and some other operating systems have IPv6 privacy extensions enabled by default. This extension will cause outgoing IPv6 connections to fail when using the default net...")
(No difference)

Revision as of 22:10, 18 August 2015

Ubuntu and some other operating systems have IPv6 privacy extensions enabled by default. This extension will cause outgoing IPv6 connections to fail when using the default network. To disable IPv6 privacy in Ubuntu, edit /etc/sysctl.d/10-ipv6-privacy.conf and set both fields to 0, like this:

net.ipv6.conf.all.use_tempaddr = 0
net.ipv6.conf.default.use_tempaddr = 0

Then run sysctl --system to reload the configuration.