Difference between revisions of "Shut down your firewall"
From Linuxintro
imported>ThorstenStaerk (Created page with "How you shut down your firewall depends on your distribution, so, find out your distribution and proceed accordingly. = SUSE = == shut down == rcSuSEfirewall2 stop...") |
imported>ThorstenStaerk |
||
(One intermediate revision by the same user not shown) | |||
Line 6: | Line 6: | ||
rcSuSEfirewall2 stop | rcSuSEfirewall2 stop | ||
− | == | + | == check == |
rcSuSEfirewall2 status | rcSuSEfirewall2 status | ||
− | [[ | + | = Generic = |
+ | |||
+ | = stop your firewall = | ||
+ | To stop your firewall issue | ||
+ | iptables --flush | ||
+ | |||
+ | = check = | ||
+ | To check if your firewall is running, use the [[command]] <code>iptables --list</code>. Here's an output that means your firewall is turned off: | ||
+ | iptables --list | ||
+ | Chain INPUT (policy ACCEPT) | ||
+ | target prot opt source destination | ||
+ | |||
+ | Chain FORWARD (policy ACCEPT) | ||
+ | target prot opt source destination | ||
+ | |||
+ | Chain OUTPUT (policy ACCEPT) | ||
+ | target prot opt source destination | ||
+ | If you look at it, you will find that for all incoming [http://en.wikipedia.org/wiki/Network_packet packets] ("Chain INPUT" entry above), the policy is set to ACCEPT with no exceptions. The same is true for FORWARD and OUTPUT. | ||
+ | |||
[[Category:Guides]] | [[Category:Guides]] |
Latest revision as of 06:10, 19 June 2012
How you shut down your firewall depends on your distribution, so, find out your distribution and proceed accordingly.
SUSE
shut down
rcSuSEfirewall2 stop
check
rcSuSEfirewall2 status
Generic
stop your firewall
To stop your firewall issue
iptables --flush
check
To check if your firewall is running, use the command iptables --list
. Here's an output that means your firewall is turned off:
iptables --list Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination
If you look at it, you will find that for all incoming packets ("Chain INPUT" entry above), the policy is set to ACCEPT with no exceptions. The same is true for FORWARD and OUTPUT.