From b6e729ccedeec4c2d6d361f6d57b249f7c9bf087 Mon Sep 17 00:00:00 2001 From: SamNet-dev Date: Thu, 12 Feb 2026 15:16:21 -0600 Subject: [PATCH] feat: add port forwarding tip to MTProto initial setup --- conduit.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conduit.sh b/conduit.sh index 3015949..252ae9b 100644 --- a/conduit.sh +++ b/conduit.sh @@ -2037,6 +2037,9 @@ Domain: ${MTPROTO_DOMAIN} 1) echo "" local new_port new_domain + echo -e " ${DIM}Tip: The port you choose must be open on your firewall/security group.${NC}" + echo -e " ${DIM}If running at home, you'll need to port-forward it on your router.${NC}" + echo "" read -p " Port to listen on [443]: " new_port < /dev/tty || true new_port="${new_port:-443}" if ! echo "$new_port" | grep -qE '^[0-9]+$' || [ "$new_port" -lt 1 ] || [ "$new_port" -gt 65535 ] 2>/dev/null; then