Not able to cli login from rhel 9. ssh-rsa is deprecated

I am using confd 7.1. when i am trying to cli from rhel9 system i am getting below error.
Unable to negotiate with 10.179.2.211 port 31276: no matching host key type found. Their offer: ssh-rsa.
i believe only ssh-rsa and ssh-dss algorithms are supported and for both i am getting this error. How to fix it?
@cohult could you please help on this ?

ConfD 7.4, released 2020, added “ssh-ed25519”. For ConfD 7.1 you need to accept using ssh-dsa and/or ssh-rsa from your client. Example:

ssh admin@1.2.3.4 -o HostKeyAlgorithms=+ssh-rsa -o PubkeyAcceptedAlgorithms=+ssh-rsa

Or add, for example, the following to your SSH config file, /etc/ssh/ssh_config :

HostKeyAlgorithms = +ssh-rsa
PubkeyAcceptedAlgorithms = +ssh-rsa

Side note, please do not address me for help directly. I do answer a lot of questions in this forum, but it is a community where anyone can help. I will see your question and treat it the same regardless if you address me directly or not.