From 64d95570fef805cc66d6719400776a7ff7d96121 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Wed, 5 Jun 2024 08:08:49 -0500 Subject: [PATCH] prod: nut: Listen on IPv4 all-hosts For some reason, once _nut0_ was updated to Fedora CoreOS 40, clients could not connect to `upsd` anymore, with any attempts returning "connection refused." It seems the that listening on the IPv6 all-hosts address no longer includes IPv4. --- env/prod/nut.cue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env/prod/nut.cue b/env/prod/nut.cue index 805a1f1..99a73b3 100644 --- a/env/prod/nut.cue +++ b/env/prod/nut.cue @@ -6,7 +6,7 @@ ups_server: "nut.pyrocufflink.blue" nut: schema.#Nut & { listen: { - address: "::" + address: "0.0.0.0" port: 3493 }