From ad8f54531eb766f0025ac0baf5f7d08685c1cf11 Mon Sep 17 00:00:00 2001 From: mzz2017 <2017@duck.com> Date: Tue, 7 Feb 2023 23:40:19 +0800 Subject: [PATCH] fix: listen ip panic --- component/control/control_plane.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/component/control/control_plane.go b/component/control/control_plane.go index 55334c6..3967489 100644 --- a/component/control/control_plane.go +++ b/component/control/control_plane.go @@ -316,7 +316,7 @@ retryLoadBpf: } } - listenIp := "[::1]" + listenIp := "::1" if len(wanInterface) > 0 { listenIp = "0.0.0.0" }