# File lib/deltacloud/drivers/condor/ip_agents/confserver.rb, line 34
    def find_ip_by_mac(uuid)
      begin
        @client["/ip/%s/%s" % [@version, uuid]].get(:accept => 'text/plain').body.strip
      rescue RestClient::ResourceNotFound
        '127.0.0.1'
      rescue
        puts 'ERROR: Could not query ConfServer for an IP'
      end
    end