Mans Ziesel b03847d03c
All checks were successful
Build docker container / Build image (push) Successful in 41s
update registry in ci again
2025-03-19 10:24:18 +01:00
2024-06-03 15:54:17 +02:00
2024-06-02 22:09:02 +02:00
2024-06-02 22:09:02 +02:00
2024-06-02 22:09:02 +02:00
2024-06-02 18:22:35 +00:00

ip-svc

Go service that will show user IPv4 and IPv6 addresses

IP page screenshot

flowchart TD
    A[net/http]
    A --> B{get request RemoteAddress}
    B --> C{is ipv6?}
    C -->|yes| D[render template with IPv6 address]
    C -->|no| E[render template with IPv4 address]
    D --> F{request ipv4 address from ip4.mziesel.nl}
    F -->|success| G[add address to page]
    E --> H{request ipv6 address from ip6.mziesel.nl}
    H -->|success| G[add address to page]

works by creating four dns records

A		ip.mziesel.nl		<server ipv4>
AAAA	ip.mziesel.nl		<server ipv6>
A		ip4.mziesel.nl		<server ipv4>
AAAA	ip6.mziesel.nl		<server ipv6>

endpoints

Endpoint Description
/ HTML page
/raw Just the raw IP
/json Data in json

the application is also available as a docker image

If you want to host it yourself you need to modify the IPV4_ENDPOINT and IPV6_ENDPOINT env vars, look in the docker compose file for examples.

Description
No description provided
https://ip.mziesel.nl
Readme Apache-2.0 80 KiB
Languages
Go 54.4%
HTML 31.4%
Dockerfile 14.2%