I want to run my sshd server on multiple ports but different domains.
The server should be reachable as following:
ssh -p 12345 example.com
ssh -p 22 git.example.com
I tried to modify /etc/ssh/sshd_config
like this:
Port 12345
ListenAddress 0.0.0.0
ListenAddress git.example.com
But that's not working.