From a12ff140a35c9767d99bdf67e4e30eb8c2d7adab Mon Sep 17 00:00:00 2001 From: John Maguire Date: Tue, 10 Dec 2024 15:11:42 -0500 Subject: [PATCH] Default listen.host to IPv6 addresses (#204) --- nebula/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nebula/config.go b/nebula/config.go index ed0967b..e503b8c 100644 --- a/nebula/config.go +++ b/nebula/config.go @@ -30,7 +30,7 @@ func newConfig() *config { Hosts: []string{}, }, Listen: configListen{ - Host: "0.0.0.0", + Host: "[::]", Port: 4242, Batch: 64, },