From 8d464837ecf540353451ed40581503be162d394d Mon Sep 17 00:00:00 2001 From: Jean-Pierre PRUNARET Date: Tue, 14 Jun 2016 17:56:48 +0200 Subject: [PATCH] =?UTF-8?q?diminution=20de=20la=20dur=C3=A9e=20de=20validi?= =?UTF-8?q?t=C3=A9=20des=20IPv6=20temporaires?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- networking.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/networking.nix b/networking.nix index 310e328..a6f8360 100644 --- a/networking.nix +++ b/networking.nix @@ -18,12 +18,12 @@ ## http://www.tldp.org/HOWTO/Linux+IPv6-HOWTO/x1092.html boot.kernel.sysctl = { - "net.ipv6.conf.all.temp_prefered_lft" = 3600; # 1 heure - "net.ipv6.conf.all.temp_valid_lft" = 86400; # 1 jour + "net.ipv6.conf.all.temp_prefered_lft" = 1800; # 30 min + "net.ipv6.conf.all.temp_valid_lft" = 3600; # 1 heure "net.ipv6.conf.all.use_tempaddr" = 2; # activé "net.ipv6.conf.default.temp_prefered_lft" = 3600; # 1 heure - "net.ipv6.conf.default.temp_valid_lft" = 86400; # 1 jour + "net.ipv6.conf.default.temp_valid_lft" = 3600; # 1 heure "net.ipv6.conf.default.use_tempaddr" = 2; # activé }; }