# File lib/fog/libvirt/models/compute/server.rb, line 137
        def ssh(commands)
          requires :public_ip_address, :username

          ssh_options={}
          ssh_options[:password] = password unless password.nil?
          ssh_options[:proxy]= ssh_proxy unless ssh_proxy.nil?

          super(commands, ssh_options)
        end