static public Method

Session.new( *args ) { |self| ... }

Create a new SSH session. This method polymorphically accepts a variable number of parameters, as follows:

  • 1 parameter: must be the hostname to connect to.
  • 2 parameters: must be the hostname, and either the port (as an integer) or the username to connect as.
  • 3 parameters: must be the hostname, and either the port (as an integer) and username, or the username and the password.
  • 4 parameters: must be the hostname, port, username, and password.

Any scenario above that omits the username assumes that the USER environment variable is set to the user’s name. Any scenario above that omits the password assumes that the user will log in without a password (ie, using a public key). Any scenario above that omits the port number assumes a port number of 22 (the default for SSH).

Any of the above scenarios may also accept a Hash as the last parameter, specifying a list of additional options to be used to initialize the session. (See Net::SSH::Session.add_options).

Alternatively, named parameters may be used, in which case the first parameter is positional and is always the host to connect to, following which you may specify any of the following named parameters (as symbols):

  • :port
  • :username
  • :password

Any additional parameters are treated as options that configure how the connection behaves.

Allowed options are:

  • :keys (the list of filenames identifying the user’s keys)
  • :host_keys (the list of filenames identifying the host’s keys)
  • :auth_methods (a list of authentication methods to use)
  • :crypto_backend (defaults to :ossl, and specifies the cryptography backend to use)
  • :registry_options (a hash of options to use when creating the registry)
  • :container (the registry to use. If not specified, a new registry will be created)
  • :verbose (how verbose the logging output should be. Defaults to :warn).
  • :log (the name of the file, or the IO object, to which messages will be logged. Defaults to STDERR.)
  • :forward_agent (true or false, whether or not to forward requests for the authentication agent. Defaults to false.)
  • :paranoid (either false, in which case server fingerprints are not verified, true, in which case they are verified and mismatches result in a warning and a prompt, or an object responding to :allow?, which will be invoked and should return true or false for whether or not to allow the connection. Defaults to true.)

Also, any options recognized by Net::SSH::Transport::Session may be given, and will be passed through to initialize the transport session.

If a block is given to this method, then it is called with the new session object. The session object is then closed when the block terminates. If a block is not given, then the session object is returned (and must be closed explicitly).

Source Code

# File net/ssh/session.rb, line 100
def initialize( *args )
  @open = false
  @agent_forwarded = false

  process_arguments( *args )

  @registry.define do |b|
    b.crypto_backend { @crypto_backend }
    b.transport_host { @host }
    b.transport_options { @options }

    b.userauth_keys { @keys }
    b.userauth_host_keys { @host_keys }
    b.userauth_method_order { @auth_methods }

    b.host_key_verifier { @host_key_verifier }

    # Register myself with the registry, so that other services may
    # access me.
    b.session( :pipeline => [] ) { self }

    b.prompter do
      require 'net/ssh/util/prompter'
      Net::SSH::Util::Prompter.new
    end

    b.require 'net/ssh/transport/services', "Net::SSH::Transport"
    b.require 'net/ssh/connection/services', "Net::SSH::Connection"
    b.require 'net/ssh/userauth/services', "Net::SSH::UserAuth"

    b.require 'net/ssh/service/services', "Net::SSH::Service"
  end

  userauth = @registry[:userauth][:driver]
  if userauth.authenticate( "ssh-connection", @username, @password )
    @open = true
    @connection = @registry[:connection][:driver]
    if block_given?
      yield self
      close
    end
  else
    @registry[:transport][:session].close
    raise AuthenticationFailed, @username
  end
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.