I need some help accessing a remote jupyter notebook instance
normally, when I am trying to access a jupyter notebook running on a remote server on my mac, I will write the following in a terminal window to create the tunnel
ssh -NL $local_port_number:localhost:$remote_port_number $my_username@$remote_server
afterwards, I can usually access the jupyter server at http://localhost:local_port_number
how do I do this in putty on windows? I know there is some option in connection>>ssh>>tunnels to do this, but I cannot get the configuration to work so far.