From 4b778d3218ae71059eade294f828a8679c5156cf Mon Sep 17 00:00:00 2001 From: root Date: Tue, 10 Mar 2026 16:23:57 +0000 Subject: [PATCH] fix: Correct firewall troubleshooting note - Port 8120 inbound only needed if Core initiates connection - Default outbound connection requires no inbound ports - Clarified firewall requirements in troubleshooting section --- komodo-periphery-install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/komodo-periphery-install.sh b/komodo-periphery-install.sh index 1d7bc4a..a575a23 100755 --- a/komodo-periphery-install.sh +++ b/komodo-periphery-install.sh @@ -286,7 +286,9 @@ show_status() { echo " Troubleshooting:" echo " - Ensure the Core Domain is reachable from this server" echo " - Verify the Passkey matches the Core configuration" - echo " - Check firewall rules (Port 8120 must be open)" + echo " - Check firewall rules:" + echo " * Outbound connection (default): No inbound ports needed" + echo " * Inbound connection (if Core initiates): Open Port 8120/tcp" echo " - View logs: docker logs komodo-periphery -f" echo "" }