SSH Protocol Version 1

SSH Protocol Version 1 Session Key Retrieval

Disable compatibility with version 1 of the protocol

can any one advice in this regard and how can I Disable compatibility with version 1 of the protocol

Pls advice ..

Edit /etc/ssh/sshd_config and /etc/ssh/ssh_config

change Protocol = 2

As Nevyn showed, if you set "Protocol = 2" in the /etc/ssh/sshd_config, your server will only support clients connecting using protocol 2. This is probably what you want.

If you set "Protocol = 2" in the /etc/ssh/ssh_config, then the ssh client on your box will only be able to connect to remote servers using protocol 2. If on the off chance you try to connect to a box that only supports protocol 1, your client wouldn't be able to connect. For that reason alone, I don't set the protocol version here.