From f514d9160c98e8a8bd56925281ec7abcda0913b1 Mon Sep 17 00:00:00 2001 From: shocknet-justin Date: Thu, 25 Sep 2025 13:50:59 -0400 Subject: [PATCH] fix listen --- scripts/install_lnd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_lnd.sh b/scripts/install_lnd.sh index eeab97f3..81061d07 100755 --- a/scripts/install_lnd.sh +++ b/scripts/install_lnd.sh @@ -111,7 +111,7 @@ install_lnd() { log "Configuring LND to use new port $lnd_port_new." sed -i '/^listen=/d' $USER_HOME/.lnd/lnd.conf - echo "listen=:$lnd_port_new" >> $USER_HOME/.lnd/lnd.conf + echo "listen=0.0.0.0:$lnd_port_new" >> $USER_HOME/.lnd/lnd.conf log "LND configuration updated. The service will be restarted by the installer." else log "Port $lnd_port is in use by a healthy LND service (assumed to be our own). No changes will be made."