Hi all, im behind a iptables firewall and want to be able to accept incomming netmeeting calls. To make things simple I added the following rules:
$IPTABLES -t nat -A PREROUTING -p tcp --dport ! 80 -j DNAT --source 217.229.94.141 --to 192.168.1.3 $IPTABLES -t nat -A PREROUTING -p udp --dport ! 80 -j DNAT --source 217.229.94.141 --to 192.168.1.3 $IPTABLES -A FORWARD -p tcp -d 192.168.1.3 --dport ! 80 -j ACCEPT $IPTABLES -A FORWARD -p udp -d 192.168.1.3 --dport ! 80 -j ACCEPT unluckily, no incomming calls are detected and the other party gets an error. other programms like my local ftp server etc. work fine, this means the rules are correct. can anyone help me please ? thanks, Corin
