Hello, today i wanted to take a look at freenet but when i started it, it didn't get any data from the freenet network.
My freenet computer is behind a router that has a firewall. I configured it like the FAQ said, but still no sucess. Here is my network configuration: router local IP = 192.168.100.10 router network device to the internet = ppp0 router network device to the local net = eth0 freenet computer IP in my local net = 192.168.100.8 freenet port number = 23030 Normally i get a dynmic ip address, but i solved that by manually giving the current internet ip of my router to the freenet programm at start time. Those are the iptables firewall rules i used for accesing freenet: iptables -A FORWARD -j ACCEPT -o ppp0 -p tcp \ -s 192.168.100.8 --sport 1024: --dport 23030 -m state --state NEW,ESTABLISHED,RELATED iptables -A FORWARD -j ACCEPT -i ppp0 -p tcp \ --sport 23030 -d 192.168.100.8 -m state --state ESTABLISHED,RELATED iptables -t nat -A PREROUTING -i ppp0 -p tcp --dport 23020 -j DNAT --to-dest 192.168.100.8 Everything else is closed (typicall services like http, smp etc. is allowed of course). Because the FAQ speaks only about TCP the UDP protocoll is not alloed on this port number 23030. I also tried it by adding the following rules to the ones above: iptables -A FORWARD -j ACCEPT -i ppp0 -p tcp \ --dport 23030 -m state --state NEW,ESTABLISHED,RELATED iptables -A FORWARD -j ACCEPT -o ppp0 -p tcp \ --sport 23030 -m state --state ESTABLISHED,RELATED Can someone tell me what is wrong with that? Where is the mistake in the firewall rules? Best Regards, Oliver C. _______________________________________________ Support mailing list [EMAIL PROTECTED] http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support