This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
internet:external_ip [2014/06/03 10:50] gcooper created |
internet:external_ip [2024/03/31 08:58] (current) gcooper |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== External IP Address ====== | ====== External IP Address ====== | ||
+ | |||
+ | http:// | ||
===== Any Web Browser ===== | ===== Any Web Browser ===== | ||
- | http://whatismyip.com | + | https:// |
+ | |||
+ | ===== Windows Powershell ===== | ||
+ | |||
+ | < | ||
+ | (Invoke-WebRequest -Uri "http://ifconfig.me/ | ||
+ | </ | ||
===== Linux CLI ===== | ===== Linux CLI ===== | ||
- | Using the ' | + | ==== dig ==== |
+ | |||
+ | < | ||
+ | dig +short myip.opendns.com @resolver1.opendns.com | ||
+ | </ | ||
+ | or | ||
+ | < | ||
+ | dig TXT +short o-o.myaddr.l.google.com @ns1.google.com | ||
+ | </ | ||
+ | |||
+ | ==== host ==== | ||
+ | |||
+ | < | ||
+ | host myip.opendns.com resolver1.opendns.com | ||
+ | </ | ||
+ | |||
+ | ==== curl ==== | ||
+ | |||
+ | < | ||
+ | curl ifconfig.me | ||
+ | </ | ||
+ | or | ||
+ | < | ||
+ | curl ipinfo.io/ | ||
+ | </ | ||
+ | |||
+ | ==== Text Browser ==== | ||
< | < | ||
lynx --dump http:// | lynx --dump http:// | ||
+ | </ | ||
+ | |||
+ | or | ||
+ | |||
+ | < | ||
+ | elinks --dump http:// | ||
</ | </ |