class Net::SSH::Proxy::SOCKS5

end

Net::SSH.start(‘host’, ‘user’, :proxy => proxy) do |ssh|
:user => ‘user’, :password => “password”)
proxy = Net::SSH::Proxy::SOCKS5.new(‘proxy.host’, proxy_port,
require ‘net/ssh/proxy/socks5’
pass the instantiated object via the :proxy key to Net::SSH.start:
An implementation of a SOCKS5 proxy. To use it, instantiate it, then

def initialize(proxy_host, proxy_port = 1080, options = {})

identify the username and password with which to authenticate.
Optionally, :user and :password options may be given to
Create a new proxy connection to the given proxy host and port.
def initialize(proxy_host, proxy_port = 1080, options = {})
  @proxy_host = proxy_host
  @proxy_port = proxy_port
  @options = options
end

def negotiate_password(socket)

Simple username/password negotiation with the SOCKS5 server.
def negotiate_password(socket)
  packet = [0x01, options[:user].length, options[:user],
            options[:password].length, options[:password]].pack("CCA*CA*")
  socket.send packet, 0
  version, status = socket.recv(2).unpack("CC")
  if status != SUCCESS
    socket.close
    raise UnauthorizedError, "could not authorize user"
  end
end

def open(host, port, connection_options)

proxy that was requested when the socket factory was instantiated.
Return a new socket connected to the given host and port via the
def open(host, port, connection_options)
  socket = Socket.tcp(proxy_host, proxy_port, nil, nil,
                      connect_timeout: connection_options[:timeout])
  methods = [METHOD_NO_AUTH]
  methods << METHOD_PASSWD if options[:user]
  packet = [VERSION, methods.size, *methods].pack("C*")
  socket.send packet, 0
  version, method = socket.recv(2).unpack("CC")
  if version != VERSION
    socket.close
    raise Net::SSH::Proxy::Error, "invalid SOCKS version (#{version})"
  end
  if method == METHOD_NONE
    socket.close
    raise Net::SSH::Proxy::Error, "no supported authorization methods"
  end
  negotiate_password(socket) if method == METHOD_PASSWD
  packet = [VERSION, CMD_CONNECT, 0].pack("C*")
  if host =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/
    packet << [ATYP_IPV4, $1.to_i, $2.to_i, $3.to_i, $4.to_i].pack("C*")
  else
    packet << [ATYP_DOMAIN, host.length, host].pack("CCA*")
  end
  packet << [port].pack("n")
  socket.send packet, 0
  version, reply, = socket.recv(2).unpack("C*")
  socket.recv(1)
  address_type = socket.recv(1).getbyte(0)
  case address_type
  when 1
    socket.recv(4) # get four bytes for IPv4 address
  when 3
    len = socket.recv(1).getbyte(0)
    hostname = socket.recv(len)
  when 4
    ipv6addr hostname = socket.recv(16)
  else
    socket.close
    raise ConnectError, "Illegal response type"
  end
  portnum = socket.recv(2)
  unless reply == SUCCESS
    socket.close
    raise ConnectError, "#{reply}"
  end
  return socket
end