OS-OE Knowledge/Linux-Unix KB

How disable Linux firewall (Revised)

스쳐가는인연 2023. 3. 8. 19:00

Check Status

# systemctl status firewalld

 

Start and Stop
# systemctl start firewalld
# systemctl stop firewalld

 

Enable and Disable
# systemctl disable firewalld
# systemctl enable firewalld

 

 

Legacy - ipchains/iptables

Stop ipchains.
# service ipchains stop

Stop iptables.
# service iptables stop

 

Disable ipchains.
# chkconfig ipchains off


Disable iptables.
# chkconfig iptables off

 

 

 

 

 

반응형