Работа ключей от конфигурации, но не от ssh-добавляет

от man ftp на моем CentOS

 If auto-login is enabled, ftp will check the  .netrc  (see  below)
              file  in the user’s home directory for an entry describing an account on the remote machine.  If no entry exists, ftp will prompt for the
              remote machine login name (default is the user identity on the local machine), and, if necessary, prompt for a password  and  an  account
              with which to login.

Пример: ~/.netrc

machine ftp.freebsd.org
    login anonymous
    password mynameis@wonderful.com

machine myownmachine
    login useraccount
    password xyz

Больше на .netrc файле в странице справочника:

THE .netrc FILE
       The .netrc file contains login and initialization information used by the auto-login process.  It resides in the  user’s  home  directory.   The
       following tokens are recognized; they may be separated by spaces, tabs, or new-lines:

       machine name
              Identify  a  remote  machine  name.   The auto-login process searches the .netrc file for a machine token that matches the remote machine
              specified on the ftp command line or as an open command argument.  Once a match is made, the  subsequent  .netrc  tokens  are  processed,
              stopping when the end of file is reached or another machine or a default token is encountered.

       default
              This  is  the  same  as machine name except that default matches any name.  There can be only one default token, and it must be after all
              machine tokens.  This is normally used as:

                   default login anonymous password user@site

              thereby giving the user automatic anonymous ftp login to machines not specified in .netrc.  This can be overridden by using the  -n  flag
              to disable auto-login.

       login name
              Identify  a user on the remote machine.  If this token is present, the auto-login process will initiate a login using the specified name.

       password string
              Supply a password.  If this token is present, the auto-login process will supply the specified string if the  remote  server  requires  a
              password as part of the login process.  Note that if this token is present in the .netrc file for any user other than anonymous, ftp will
              abort the auto-login process if the .netrc is readable by anyone besides the user.

       account string
              Supply an additional account password.  If this token is present, the auto-login process will supply the specified string if  the  remote
              server requires an additional account password, or the auto-login process will initiate an ACCT command if it does not.
1
07.01.2013, 12:08
1 ответ

ssh-добавьте попытки добавить ключ к агенту, но в Вашей системе не работает никакой ssh-агент.

ssh имеет два различных режима работы с ключами. Или ssh соединяется с агентом и просит, чтобы агент прошел проверку подлинности, или ssh читает ключ из диска.

Как нет никакого агента, работающего на Вашей системе, которую первый режим приводит к сбою, но вторые работы, потому что нет никакого включенного агента.

Можно временно запустить агент ssh-agent bash. Впоследствии ssh-add должен работать без проблем.

Обычно агент запускается с Вашей настольной среды. Если Вы не используете настольную среду, необходимо удостовериться собой, что агент работает при необходимости в нем.

Если Вы подключены к удаленному хосту ssh. Затем Вы могли бы хотеть передать свой локальный агент удаленному хосту. Использовать ssh -A если, именно это Вы хотите.

1
27.01.2020, 23:54

Теги

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