Differences
This shows you the differences between the selected revisions of the page.
2012-01-04 | 2012-01-04 | ||
int port, sorting properties (martin) | new options and addrawsettings (martin) | ||
Line 17: | Line 17: | ||
===== Properties ===== | ===== Properties ===== | ||
^ Name ^ Description ^ | ^ Name ^ Description ^ | ||
- | | string HostKey | [[ssh#verifying_the_host_key|Host key]] of the SSH server. Mandatory for SFTP/SCP protocol. | | + | | FtpMode FtpMode | FTP mode. Possible values are ''FtpMode.Passive'' (default) and ''FtpMode.Active''. | |
+ | | FtpSecure FtpSecure | [[ftps|FTPS]] mode. Possible values are ''FtpSecure.None'' (default), ''FtpSecure.Implicit'', ''FtpSecure.ExplicitSsl'' and ''FtpSecure.ExplicitTls''. | | ||
+ | (default), ''FtpSecure.Implicit'', ''FtpSecure.ExplicitSsl'' and ''FtpSecure.ExplicitTls''. | | ||
| string HostName | Name of the host to connect to. Mandatory property. | | | string HostName | Name of the host to connect to. Mandatory property. | | ||
| string Password | Password for authentication. | | | string Password | Password for authentication. | | ||
| int PortNumber | Port number to connect to. Keep default ''0'' to use the default port for the protocol. | | | int PortNumber | Port number to connect to. Keep default ''0'' to use the default port for the protocol. | | ||
- | | SessionProtocols Protocol | Protocol to use for the session. Possible values are ''SessionProtocols.Sftp'' (default), ''SessionProtocols.Scp'' and ''SessionProtocols.Ftp''. | | + | | SessionProtocols Protocol | Protocol to use for the session. Possible values are ''Protocol.Sftp'' (default), ''Protocol.Scp'' and ''Protocol.Ftp''. | |
- | | string UserName | Username for authentication. Mandatory property. | | + | | string SshHostKey | [[ssh#verifying_the_host_key|Host key]] of the SSH server. Mandatory for SFTP/SCP protocol. | |
+ | | string SshPrivateKey | Full path to private key file. The key has to be passphrase-less or [[ui_pageant|Pageant]]) has to be running with the key loaded (''SshPrivateKey'' then server only to select, what private key Pageant should use, in case more are loaded). | | ||
+ | | string SslSertificate | [[ftps#certificate|SSL/TLS certificate]] to be automatically accepted (useful for certificates signed by untrusted authority). | | ||
+ | |||
+ | ===== Methods ===== | ||
+ | ^ Name ^ Description ^ | ||
+ | | void AddRawSettings(string setting, string value) | Allows configuring any session settings using raw format as in an INI file. E.g. to enable SSH compression and agent forwarding use ''%%AddRawSettings("Compression", "1")%%'' and ''%%AddRawSettings("AgentFwd", "1")%%''. | | ||
===== Remarks ===== | ===== Remarks ===== | ||
Line 33: | Line 41: | ||
* The server does not require password. | * The server does not require password. | ||
- | For SSH (SFTP/SCP) session you need to fill in the ''HostKey'' to verify the expected [[ssh#verifying_the_host_key|server host key]]. | + | For SSH (SFTP/SCP) session you need to fill in the ''SshHostKey'' to verify the expected [[ssh#verifying_the_host_key|server host key]]. |
~~NOTOC~~ | ~~NOTOC~~ | ||