OpenClaw AI là gì? Cách cài trên VPS Ubuntu
Cùng giải mã hiện tượng công nghệ OpenClaw AI và tìm hiểu cách cài đặt lên VPS Ubuntu để có cho mình trợ lý AI cá nhân thực thụ nhé.
16/03/2026
Đang Tải...
FirewallD is the default firewall management tool for RHEL 7 and Centos 7 systems. Let's learn how to open ports 80 and 43 in FirewallID in this article.
Mục lục
Mục lục
FirewallD is the default firewall management tool for RHEL 7 and CentOS 7, replacing Iptables with the following key differences:
With the firewall, you can open ports either temporarily or permanently. Temporary rules will be removed after the system restarts.
Adding --permanent ensures that the rule remains in place even after a system reboot. Next, you need to reload FirewallD to apply the changes. To reload FirewallD, run:
firewall-cmd --reload
After adding the rules, you can run the following command to verify if they have been successfully applied:
firewall-cmd --permanent --zone=public --list-ports
To remove previously added rules, run:
firewall-cmd --permanent --zone=public --remove-port=80/tcp
firewall-cmd --permanent --zone=public --remove-port=443/tcp
After that, reload FirewallD again for the changes to take effect:
firewall-cmd --reload
Hopefully, with this guide on opening ports 80 and 443 in FirewallD, you now understand the steps clearly and can implement them successfully.