I have the configuration as follows. At my home computer I launch jupyter notebook on port 7000 and set up reverse ssh to my cloud server
ssh -f -N -R 9000:localhost:7000 cloud_user@cloud.hosting.com
I want to access jupyter from my laptop by
http://cloud.hosting.com:9000
But connection refused. Nevertheless, I can do (from the cloud server console)
wget localhost:9000
and it is working. And also: if I ran jupyter on the cloud server (say on port 1234) then http://cloud.hosting.com:1234 is working. What I have to do for accessing home jupyter from the laptop?