Connection time out after installing firewalld

0

While configuring a Ubuntu 22 server on a AWS g4dn instance, I tried to check the list of firewall through this command in the git bash terminal. [firewall-cmd --list-all] I was told by the terminal to install the firewalld using the following command. [sudo apt install firewalld] However, installation was interrupted with the message below. [client_loop: send disconnect: Connection reset by peer] Once I closed the terminal to restart, my ssh connection gets timeout error as the following. Terminal Input: [ssh -i KeyPair ubuntu@example.us-east-2.compute.amazonaws.com] Terminal Output: [ssh: connect to host example.us-east-2.compute.amazonaws.com port 22: Connection timed out].

I have checked the Security group and confirmed that TCP port 22 is still available. It seems that the newly installed firewalld is causing the problem. How can I resolve this issue?

1回答
0
承認された回答
  1. Use EC2 Instance terminal to connect to the server. [Set up the configuration based on the direction given from AWS console]
  2. Once logging in with the user account, switch to root user. [Sudo bash]
  3. Disable firewalld with [systemctl disable firewalld]
  4. Add 22/tcp to the UFW [sudo ufw allow 22/tcp]
JWI
回答済み 8ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ