SSH connection refused

Hi @g.skupien

Thank you very much for your reply!
Now it works :slight_smile: great!

I overread this in the documentation :stuck_out_tongue:

But one more thing, you need to set this
net.ipv4.ip_nonlocal_bind=1

Binding to Non-local IP addresses in Linux permanently

Create the file:
sudo vi /etc/sysctl.d/99-custom.conf

Add the following lines:

## allow System Services to start and bind to non local IP ##
net.ipv4.ip_nonlocal_bind=1

Apply it:
sudo sysctl -f /etc/sysctl.d/99-custom.conf

Copied from:
https://www.cyberciti.biz/faq/linux-bind-ip-that-doesnt-exist-with-net-ipv4-ip_nonlocal_bind/

Maybe the documentation should be expanded with this…

Kind regards
Kevin