How to enable or disable firewall on Alpine Linux?

王林
Release: 2024-02-21 12:45:34
forward
1075 people have browsed it

如何在 Alpine Linux 上启用或禁用防火墙?

On Alpine Linux, you can use the iptables tool to configure and manage firewall rules. Here are the basic steps to enable or disable the firewall on Alpine Linux:

  1. Check firewall status:

    sudo iptables -L
    Copy after login
  2. If there are rules shown in the output (for example, there are some INPUT, OUTPUT or FORWARD rules), it means that the firewall is enabled. If the output is empty, the firewall is currently disabled.
  3. Enable firewall:

    sudo iptables -P INPUT ACCEPT
    sudo iptables -P OUTPUT ACCEPT
    sudo iptables -P FORWARD ACCEPT
    Copy after login
    Copy after login

    The above command will set the default policy to accept (ACCEPT), which means all traffic will be accepted.

  4. Disable firewall:

    sudo iptables -P INPUT ACCEPT
    sudo iptables -P OUTPUT ACCEPT
    sudo iptables -P FORWARD ACCEPT
    Copy after login
    Copy after login

    The above command will set the default policy to accept (ACCEPT), which means all traffic will be accepted.

  5. If you wish to completely disable the iptables service and stop the firewall, please run the following command:

    sudo rc-service iptables stop
    sudo rc-update del iptables
    Copy after login

Please note that the above command will immediately change the firewall status in the current session. If you want the firewall to be automatically enabled or disabled on system startup, adjust the configuration accordingly. The specific configuration method may vary depending on the version and environment used. You can refer to the official documentation of Alpine Linux or related resources for more information.

The above is the detailed content of How to enable or disable firewall on Alpine Linux?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:mryunwei.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!