HI
I've a WRT54GK with kamikaze 7.09 as Gateway, of my LAN, I've made rules of forward to NAT the 6667 port of my public IP, to a private IP of the lan, I've lot of NATs. Sometimes the router stop forward the ports, I can connect from outside to the Router, but I can't connect to any port that I have forwarded. The only way to do this, is rebooting the router. I don't know if this is a problem of Kamikaze or why. Maybe is a connection limit of the Router.
This are the rules of forward:
iptables -t nat -A prerouting_wan -p tcp --dport 6667 -j DNAT --to 192.168.1.3:6667
iptables -A forwarding_wan -p tcp --dport 6667 -d 192.168.1.3 -j ACCEPT
iptables -t nat -A prerouting_wan -p tcp --dport 6697 -j DNAT --to 192.168.1.3:6697
iptables -A forwarding_wan -p tcp --dport 6697 -d 192.168.1.3 -j ACCEPT
iptables -t nat -A prerouting_wan -p tcp --dport 10041 -j DNAT --to 192.168.1.3:10041
iptables -A forwarding_wan -p tcp --dport 10041 -d 192.168.1.3 -j ACCEPT
iptables -t nat -A prerouting_wan -p tcp --dport 10042 -j DNAT --to 192.168.1.3:10042
iptables -A forwarding_wan -p tcp --dport 10042 -d 192.168.1.3 -j ACCEPT
iptables -t nat -A prerouting_wan -p tcp --dport 55355 -j DNAT --to 192.168.1.3:22
iptables -A forwarding_wan -p tcp --dport 22 -d 192.168.1.3 -j ACCEPT
I'm using DHCP, to connect to the WAN, not PPOE or PPTP.
Thanks in advance.