TShopping

標題: CentOS 8 如何關閉firewalld 並打開iptables [打印本頁]

作者: woff    時間: 2022-12-11 18:58
標題: CentOS 8 如何關閉firewalld 並打開iptables
停止及關閉firewalld
1. To begin with, you should disable Firewalld and make sure it does not start at boot again.

  1. systemctl stop firewalld
  2. systemctl disable firewalld
複製代碼

2. Masking the firewalld service creates a symlink from /etc/systemd/system/firewalld.service to /dev/null thus disabling the firewalld service.


  1. systemctl mask firewalld
複製代碼

Created symlink from /etc/systemd/system/firewalld.service to /dev/null.

安裝iptables
Install and configure iptables
1. To enable iptables, first we have to install the “iptables-services” package.

  1. yum install iptables-services
複製代碼

2. Start and enable the iptables service to be enabled at boot automatically.

  1. systemctl start iptables
  2. systemctl enable iptables
複製代碼

Check to see if any rules are left behind from firewalld. By default a fresh intall of iptables would have iptables rules as shown below.

  1. iptables -L
  2. Chain INPUT (policy ACCEPT)
  3. target     prot opt source               destination         
  4. ACCEPT     all  --  anywhere             anywhere             state RELATED,ESTABLISHED
  5. ACCEPT     icmp --  anywhere             anywhere            
  6. ACCEPT     all  --  anywhere             anywhere            
  7. ACCEPT     tcp  --  anywhere             anywhere             state NEW tcp dpt:ssh
  8. REJECT     all  --  anywhere             anywhere             reject-with icmp-host-prohibited

  9. Chain FORWARD (policy ACCEPT)
  10. target     prot opt source               destination         
  11. REJECT     all  --  anywhere             anywhere             reject-with icmp-host-prohibited

  12. Chain OUTPUT (policy ACCEPT)
  13. target     prot opt source               destination         
複製代碼

清除規則
Clearing leftover firewalld rules
1. If needed you can clear iptables rules left over from firewalld with the following commands.

  1. iptables -t nat -F
  2. iptables -t mangle -F
  3. iptables -F
  4. iptables -X
  5. service iptables save
複製代碼

2. Post running the above commands you would get an empty iptable rules as shown below.
  1. iptables -L
  2. Chain INPUT (policy ACCEPT)
  3. target     prot opt source               destination         

  4. Chain FORWARD (policy ACCEPT)
  5. target     prot opt source               destination         

  6. Chain OUTPUT (policy ACCEPT)
  7. target     prot opt source               destination         
複製代碼



參考文章
https://www.thegeekdiary.com/how ... s-in-centos-rhel-7/





歡迎光臨 TShopping (http://www.tshopping.com.tw/) Powered by Discuz! X3.2