mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-12-22 07:17:05 +00:00
Update setup to handle multiple SSH ports (#2437)
This PR addresses an issue reported in the mailinabox Slack channel where a system had sshd configured to listen on two ports. Co-authored-by: Darren Sanders <darren@dms00.com>
This commit is contained in:
parent
41870d22b0
commit
f453c44d52
@ -270,14 +270,14 @@ if [ -z "${DISABLE_FIREWALL:-}" ]; then
|
|||||||
# ssh might be running on an alternate port. Use sshd -T to dump sshd's #NODOC
|
# ssh might be running on an alternate port. Use sshd -T to dump sshd's #NODOC
|
||||||
# settings, find the port it is supposedly running on, and open that port #NODOC
|
# settings, find the port it is supposedly running on, and open that port #NODOC
|
||||||
# too. #NODOC
|
# too. #NODOC
|
||||||
SSH_PORT=$(sshd -T 2>/dev/null | grep "^port " | sed "s/port //") #NODOC
|
SSH_PORT=$(sshd -T 2>/dev/null | grep "^port " | sed "s/port //" | tr '\n' ' ') #NODOC
|
||||||
if [ -n "$SSH_PORT" ]; then
|
if [ -n "$SSH_PORT" ]; then
|
||||||
if [ "$SSH_PORT" != "22" ]; then
|
for $port in $SSH_PORT; do
|
||||||
|
if [ "$port" != "22" ]; then
|
||||||
echo "Opening alternate SSH port $SSH_PORT." #NODOC
|
echo "Opening alternate SSH port $port." #NODOC
|
||||||
ufw_limit "$SSH_PORT" #NODOC
|
ufw_limit "$port" #NODOC
|
||||||
|
fi
|
||||||
fi
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ufw --force enable;
|
ufw --force enable;
|
||||||
|
Loading…
Reference in New Issue
Block a user