Using SSH (DH Group Exchange SHA256) with RSA authentication keys.
Since the initial handshake uses asymmetric algorithms (RSA, Diffie-Hellman) to handle authentication and setup of a shared secret, what is the relationship between these sshd settings:
- Max Group Size for Diffie-Hellman group key exchange
- Minimum group size for Diffie-Hellman group key exchange
- Normal Group size for Diffie-Hellman group key exchange
and
- the size of the RSA key?
For example, is the min/max/normal used to limit the acceptable key size ?
or are these completely different concepts?
EDIT
I do not believe this is the same question. Specifically speaking, this is not about RSA key exchange vs D-H key exchange and their key length relationship; as described in the linked question/answer.
Rather, this is in regard to RSA authentication option of SSH - used in conjunction with D-H. This is the RSA used to "sign" the D-H parameters going back and forth within the protocol. (It is also an alternative to SSH passwords).
Another way to phrase the question - are the min/max/normal groups specifically only for the DH parameters and have no relation to the RSA signing of the D-H parameters?