Disable a Firewall In Red Hat Enterprise Linux

by Vivek Gite [Last updated: October 25, 2008]

Q. How do I disable a firewall in RedHat Enterprise Linux / RHEL?

A. A Linux firewall is an integrated collection of security measures designed to prevent unauthorized electronic access to a networked computer system. Red hat Linux kernel has firewall called iptables. It can be disabled by typing following command (login as root user):
# service iptables stop
To turn it on type the following command:
# service iptables start
To disable firewall permanently, enter:
# chkconfig iptables off
# service iptables stop

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 0 comments… add one now }

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Tagged as: , , , , , , , , ,

Previous post: Linux Optimize Directories ( File Access Time ) in ext3 Filesystem

Next post: RedHat Linux: Apply Package Updates from the Red Hat Network ( RHN )