Changes between Version 10 and Version 11 of help/en/howto/sftp
- Timestamp:
- Jul 21, 2010 9:44:16 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
help/en/howto/sftp
v10 v11 7 7 If you have access to a server using a secure shell ([http://en.wikipedia.org/wiki/Secure_Shell SSH2]), most probably `sftp-server` is also installed and configured and you can connect using [http://en.wikipedia.org/wiki/SSH_file_transfer_protocol SFTP]. 8 8 9 == Interoperability with OpenSSH==9 == OpenSSH Configuration Interoperability == 10 10 11 11 The following configuration options from `~/.ssh/config` are supported for SFTP connections: … … 15 15 16 16 Host keys are checked against and written to `~/ssh/known_hosts` upon approval. 17 18 A [wiki:help/en/howto/bookmarks bookmark] will update its public key authentication setting from the ''IdentityFile'' configuration in `~/.ssh/config`. Also when opening a new [wiki:help/en/howto/connection#Toolbarbutton connection] using ''File → Open Connection…'', ''IdentityFile'' and ''User'' parameters in the OpenSSH user config file are auto completed. 19 20 Example configuration: 21 22 {{{ 23 Host myhostname 24 User myusername 25 IdentityFile ~/.ssh/mykey-rsa 26 }}} 27 28 Contrary to ''OpenSSH'', we do '''not''' use the keys named `~/.ssh/identity`, `~/.ssh/id_rsa` or `~/.ssh/id_dsa` by default. 17 29 18 30 == Advanced Authentication Methods ==