[gentoo-user] emerge --sync and iptables

2006-03-18 Thread Dan Sheffner
I'm not sure what I have been doing wrong.  I have a local sync server located at 10.1.10.37 and I'm running iptables on a web server.  What port do I need to open when I run emerge --sync?  I have tried port 873 like below and still no luck.  I do not have a firewall running on the sync server. 

Re: [gentoo-user] emerge --sync and iptables

2006-03-18 Thread Benno Schulenberg
Dan Sheffner wrote: > iptables -A INPUT -i eth0 -p tcp -d $ip --dport 443 -j ACCEPT > iptables -A INPUT -i eth0 -p tcp -s 10.1.10.0/24 -d $ip > --dport 22 -j ACCEPT These two are incoming, so --dport is correct. > iptables -A INPUT -i eth0 -p tcp -s 10.1.10.37 -d $ip > --dport 873 -j ACCEPT R

Re: [gentoo-user] emerge --sync and iptables

2006-03-18 Thread Dan Sheffner
so port 873 is going out? my default policy for OUTPUT is accept with no rules. wich port should I accept as the INPUT? On 3/18/06, Benno Schulenberg <[EMAIL PROTECTED]> wrote: Dan Sheffner wrote:> iptables -A INPUT -i eth0 -p tcp -d $ip --dport 443 -j ACCEPT> iptables -A INPUT -i eth0 -p tcp -s 1