Ok so I'm relatively new to linux, about 2 weeks into it, I got my router setup the way I want it for my personal machine, bit torrent, battlenet. I am able to ssh via WAN to both my linux box and my router, everything is great till I installed apache on my linux box!
LAN it works fine I see my test page @ 192.168.1.10 however via WAN I get a 404 error. I finally fiqured out that the router has a httpd service running, I disabled it (/etc/init.d/httpd disable) and started the script over and even rebooted the router. I'm using updatedd to configure my dyndds account. I know my port 80 is open because I scanned it via an online tool and when I had httpd running router side I can access via WAN (ssh'd into a buddies box typing links http://****.ath.cx/test.htm) on a test page I wrote for it.
I'm using /etc/config/firewall
#Webserver
forward:dport=80:192.168.1.10
I've tried also
accept:proto=tcp dport=80
forward:dport=80:192.168.1.10
and...
forward:proto=tcp dport=80:192.168.1.10
I know it is route side because I hooked up my old dlink router forward port 80 to my linux box running apache and boom WAN working like that. Please, please help me!