Dùng lệnh dig
dig +short myip.opendns.com @resolver1.opendns.com
Dùng lệnh wget
wget http://ipecho.net/plain -O – -q ; echo
Nếu chỉ muốn lấy địa chỉ IP 4:
curl -4 -s http://ipecho.net/plain
Dùng lệnh curl
curl ipecho.net/plain; echo
curl icanhazip.com
curl ifconfig.me
Trong bash script
#!/bin/bash
PUBLIC_IP=`wget http://ipecho.net/plain -O – -q ; echo`
echo $PUBLIC_IP