Tuesday, November 11, 2014

firewall - access linksys router admin module remotely if linksys is behind a linux router

My linksys wireless router is behind a Linux router and I would like to access the linksys router's admin module remotely.



How do I configure iptables so I can open the admin module?



iptables -t nat -A PREROUTING -p tcp -i $EXT_IF --dport $PORT -j DNAT --to-destination $IP



Am i missing something?



Thanks in advance!

No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...