On Sun, 2026/03/29 05:45:08PM -0700, Gary Hook <
gary....@gmail.com> wrote:
| Obviously this is an SSH error but I can't figure out how to fix it?
From the image you included, I read that it's referrring to
the URL failing, likely because the windows client is not
allowed to connect to port 443 on 172.20.2.202
You could test this from a windows cmd window with
curl -v
https://172.20.2.202
On your ubunto server at 172.20.2.202 you could look and
see what is listening on port 443 (the https port) with
sudo lsof -i :443 | grep LISTEN
I suspect that you either have nothing listening, or you
have a firewall enabled on your ubuntu server that is
blocking the connections. I suspect the former.
Hope that helps
John