From 11040080a94138305fbd23b8e94170b9b0cf8eaa Mon Sep 17 00:00:00 2001 From: necro-nemsis Date: Tue, 28 Jun 2022 22:52:32 -0400 Subject: [PATCH] Revert "Change default port to 953" This reverts commit cdad3e7f093c4b0c69f73580e4fbacc24067db96. --- llarp/config/config.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/llarp/config/config.cpp b/llarp/config/config.cpp index 9c89bce6f..6bff96112 100644 --- a/llarp/config/config.cpp +++ b/llarp/config/config.cpp @@ -760,10 +760,7 @@ namespace llarp // can bind to other 127.* IPs to avoid conflicting with something else that may be listening on // 127.0.0.1:53. #ifdef __linux__ - // Fedora's systemd-resolved seems unable to connect to 127.3.2.1 for unknown reasons, - // however since systemd-resolved is perfectly happy with a different port so listen on - // localhost:953 as a workaround. - constexpr Default DefaultDNSBind{"127.3.2.1:953"}; + constexpr Default DefaultDNSBind{"127.3.2.1:53"}; #else constexpr Default DefaultDNSBind{"127.0.0.1:53"}; #endif