Allow download_url for lan addresses

to allow this IP as safe, use this filter

add_filter("http_request_host_is_external", function ($is, $host, $url) {

    if ("192.168.0.2" === $host) {
        $is = TRUE;
    }


    return $is;

}, 10, 3);