On Mon, 20 Apr 2015 21:52, James Knott wrote:
On 04/20/2015 07:18 AM, Yamaban wrote:
Then the question arises: what setting is used in what order:
net.ipv6.conf.all.use_tempaddr net.ipv6.conf.default.use_tempaddr net.ipv6.conf.ethX.use_tempaddr
I only get: net.ipv6.conf.all.use_tempaddr=2 net.ipv6.conf.default.use_tempaddr=2
replace the "ethX" by whatever the name of your (not "lo") network interface is. The command: [code] sysctl -a --pattern 'net.ipv6.conf' [/code] Gives a listing of the state of all sysctl variables that contain the pattern 'net.ipv6.conf' in their name. [code] sysctl -a --pattern 'net.ipv6.conf.*use_tempaddr' [/code] does the same but restricts this to the pattern that contain both, net.ipv6.conf AND use_tempaddr, e.g. output, "eth0" is the ethernet device in my case: [output] net.ipv6.conf.all.use_tempaddr = 2 net.ipv6.conf.default.use_tempaddr = 2 net.ipv6.conf.eth0.use_tempaddr = 2 net.ipv6.conf.lo.use_tempaddr = -1 [/output] But, as Per and others have shown, the existance of activated forwarding disables the use_tmpaddr, see [code] sysctl -a --pattern 'net.ipv6.conf.*forwarding' [/code] YMMV on the use of forwarding AND use_tempaddr. - Yamaban. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org