View previous topic :: View next topic |
Author |
Message |
FINITE Guru
Joined: 10 May 2002 Posts: 449
|
Posted: Fri May 31, 2002 7:36 pm Post subject: How do I reset iptables? |
|
|
What I mean is, if I have a script loaded for iptables I do I stop the script or reset iptables? |
|
Back to top |
|
|
klieber Bodhisattva
Joined: 17 Apr 2002 Posts: 3657 Location: San Francisco, CA
|
Posted: Fri May 31, 2002 11:02 pm Post subject: Re: How do I reset iptables? |
|
|
FINITE wrote: | What I mean is, if I have a script loaded for iptables I do I stop the script or reset iptables? |
man iptables for more information.
--kurt _________________ The problem with political jokes is that they get elected |
|
Back to top |
|
|
FINITE Guru
Joined: 10 May 2002 Posts: 449
|
Posted: Fri May 31, 2002 11:08 pm Post subject: |
|
|
I do that but when I run iptables -L it still shows "things" happening and after runnign iptables -F I cannot browse the net at all accept for pages stored in cache. Any ideas? I will read the man page too. |
|
Back to top |
|
|
mb Guru
Joined: 25 Apr 2002 Posts: 355 Location: Hessen | .de
|
Posted: Sun Jun 02, 2002 2:15 pm Post subject: |
|
|
do you mean:
Code: |
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
....
|
these are the default chains (INPUT,OUTPUT,FORWARD) and policy settings.... some NAT stuff can only flushed if you call
Code: |
iptables -t nat -F POSTROUTING
|
#mb |
|
Back to top |
|
|
FINITE Guru
Joined: 10 May 2002 Posts: 449
|
Posted: Mon Jun 03, 2002 2:04 am Post subject: |
|
|
Hey thanks. That is exactly what I am talking about. Will try when I get home. |
|
Back to top |
|
|
|