I have established a reverse ssh tunnel into a restricted network to an `aws` server, i.e. to access it, I ssh into the `aws` server and from there I get access to the machine in the restricted network on some custom port.

On this restricted network, there are devices which can be configured through a web browser.

I believe I could do something like `ssh -R 8080:deviceIP:80 user@awsserver:22` to get it forwarded to `aws` machine but then I still can't access it (other than through remote X which is terribly slow). How can I pipe port 80 through to my browser at home?

I've tried the above ssh command and then directed the brower on my home computer to `aws:8080` but that didn't load any page...