Query Command
Introduction
The ips
command serves not only as the main entry point to the IPS command-line tool, offering a variety of sub-commands for managing IP database operations but also functions as a query command, providing the capability to retrieve geolocation information for IP addresses.
The query command supports both command-line parameter and pipeline methods for queries, suitable for both IPv4 and IPv6 addresses. It can output custom field information based on user configuration, meeting the demand for personalized information display.
Usage
As a command-line tool, ips
offers intuitive command-line parameter queries and flexible pipeline queries, enabling users to swiftly obtain geolocation information for IP addresses.
Users can also customize the fields included in the query results, as well as the output format and language, to obtain the display that best suits their needs.
Command Syntax
# Command-line parameter queryips <ip or text> [flags]
# Pipeline queryecho <ip or text> | ips [flags]
-i, --file string
:Specifies the path to both IPv4 and IPv6 database files.--format string
:Specifies the format for both IPv4 and IPv6 database files; used in conjunction with--file
. The default is auto-detection.--database-option string
:Specifies options for the database reader. For more information, consult the documentation for the relevant database format or seek professional support.--ipv4-file string
:Specifies the path to the IPv4 database file.--ipv4-format string
:Specifies the format for the IPv4 database file; used in conjunction with--ipv4-file
. The default is auto-detection.--ipv6-file string
:Specifies the path to the IPv6 database file.--ipv6-format string
:Specifies the format for the IPv6 database file; used in conjunction with--ipv6-file
. The default is auto-detection.--hybrid-mode string
: Specifies the operational mode for the Hybrid Reader. Options arecomparison
andaggregation
. For more details, refer to IPS Configuration Documentation.--text-format string
:Specifies the format for text output, supporting%origin
and%values
parameters.--text-values-sep string
:Specifies the separator for values in text output, with the default being a space.-j, --json bool
:Outputs results in JSON format.--json-indent bool
:Outputs results in indented JSON format. For more details, refer to IPS Configuration Documentation。--use-db-fields bool
:Uses field names as they appear in the database, typically used with JSON output. For more details, refer to IPS Configuration Documentation。--lang string
:Sets the language for the output. The default iszh-CN
(Chinese). For more details, refer to IPS Configuration Documentation。-f, --fields string
:Specifies the fields to retrieve from the input file. The default is all fields. For more details, refer to IPS Configuration Documentation。-r, --rewrite-files string
:Specifies a list of files to be rewritten based on the provided configurations. For more details, refer to IPS Configuration Documentation。--loglevel string
:Sets the logging level, a global parameter with possible values oftrace
,debug
,info
,warn
,error
,fatal
, andpanic
, with the default beinginfo
.
Examples
Command-Line Query for IP Address
# Query geolocation information for an IP addressips 8.8.8.8
# Query geolocation information for multiple IP addressesips 8.8.8.8 119.29.29.29
Pipeline Query for IP Address
# Use echo to pass the IP address to the ips commandecho 8.8.8.8 | ips
# Use in combination with commands like cat or digdig +short google.com | ips
Customize Query Fields and Output Format
# Query an IP address, outputting only the country and city fieldsips 8.8.8.8 -f "country,city"
# Customize text output formatips 8.8.8.8 --text-format "%values" --text-values-sep ":" --fields "country,city"
Notes
- If used for the first time without specifying a database file path, the IP database file will be downloaded automatically.
- Regarding the default IP database selection:
- The default IPv4 database is
qqwry.dat
. The QQWry database is chosen due to its continuous updates from the community (thanks to @metowolf). For international users, it is recommended to useGeoLite2-City.mmdb
or a commercial database. - The default IPv6 database is
zxipv6wry.db
. Its smaller size can offer a better initial experience when first using the IPS tool, but the database content is relatively outdated (last updated in July 2021). It is recommended to useGeoLite2-City.mmdb
or a commercial database.
- The default IPv4 database is
- The IP geolocation information for some countries is updated frequently. If this tool is used for commercial projects, it is essential to replace it with a more recent commercial database!