[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [cobalt-users] shutdown firewall



-----Original Message-----
From: Rene Mølsted [mailto:molsted@xxxxxxxxxxxx]
Sent: Wednesday, May 07, 2003 12:50 PM
To: cobalt-users@xxxxxxxxxxxxxxx
Subject: [cobalt-users] shutdown firewall


Hi everybody,
how do i shutdown the firewall (ipchains) or check if its running?

Rene

_____________________________________


[root /root]# ipchains --list -n
Chain input (policy ACCEPT):
Chain forward (policy ACCEPT):
Chain output (policy ACCEPT):

That is what an empty one looks like

If you want to turn it off:

ipchains -P input ACCEPT
ipchains -P forward ACCEPT
ipchains -P output ACCEPT
ipchains --flush

I add the -P ACCEPT because should it be "DROP/DENY", you can loose
connectivity to the box.

Thanks,

Brian