Как найти ключевые слова шифра в ssh_config (5)

Я вижу в странице справочника для ssh, что могу найти списки шифров в "ssh_config (5)"

Где я могу найти это?

Контекст: я пытаюсь к ssh \sftp в учетную запись sftp компании, которую они предоставили мне. Что я получаю, назад следующее сообщение:

"Не мог согласовать с портом XXX.XXX.XXX.XXX XX: никакой шифр соответствия не найден. Их предложение: aes256-cbc, 3des-cbc, aes128-cbc"

Я предполагаю, что изменение моего шифра к AES, с 256 CBC, решит мою проблему.

Наилучшие пожелания :)

-1
задан 3 January 2019 в 11:21

1 ответ

Это говорит Вам искать ssh_config страницы, в разделе 5 из руководства онлайн т.е. man 5 ssh_config:

 Ciphers
         Specifies the ciphers allowed for protocol version 2 in order of
         preference.  Multiple ciphers must be comma-separated.  If the
         specified value begins with a ‘+’ character, then the specified
         ciphers will be appended to the default set instead of replacing
         them.

         The supported ciphers are:

               3des-cbc
               aes128-cbc
               aes192-cbc
               aes256-cbc
               aes128-ctr
               aes192-ctr
               aes256-ctr
               aes128-gcm@openssh.com
               aes256-gcm@openssh.com
               arcfour
               arcfour128
               arcfour256
               blowfish-cbc
               cast128-cbc
               chacha20-poly1305@openssh.com

         The default is:

               chacha20-poly1305@openssh.com,
               aes128-ctr,aes192-ctr,aes256-ctr,
               aes128-gcm@openssh.com,aes256-gcm@openssh.com,
               aes128-cbc,aes192-cbc,aes256-cbc,3des-cbc

         The list of available ciphers may also be obtained using the -Q
         option of ssh(1) with an argument of “cipher”.

Как отмечено там, Вы могли также использовать ssh -Q cipher:

$ ssh -Q cipher
3des-cbc
blowfish-cbc
cast128-cbc
arcfour
arcfour128
arcfour256
aes128-cbc
aes192-cbc
aes256-cbc
rijndael-cbc@lysator.liu.se
aes128-ctr
aes192-ctr
aes256-ctr
aes128-gcm@openssh.com
aes256-gcm@openssh.com
chacha20-poly1305@openssh.com
1
ответ дан 26 October 2019 в 16:00

Другие вопросы по тегам:

Похожие вопросы: