The document provides steps to disable the Iptables firewall on CentOS:
1. Save the current firewall settings using the "service iptables save" and "service ip6tables save" commands.
2. Stop the Iptables services using the "service iptables stop" and "service ip6tables stop" commands.
3. Prevent Iptables from starting at boot by using the "chkconfig iptables off" and "chkconfig ip6tables off" commands.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
275 views2 pages
Disable Iptables Firewall CentOS
The document provides steps to disable the Iptables firewall on CentOS:
1. Save the current firewall settings using the "service iptables save" and "service ip6tables save" commands.
2. Stop the Iptables services using the "service iptables stop" and "service ip6tables stop" commands.
3. Prevent Iptables from starting at boot by using the "chkconfig iptables off" and "chkconfig ip6tables off" commands.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2
Disable Iptables Firewall CentOS
Disable Iptables Firewall CentOS
Ada kalanya Iptables Firewall pada sistem operasi UNIX perlu di non-aktifkan (disable) dengan beberapa alasan, salah satunya jika sistem operasi digunakan untuk keperluan testing & development. Pada artikel kali ini menyajikan cara disable Iptables Firewall pada CentOS, dengan tahapan sebagai berikut: Simpan setting Firewall sebelum disable Iptables dengan mengetikkan command: service iptables save [root@rhel6 ~]# service iptables save iptables: Saving firewall rules to /etc/sysconfig/iptables:[ OK ]
service ip6tables save
[root@server5 ~]# service ip6tables save ip6tables: Saving firewall rules to /etc/sysconfig/ip6table[ OK ]
Stop Iptables. Command: service iptables stop
[root@server5 ~]# service iptables stop iptables: Flushing firewall rules: iptables: Setting chains to policy ACCEPT: filter iptables: Unloading modules: [root@server5 ~]# [ [ [ OK ] OK ] OK ]
service ip6tables stop
[root@server5 ~]# service ip6tables stop ip6tables: Flushing firewall rules: ip6tables: Setting chains to policy ACCEPT: filter ip6tables: Unloading modules: [root@server5 ~]# [ [ [ OK ] OK ] OK ]
Disable Start Up Booting Iptables. Command: chkconfig iptables off
[root@server5 ~]# chkconfig iptables off [root@server5 ~]#
chkconfig ip6tables off http://www.linggih.com | Disable Iptables Firewall CentOS 1
Disable Iptables Firewall CentOS
[root@server5 ~]# chkconfig ip6tables off [root@server5 ~]#