dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / SshOptions Class / SshOptions Constructor / SshOptions Constructor(String,Int32,String,String,String,String,String,SshAuthenticationType,String,Boolean)
Name or ip address of SSH server.
Number of port on SSH server to connect.
User id on SSH server.
User password on SSH server.
List of ciphers that client agrees to use.
Location of the private key to use.
Passphrase for the client key.
Client authentication methods.
The location of the public key on the client side to verify the server host key during establishing connection.
A boolean value, indicating whether the host key is verified during establishing connection.

In This Topic
    SshOptions Constructor(String,Int32,String,String,String,String,String,SshAuthenticationType,String,Boolean)
    In This Topic
    Initializes a new instance of the SshOptions class and initializes its properties.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal host As String, _
       ByVal port As Integer, _
       ByVal user As String, _
       ByVal password As String, _
       ByVal cipherList As String, _
       ByVal privateKey As String, _
       ByVal passphrase As String, _
       ByVal authenticationType As SshAuthenticationType, _
       ByVal hostKeys As String, _
       ByVal strictHostKeyChecking As Boolean _
    )

    Parameters

    host
    Name or ip address of SSH server.
    port
    Number of port on SSH server to connect.
    user
    User id on SSH server.
    password
    User password on SSH server.
    cipherList
    List of ciphers that client agrees to use.
    privateKey
    Location of the private key to use.
    passphrase
    Passphrase for the client key.
    authenticationType
    Client authentication methods.
    hostKeys
    The location of the public key on the client side to verify the server host key during establishing connection.
    strictHostKeyChecking
    A boolean value, indicating whether the host key is verified during establishing connection.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also