Jim St.Cyr wrote:

> - The ipchains policy is pretty simple:
> ipchains -P forward DENY
> ipchains -A input -j FORWARD -j MASQ -s 192.168.0.0/24 -d 0.0.0.0.0

This is bogus:

1. FORWARD isn't a valid chain.
2. Using multiple -j switches is an error.
3. You're configuring the input chain instead of the forwarding chain.

What you probably want is:

        ipchains -P forward DENY
        ipchains -A forward -s 192.168.0.0/24 -j MASQ

-- 
Glynn Clements <[EMAIL PROTECTED]>

-
To unsubscribe from this list: send the line "unsubscribe linux-net" in
the body of a message to [EMAIL PROTECTED]

Reply via email to