Otherwise I'm happy that you've made this. The world has fewer and fewer tools that do one thing well without asking anything of you.
Show HN: Justyourip.com
31–40 of 47 posts
Re: Show HN: Justyourip.com
#32Re: Show HN: Justyourip.com
#33I got tired of sending people to ad laden websites, some of them quite obnoxious, just for an IP. So I made this. No ads, no affiliation with anybody but the guy who made it, just a place to get Just Your IP.
* http://ip1.dynupdate.no-ip.com/
or, the classic "let TTL do the work": ping -i 2 example.org (assuming you're one hop from your egress)
Re: Show HN: Justyourip.com
#34Earlier quoted context omitted.
There's also icanhazip.com and /cdn-cgi/trace on any Cloudflare-proxied site.
I didn't know about the /cdn-cgi/trace Cloudflare trick. Here's a one-liner to print just the ip via curl: curl -s cloudflare.com/cdn-cgi/trace | grep ip | cut -d "=" -f 2 --
curl -s cloudflare.com/cdn-cgi/trace | awk '{FS="="} /ip/ {print $2}'Re: Show HN: Justyourip.com
#35I love it, one thing it does, and that's it, 2 lines of text and the information i want. thank you for this tool.
Re: Show HN: Justyourip.com
#36Re: Show HN: Justyourip.com
#37Earlier quoted context omitted.
I didn't know about the /cdn-cgi/trace Cloudflare trick. Here's a one-liner to print just the ip via curl: curl -s cloudflare.com/cdn-cgi/trace | grep ip | cut -d "=" -f 2 --
You could use awk instead of grep & cut: curl -s cloudflare.com/cdn-cgi/trace | awk '{FS="="} /ip/ {print $2}'
curl -s cloudflare.com/cdn-cgi/trace | sed -nr "s/^ip\=(.+)$/\1/p"Re: Show HN: Justyourip.com
#38Doesn’t seem to work for me on Safari/iOS. Couple alternatives: * Search Google or DDG for “my ip”. * http://checkip.amazonaws.com/
Re: Show HN: Justyourip.com
#39Re: Show HN: Justyourip.com
#40I use those that have IP geolocation or ISP info to confirm that my VPN or proxy works. Otherwise I'm happy that you've made this. The world has fewer and fewer tools that do one thing well without asking anything of you.