Background:
ssh (client) allows the re-use of active connections via multiplexing ControlPaths ...
Host *
ControlMaster auto
ControlPath /home/username/.ssh/%r@%h:%p
the TL;DR is the first connection will authenticate like any other, subsequent connections will use the controlpath and not perform any additional authentication.
Now my question; is it possible to limit the use of such connections server side ? in the sshd_config.
MaxSessions does not work despite setting to 1 I can connect to a host as many additional times as wanted via the same original connection.
Setting to 0 of course just disabled remote logins entirely.