On Fri, June 23, 2006 12:04 pm, Arnau Bria wrote: > > Well, so I set next rule in my firewall: > -A INPUT -d 193.146.196.198 -i eth0 -p tcp -m tcp --dport 111 -j ACCEPT > -A INPUT -d 193.146.196.198 -i eth0 -p tcp -m tcp --dport 111 -j LOG > --log-prefix "NFS (tcp) Input: " --log-level 7 -A INPUT -d > 193.146.196.198 -i eth0 -p udp -m udp --dport 111 -j LOG --log-prefix > "NFS (udp) Input: " --log-level 7 -A INPUT -d 193.146.196.198 -i eth0 > -p udp -m udp --dport 111 -j ACCEPT
My first guess is that you have another FW rule which matches those packets and drops them before they meet the rule you mention. You could try: -D INPUT -d 193.146.196.198 -i eth0 -p tcp -m tcp --dport 111 -j ACCEPT -I INPUT -d 193.146.196.198 -i eth0 -p tcp -m tcp --dport 111 -j ACCEPT (drop the rule and insert it on top of all other) -- Best regards, Daniel -- gentoo-user@gentoo.org mailing list