본문 바로가기
OS-OE Knowledge/Linux-Unix KB

How disable Linux firewall (Revised)

by 스쳐가는인연 2023. 3. 8.

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

 

 

 

 

 

반응형