lookuptable

Enumerates the contents of a lookup table. The contents of the lookup table created based on the database in the web console, geoip lookup table, and lookup using the memlookup command cannot be enumerated.

You can add a file-based lookup table in "QUERY > Lookup" (ENT, STD).

Syntax

lookuptable LOOKUP_TABLE [OPTIONS]
Required Parameter
LOOKUP_TABLE
Lookup table name to enumerate.
Optional Parameter
limit=INT
Maximum number of records to load (default: unlimited).
offset=INT
Number of records to skip (default: 0).
FIELD, ...
Field names, separated by a comma(,).

Usage

  1. Enumerate all fields of the lookup table country_code

    lookuptable country_code
    
  2. Enumerate only 30 records of code fields in the lookup table country_code

    lookuptable country_code limit=30 code
    
  3. Enumerate country and population fields in the lookup table country_code

    lookuptable country_code country, population