Hi !
I've already found some Posts here with a similar problem, where Portforwarding stopped working after a while.
But in my Configuration the Portforwarding won't work at all.
Never got a connection from WAN to the Cam Server
Here's my Setup :
ASUS - WL500gP
Kamikaze 7.09 (no XWRT)
Behind that Router i have a CameraServer(192.168.101.150) which is accessible on Port 81.
In Addition to that the Router connects via OpenVPN to a Server in the HQ and i have eth0.0 & tap0 bridged in br-lan.
(might this be the problem?)
So here's what i changed in my config files :
in /etc/firewall.user
iptables -t nat -A PREROUTING -i wan -p tcp --dport 81 -j DNAT --to 192.168.101.150
iptables -A FORWARD -i wan -p tcp --dport 81 -d 192.168.101.150 -j ACCEPT
- i also tried with 192.168.101.150:81 at the end - no difference
in /etc/config/firewall
forward:dport=81:192.168.101.150:81
~# iptables -L shows :
Chain FORWARD (policy DROP)
target prot opt source destination
DROP all -- anywhere anywhere state INVALID
TCPMSS tcp -- anywhere anywhere tcp flags:SYN,RST/SYN TCPMSS clamp to PMTU
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
forwarding_rule all -- anywhere anywhere
forwarding_wan all -- anywhere anywhere
ACCEPT all -- anywhere anywhere
ACCEPT all -- anywhere anywhere
ACCEPT tcp -- anywhere 192.168.101.150 tcp dpt:81
.
.
.
Chain forwarding_wan (1 references)
target prot opt source destination
ACCEPT tcp -- anywhere 192.168.101.150 tcp dpt:81
ACCEPT udp -- anywhere 192.168.101.150 udp dpt:81
any hints in this ?
Manji