• Stars
    star
    3,945
  • Rank 11,073 (Top 0.3 %)
  • Language
    Go
  • License
    BSD 3-Clause "New...
  • Created almost 12 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

IP address lookup service

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")

More Repositories

1

pysnap

Python library for the Snapchat API
Python
264
star
2

jarvis2

Awesome dashboard built with Flask and Mithril
Python
185
star
3

wakeup

HTTP API and front-end for sending Wake-on-LAN messages
Go
36
star
4

nflx-proxy

Netflix DNS proxy written in Go
Go
29
star
5

zdns

A privacy-focused DNS resolver and DNS sinkhole
Go
25
star
6

atb

Sane API for bus data in Trondheim, Norway
Go
25
star
7

journal

Store and display financial records
Go
12
star
8

dotfiles

My personal dotfiles
Shell
12
star
9

emacs.d

My personal Emacs settings
Emacs Lisp
11
star
10

nrk-spotify

Listen to NRK radio channels in Spotify
Go
9
star
11

lftpq

A queue generator for lftp
Go
9
star
12

unp

Monitor directories and unpack files
Go
9
star
13

flask-swagger

A Flask extension for auto-generating Swagger resources
Python
8
star
14

ghm

A backup tool for GitHub repositories
Go
8
star
15

steamsale

Steam wishlist scraper
Python
6
star
16

collectd-plex

Plex plugin for collectd
Python
5
star
17

fish

Implementation of FiSH IRC encryption in Go
Go
5
star
18

sonos-fade

Play a given Sonos stream and increase volume gradually
Python
4
star
19

sfv

Go library for verifying SFV files
Go
3
star
20

hist-chess

Chess game developed in a programming course at Sør-Trøndelag University College
Java
2
star
21

nadapi

API for NAD amplifiers
Go
2
star
22

wakeonlan

Wake-on-LAN module for Elixir
Elixir
2
star
23

go-slides

Go presentation for GDG Trondheim
Go
1
star
24

leiningen-docker

Dockerfile for running Leiningen
Shell
1
star
25

hist-android

Solutions for tasks in the Android course at Sør-Trøndelag University College
Java
1
star
26

inteno-passwd

Tool for retrieving admin password from Inteno-based routers and modems
Python
1
star
27

hist-bachelor-thesis

My bachelor thesis at Sør-Trøndelag University College
Java
1
star
28

hist-tictactoe

Game developed in the Android course at Sør-Trøndelag University College
Java
1
star
29

aoc

Solutions to a few Advent of Code puzzles
Python
1
star