From f1bca35b39fab595a84d25c0a8cd7d5d8242f83c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= <joerg@thalheim.io>
Date: Fri, 26 Nov 2021 10:35:59 +0100
Subject: [PATCH 1/3] eve: drop ipv6

---
 krebs/3modules/external/mic92.nix | 2 --
 1 file changed, 2 deletions(-)

diff --git a/krebs/3modules/external/mic92.nix b/krebs/3modules/external/mic92.nix
index e83608385..0e6812a35 100644
--- a/krebs/3modules/external/mic92.nix
+++ b/krebs/3modules/external/mic92.nix
@@ -224,10 +224,8 @@ in {
         retiolum = {
           via = internet;
           addrs = [
-            config.krebs.hosts.eve.nets.retiolum.ip4.addr
             config.krebs.hosts.eve.nets.retiolum.ip6.addr
           ];
-          ip4.addr = "10.243.29.174";
           aliases = [ "eve.r" ];
           tinc.pubkey = ''
             -----BEGIN RSA PUBLIC KEY-----

From 89167ba5b885030e8d236a90b98076f0c7309502 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= <joerg@thalheim.io>
Date: Fri, 26 Nov 2021 12:47:59 +0100
Subject: [PATCH 2/3] mic92: allow ipv6 for telegraf metrics for gum.r

---
 makefu/2configs/nix-community/supervision.nix | 1 +
 1 file changed, 1 insertion(+)

diff --git a/makefu/2configs/nix-community/supervision.nix b/makefu/2configs/nix-community/supervision.nix
index f648b9c17..cd4b6567b 100644
--- a/makefu/2configs/nix-community/supervision.nix
+++ b/makefu/2configs/nix-community/supervision.nix
@@ -6,6 +6,7 @@ in {
 
   networking.firewall.extraCommands = ''
     iptables -A INPUT -i retiolum -p tcp --dport ${port} -j ACCEPT
+    ip6tables -A INPUT -i retiolum -p tcp --dport ${port} -j ACCEPT
   '';
 
   services.telegraf = {

From b8dfd63ba1a141a6ea69db305ca1be99e99ae4e1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= <joerg@thalheim.io>
Date: Fri, 26 Nov 2021 13:45:43 +0100
Subject: [PATCH 3/3] mic92: enable transmission for v6

---
 lass/1systems/yellow/config.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lass/1systems/yellow/config.nix b/lass/1systems/yellow/config.nix
index dc3b4b566..554882bf3 100644
--- a/lass/1systems/yellow/config.nix
+++ b/lass/1systems/yellow/config.nix
@@ -21,7 +21,7 @@ with import <stockholm/lib>;
       download-dir = "/var/download/finished";
       incomplete-dir = "/var/download/incoming";
       incomplete-dir-enable = true;
-      rpc-bind-address = "0.0.0.0";
+      rpc-bind-address = "::";
       message-level = 1;
       umask = 18;
       rpc-whitelist-enabled = false;