Turn off firewall in RH8.0


 
Thread Tools Search this Thread
Operating Systems Linux Turn off firewall in RH8.0
# 1  
Old 04-04-2005
Turn off firewall in RH8.0

I'm attempting to turn off the firewall (yes, we are in a secure network, as much as that means nowadays), not open to the internet, however, I can't get the firewall to turn off, it won't allow users to ftp to it, or use a terminal emulator to log in, or telnet. And whenever I try to disable the firewall Lokkit it always resets itself to high. Is there someone command line that I can do this? I miss linuxconf, seemed easier to configure the networking using that than this.
# 2  
Old 04-05-2005
As root/root equivalent on your system, type the following:

# chkconfig --list | grep iptables

You'll see something similar to: iptables 0:off 1:off 2:off 3:on 4:on 5:on 6:off

If you see "on" in rows 3, 4, and 5, it means the firewall will be started on system startup. To disable auto startup, type the following:

# chkconfig iptables off

How are you disabling the firewall? You can do so by typing the following:

# service iptables stop

If the "iptables stop" fails, try:

# service ipchains stop

Please let me know if the above doesn't work.

Keith
# 3  
Old 04-27-2005
Hi Keith, that didn't work but I'm beginning to think that the firewall on my computer side isn't the problem, but on the network side may be the problem. Thanks, I learned something new.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Just can't turn off ipv6?

I'm running a Linux OS that uses Debian as it's base. A commercial vpn is installed that uses OpenVPN. For some reason, I can't get ipv6 to tunnel properly .... and Ipleak.net shows that my location is being unmasked by ipv6. I've tried kernel commands at boot, I've tried sysctl.conf commands.... (2 Replies)
Discussion started by: benc
2 Replies

2. Solaris

how to turn on or off FIREWALL in solaris 10

hi, i am an oracle DBA and having problems with the starting of enterprise manager on solaris. one of solution is to check whether firewall is on or off so i am new bie in solaris so kindly tell me how to check the firewall in solaris 10 and how to stop it and what are effects of such... (2 Replies)
Discussion started by: janakors
2 Replies

3. Red Hat

reading an AIX cpio tape on RH8

Thanks for any insights you might have... I have a RH8 system setup with a DAT drive. I have a AIX tape that was made using cpio. Bottom line is I need to read the AIX tape into the RH box. I was able to do cpio -itv --no-absolute-filenames < /dev/st0 and read the table of contents. ... (0 Replies)
Discussion started by: mike114327
0 Replies

4. UNIX for Dummies Questions & Answers

turn off sound

how to disable anoying beep sound??? (4 Replies)
Discussion started by: nnn
4 Replies

5. Linux

RH8 samba won't let users in

when I type smbclient \\\\MYSERVER\\someuser at the prompt, it asks me to log in with the password for that user, and when I put it in, it says NT_USER_LOGIN_FAILURE eveyrtime, while at the linux terminal. When I try to access the server from my windows xp machine it shows up in the workgroup, but... (3 Replies)
Discussion started by: kymberm
3 Replies

6. UNIX for Dummies Questions & Answers

How to turn off duplex

I am using digital Unix and lpd. I have HP 4200n LaserJet TCP printer, but when I use lpr command, it always print duplex. I can turn off duplex feature at the panel of the printer, but then other Windows computer cannot print duplex. How can I set up /etc/printcap file so that it will be... (2 Replies)
Discussion started by: hiepng
2 Replies

7. SuSE

RH8.0 firewall WILL NOT turn off

I have been trying to disable the firewall on a new install of RH8(Psyche). It will NOT stay disabled. I've gone thru system tools, security level and disabled it, and it says YES, like it will save my settings, but when i open it up again, it is always back to HIGH. I also tried using the... (3 Replies)
Discussion started by: kymberm
3 Replies

8. UNIX for Dummies Questions & Answers

mount from unix(3.2. v5.0.5) to Linux rh8

mount -f NFS 128.1.80.1:/usr /mnt (: RPC: Program not registered) don't work :( please help. (1 Reply)
Discussion started by: RoMaGo
1 Replies
Login or Register to Ask a Question