SSH connection options.
Namespace:
Rebex.Net
Assembly:
Rebex.Networking (in Rebex.Networking.dll)
Syntax
| Visual Basic |
|---|
<FlagsAttribute> _ Public Enumeration SshOptions |
| C# |
|---|
[FlagsAttribute] public enum SshOptions |
Members
| Member name | Description | |
|---|---|---|
| None |
No options.
| |
| DoNotSplitChannelPackets |
Do not split channel data packets unless they are larger than maximum packet size.
| |
| WaitForServerWelcomeMessage |
Wait for server SSH protocol welcome message before sending the client one.
| |
| TryPasswordFirst |
When authenticating using both password and private key, try password authentication first (default is to try the private key first).
| |
| PostponeChannelClose |
Postpone channel close requests (workaround for older versions of ssh.com and Cisco SSH servers).
| |
| EnableSignaturePadding |
Enable padding of RSA signatures used during client key authentication.
| |
| EnsureKeyAcceptable |
Announce public key to the server before performing key authentication.
|