Remote Host Tools (rht)
Download the binary for your desktop and start it - you will now be running an HTTP server on localhost port 12345.
Now, connect to another host and open a browser remotely:
```sh
desktop$ ssh server -R 12345:127.0.0.1:12345
server$ rhc open https://www.example.com
server$ BROWSER="rhc open" xdg-open https://www.example.com
desktop$ ssh server -R 12345:127.0.0.1:12345 -t BROWSER="rhc open" bash ```