Hi @g.skupien
Thank you very much for your reply!
Now it works great!
I overread this in the documentation
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