[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [cobalt-users] shutdown firewall
- Subject: RE: [cobalt-users] shutdown firewall
- From: BSmith@xxxxxxxxxxx
- Date: Wed May 7 10:05:01 2003
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
-----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