# File lib/blimpy/box.rb, line 200
    def ssh_into(*args)
      # Support using #ssh_into within our own code as well to pass arguments
      # to the ssh(1) binary
      if args.empty?
        args = ARGV[2 .. -1]
      end
      run_command('ssh', '-o', 'PasswordAuthentication=no',
                  '-o', 'StrictHostKeyChecking=no',
                  '-l', username, dns, *args)
    end