Last active
December 6, 2021 15:45
-
-
Save tanhit243/1085fa33141db0a3ee5bffd5881eaf0b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Show firewall | |
sudo ufw status verbose | |
# Open port | |
Nếu bạn muốn mọi người trên internet truy cập được vào máy chủ của bạn thì bạn cần mở port trong firewall để cho phép họ truy | |
thông qua port vừa mở. | |
sudo ufw allow 22/tcp | |
# List open port | |
sudo netstat -tulpn | grep LISTEN |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment