diff --git a/files/etc/cron.daily/realip b/files/etc/cron.daily/realip index f2f78d5..bf0722e 100755 --- a/files/etc/cron.daily/realip +++ b/files/etc/cron.daily/realip @@ -3,8 +3,8 @@ set -e T=`mktemp` -IPV4=$(curl -s -4 ip.sb) -IPV6=$(curl -s -6 ip.sb) +IPV4=$(curl -s https://api.ipify.org) +IPV6=$(curl -s https://api6.ipify.org) [ "$IPV4" = "" ] || IPV4="set_real_ip_from $IPV4;" [ "$IPV6" = "" ] || IPV6="set_real_ip_from $IPV6;"