Sha256: ff3e44e7f9077eeec5917fdda63751344b6cc007f867c0b371497fdb9a3313f8

Contents?: true

Size: 1.64 KB

Versions: 21

Compression:

Stored size: 1.64 KB

Contents

require 'uri'
require 'net/ssh/proxy/command'

module Net; module SSH; module Proxy

  # An implementation of a jump proxy. To use it, instantiate it,
  # then pass the instantiated object via the :proxy key to
  # Net::SSH.start:
  #
  #   require 'net/ssh/proxy/jump'
  #
  #   proxy = Net::SSH::Proxy::Jump.new('user@proxy')
  #   Net::SSH.start('host', 'user', :proxy => proxy) do |ssh|
  #     ...
  #   end
  class Jump < Command

    # The jump proxies
    attr_reader :jump_proxies

    # Create a new socket factory that tunnels via multiple jump proxes as
    # [user@]host[:port].
    def initialize(jump_proxies)
      @jump_proxies = jump_proxies
    end

    # Return a new socket connected to the given host and port via the jump
    # proxy that was requested when the socket factory was instantiated.
    def open(host, port, connection_options = nil)
      build_proxy_command_equivalent(connection_options)
      super
    end

    # We cannot build the ProxyCommand template until we know if the :config
    # option was specified during `Net::SSH.start`.
    def build_proxy_command_equivalent(connection_options = nil)
      first_jump, extra_jumps = jump_proxies.split(",", 2)
      config = connection_options && connection_options[:config]
      uri = URI.parse("ssh://#{first_jump}")

      template = "ssh"
      template << " -l #{uri.user}"    if uri.user
      template << " -p #{uri.port}"    if uri.port
      template << " -J #{extra_jumps}" if extra_jumps
      template << " -F #{config}" if config != true && config
      template << " -W %h:%p "
      template << uri.host

      @command_line_template = template
    end
  end

end; end; end

Version data entries

21 entries across 18 versions & 3 rubygems

Version Path
vagrant-unbundled-2.2.7.0 vendor/bundle/ruby/2.4.0/gems/net-ssh-4.1.0/lib/net/ssh/proxy/jump.rb
vagrant-unbundled-2.1.2.0 vendor/bundle/ruby/2.3.0/gems/net-ssh-4.2.0/lib/net/ssh/proxy/jump.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/net-ssh-4.2.0/lib/net/ssh/proxy/jump.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/net-ssh-4.2.0/lib/net/ssh/proxy/jump.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/net-ssh-4.2.0/lib/net/ssh/proxy/jump.rb
vagrant-unbundled-2.1.1.0 vendor/bundle/ruby/2.5.0/gems/net-ssh-4.2.0/lib/net/ssh/proxy/jump.rb
vagrant-unbundled-2.0.4.0 vendor/bundle/ruby/2.5.0/gems/net-ssh-4.2.0/lib/net/ssh/proxy/jump.rb
vagrant-unbundled-2.0.3.0 vendor/bundle/ruby/2.5.0/gems/net-ssh-4.2.0/lib/net/ssh/proxy/jump.rb
net-ssh-5.0.0.beta1 lib/net/ssh/proxy/jump.rb
vagrant-unbundled-2.0.2.0 vendor/bundle/ruby/2.4.0/gems/net-ssh-4.1.0/lib/net/ssh/proxy/jump.rb
vagrant-unbundled-2.0.2.0 vendor/bundle/ruby/2.5.0/gems/net-ssh-4.2.0/lib/net/ssh/proxy/jump.rb
vagrant-unbundled-2.0.1.0 vendor/bundle/ruby/2.4.0/gems/net-ssh-4.1.0/lib/net/ssh/proxy/jump.rb
vagrant-unbundled-2.0.0.1 vendor/bundle/ruby/2.4.0/gems/net-ssh-4.1.0/lib/net/ssh/proxy/jump.rb
net-ssh-4.2.0 lib/net/ssh/proxy/jump.rb
vagrant-unbundled-1.9.8.1 vendor/bundle/ruby/2.4.0/gems/net-ssh-4.1.0/lib/net/ssh/proxy/jump.rb
vagrant-unbundled-1.9.7.1 vendor/bundle/ruby/2.4.0/gems/net-ssh-4.1.0/lib/net/ssh/proxy/jump.rb
net-ssh-4.2.0.rc2 lib/net/ssh/proxy/jump.rb
net-ssh-4.2.0.rc1 lib/net/ssh/proxy/jump.rb
vagrant-unbundled-1.9.5.1 vendor/bundle/ruby/2.4.0/gems/net-ssh-4.1.0/lib/net/ssh/proxy/jump.rb
net-ssh-4.1.0 lib/net/ssh/proxy/jump.rb