> Thanks Daniel,
>
> That's been a big help - a better handle on it gained.
>
> We have two MASQUERADE entries.
>
> Now, why doesn't  #iptables -F  clear them out?!

it clears out the filter table by default.

> or?
>
> [EMAIL PROTECTED] root]# iptables -F POSTROUTING
> iptables: No chain/target/match by that name

nearly.  Try:
iptables -F -t nat
to clear all chains on the iptables NAT table
iptables -F POSTROUTING -t nat
to just clear the POSTROUTING chain

or
service iptables stop
(the RH script, which resets all policies to accept and
deletes all rules in all chains in all tables)

Regards

Daniel

Reply via email to