From d2b4afd9d4a4ec59ca224880445e3f1a335ffad6 Mon Sep 17 00:00:00 2001 From: Jean-Pierre PRUNARET Date: Tue, 31 May 2016 21:09:06 +0200 Subject: [PATCH] activation d'un noeud munin local (acessible uniquement par localhost) --- networking.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/networking.nix b/networking.nix index 8e10228..e2934a6 100644 --- a/networking.nix +++ b/networking.nix @@ -1,10 +1,10 @@ { config, pkgs, ... }: { - # Utilisation d'adresse IPv6 temporaire - # https://blog.linitx.com/control-privacy-addressing-ipv6-linux/ - # http://www.tldp.org/HOWTO/Linux+IPv6-HOWTO/x1092.html + + ## https://blog.linitx.com/control-privacy-addressing-ipv6-linux/ + ## http://www.tldp.org/HOWTO/Linux+IPv6-HOWTO/x1092.html boot.kernel.sysctl = { "net.ipv6.conf.all.temp_prefered_lft" = 3600; # 1 heure @@ -15,4 +15,10 @@ "net.ipv6.conf.default.temp_valid_lft" = 86400; # 1 jour "net.ipv6.conf.default.use_tempaddr" = 2; # activé }; + + # Noeud de supoervision munin = pas de stockage des données locales + + services.munin-node = { + enable = true; + }; }