Přejít na soubor
Martin Polden d84665c26c
Merge pull request #162 from Alphakilo/master
Implement `/asn-org` endpoint
2023-05-21 20:26:14 +02:00
.github/workflows build: Merge jobs as data is not shared between them 2021-08-03 23:28:13 +02:00
cmd/echoip feat: Adding test to main.go 2020-12-31 16:30:15 -04:00
html Fixed table width on mobile and dark buttons 2021-01-10 12:50:14 +01:00
http implement `/asn-org` endpoint 2022-09-04 00:06:01 +02:00
iputil Add additional location fields (#84) 2020-05-10 14:23:50 +02:00
useragent return parsed and raw user agent 2019-07-13 22:50:31 +00:00
.dockerignore New template (#121) 2020-12-14 19:02:35 +01:00
.gitignore Download GeoIP databases on startup 2019-12-25 19:41:35 +01:00
Dockerfile build: Bump build image 2021-01-24 15:09:56 +01:00
LICENSE Update copyright year 2020-04-07 17:59:23 +02:00
Makefile build: Build and publish image once 2021-01-24 15:11:44 +01:00
README.md Merge pull request #162 from Alphakilo/master 2023-05-21 20:26:14 +02:00
go.mod mod: Bump github.com/oschwald/geoip2-golang 2021-02-24 20:56:36 +01:00
go.sum mod: Bump github.com/oschwald/geoip2-golang 2021-02-24 20:56:36 +01:00

README.md

echoip

Build Status

A simple service for looking up your IP address. This is the code that powers https://ifconfig.co.

Usage

Just the business, please:

$ curl ifconfig.co
127.0.0.1

$ http ifconfig.co
127.0.0.1

$ wget -qO- ifconfig.co
127.0.0.1

$ fetch -qo- https://ifconfig.co
127.0.0.1

$ bat -print=b ifconfig.co/ip
127.0.0.1

Country and city lookup:

$ curl ifconfig.co/country
Elbonia

$ curl ifconfig.co/country-iso
EB

$ curl ifconfig.co/city
Bornyasherk

$ curl ifconfig.co/asn
AS59795

$ curl ifconfig.co/asn-org
Hosting4Real

As JSON:

$ curl -H 'Accept: application/json' ifconfig.co  # or curl ifconfig.co/json
{
  "city": "Bornyasherk",
  "country": "Elbonia",
  "country_iso": "EB",
  "ip": "127.0.0.1",
  "ip_decimal": 2130706433,
  "asn": "AS59795",
  "asn_org": "Hosting4Real"
}

Port testing:

$ curl ifconfig.co/port/80
{
  "ip": "127.0.0.1",
  "port": 80,
  "reachable": false
}

Pass the appropriate flag (usually -4 and -6) to your client to switch between IPv4 and IPv6 lookup.

Features

  • Easy to remember domain name
  • Fast
  • Supports IPv6
  • Supports HTTPS
  • Supports common command-line clients (e.g. curl, httpie, ht, wget and fetch)
  • JSON output
  • ASN, country and city lookup using the MaxMind GeoIP database
  • Port testing
  • All endpoints (except /port) can return information about a custom IP address specified via ?ip= query parameter
  • Open source under the BSD 3-Clause license

Why?

  • To scratch an itch
  • An excuse to use Go for something
  • Faster than ifconfig.me and has IPv6 support

Building

Compiling requires the Golang compiler to be installed. This package can be installed with:

go install github.com/mpolden/echoip/...@latest

For more information on building a Go project, see the official Go documentation.

Docker image

A Docker image is available on Docker Hub, which can be downloaded with:

docker pull mpolden/echoip

GeoIP/GeoLite Database (MaxMind)

To utilise MaxMind GeoIP/GeoLite database to enhance the information provided to end users, you can download the relevant binary databases (.mmdb format) directly from MaxMind using the above links.

Please Note: This has only been tested using the free, GeoLite database.

Usage

$ echoip -h
Usage of echoip:
  -C int
    	Size of response cache. Set to 0 to disable
  -H value
    	Header to trust for remote IP, if present (e.g. X-Real-IP)
  -a string
    	Path to GeoIP ASN database
  -c string
    	Path to GeoIP city database
  -f string
    	Path to GeoIP country database
  -l string
    	Listening address (default ":8080")
  -p	Enable port lookup
  -r	Perform reverse hostname lookups
  -t string
    	Path to template directory (default "html")