You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
522 B
Nix
18 lines
522 B
Nix
9 years ago
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
|
||
|
# Utilisation d'adresse IPv6 temporaire
|
||
|
# https://blog.linitx.com/control-privacy-addressing-ipv6-linux/
|
||
|
|
||
|
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.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.use_tempaddr" = 2; # activé
|
||
|
};
|
||
|
}
|