Dear JD,

On 14/05/11 06:36 -0700, JD wrote:
>On my F14, I am running a firewall that accepts specific connection
>on specific ports from some machines on the LAN.
>
>However, for one machine I made a general rule to accept all connections:
>
>-A INPUT -s 192.168.1.60 -j ACCEPT

The -A means *append*.  It is added to the INPUT chain *after* all the
other rules.  If any rule has previously rejected the connection,
adding further rules afterwards will not help.

I would *insert* the rule at the beginning of the chain with a command
like this:

iptables -I INPUT -s 192.168.1.60 -j ACCEPT
-- 
Nick Urbanik             http://nicku.org           ni...@nicku.org
GPG: 7FFA CDC7 5A77 0558 DC7A 790A 16DF EC5B BB9D 2C24 ID: BB9D2C24
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines

Reply via email to