|
Doc Text:
|
Deprecated algorithms in *OpenSSH*: RC4, hmac-md5, and hmac-md5-96
With this update, the `arcfour256`, `arcfour128`, `arcfour` ciphers and the `hmac-md5`, `hmac-md5-96` Method Authentication Code (MAC) algorithms are deprecated. Note that this change does not affect any existing server configuration.
The system administrator can enable these deprecated algorithms by editing the `ssh_config` file, for example:
Host legacy
Ciphers arcfour
MACs hmac-md5
To completely restore the deprecated functionality, add the following snippet to the `/etc/ssh/ssh_config` file:
Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,aes192-cbc,aes256-cbc,arcfour,rijndael-cbc@lysator.liu.se
MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-sha2-256,hmac-sha2-512,hmac-ripemd160,hmac-ripemd160@openssh.com,hmac-sha1-96,hmac-md5-96 |