Translations:Transferring data/23/fr: Difference between revisions

From Alliance Doc
Jump to navigation Jump to search
(Created page with "<source lang="console"> [name@server]$ sftp USERNAME@ADDRESS The authenticity of host 'ADDRESS (###.###.###.##)' can't be established. RSA key fingerprint is ##:##:##:##:##:##...")
 
No edit summary
 
Line 9: Line 9:
sftp>
sftp>
</source>
</source>
or using an [[SSH Keys|SSH Key]] for authentication using the <code>-i</code> option
L'authentification avec l'option  <code>-i</code> peut se faire en utilisant une [https://docs.computecanada.ca/wiki/SSH_Keys/fr clé SSH].
<source lang="console">
<source lang="console">
[name@server]$ sftp -i /home/name/.ssh/id_rsa USERNAME@ADDRESS
[name@server]$ sftp -i /home/name/.ssh/id_rsa USERNAME@ADDRESS

Latest revision as of 20:31, 28 August 2017

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Transferring data)
<source lang="console">
[name@server]$ sftp USERNAME@ADDRESS
The authenticity of host 'ADDRESS (###.###.###.##)' can't be established.
RSA key fingerprint is ##:##:##:##:##:##:##:##:##:##:##:##:##:##:##:##.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'ADDRESS,###.###.###.##' (RSA) to the list of known hosts.
USERNAME@ADDRESS's password:
Connected to ADDRESS.
sftp>
</source>
or using an [[SSH Keys|SSH Key]] for authentication using the <code>-i</code> option
<source lang="console">
[name@server]$ sftp -i /home/name/.ssh/id_rsa USERNAME@ADDRESS
Connected to ADDRESS.
sftp>
</source>
[name@server]$ sftp USERNAME@ADDRESS
The authenticity of host 'ADDRESS (###.###.###.##)' can't be established.
RSA key fingerprint is ##:##:##:##:##:##:##:##:##:##:##:##:##:##:##:##.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'ADDRESS,###.###.###.##' (RSA) to the list of known hosts.
USERNAME@ADDRESS's password:
Connected to ADDRESS.
sftp>

L'authentification avec l'option -i peut se faire en utilisant une clé SSH.

[name@server]$ sftp -i /home/name/.ssh/id_rsa USERNAME@ADDRESS
Connected to ADDRESS.
sftp>