現在、IPv4 および IPv6 アドレスで Web サイトを監視しています
しかし、私の次の Web サイトは、複数の IP アドレスでホストされます。そして、それらすべてを監視したいと思います。
これがデュアルスタック監視用の現在のコードです(1つのIPアドレスのみを監視しています)
<?php
$resultat4 = file_get_contents_curl( 'http://www.mydomain.com/?cjg_monitoring=1', 4);
$resultat6 = file_get_contents_curl( 'http://www.mydomain.com/?cjg_monitoring=1', 6);
if (substr($resultat4,0,2) == "OK"){ echo 'IPv4 stack OK' }
if (substr($resultat6,0,2) == "OK"){ echo 'IPv6 stack OK' }
function file_get_contents_curl($url,$ip_version=0) {
$ch = curl_init();
if($ip_version == 4)
curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4 );
elseif($ip_version == 6)
curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V6 );
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //Set curl to return the data instead of printing it to the browser.
curl_setopt($ch, CURLOPT_URL, $url);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
?>
Curl PHP でテストされたすべての IP アドレスを取得するにはどうすればよいですか?
私がやりたいことは、この単純なバージョンに似ています:
<?php
$ip_adds = get_all_ip_addresses( $url );
$problem_encountered = false;
foreach( $ip_adds as $ip_add ){
$content = get_content_url_on_ip( 'http://www.mydomain.com/?cjg_monitoring=1', $ip_add );
if ( $content != "OK") $problem_encountered = true;
}
if ( !$problem_encountered ) echo "All IPv4 and IPv6 Addresses OK";
?>
私の場合、www.mydomain.com には各バージョンの多くの IP アドレスがあります。
$host www.mydomain.com
www.mydomain.com has address 173.194.35.180
www.mydomain.com has address 173.194.35.176
www.mydomain.com has address 173.194.35.177
www.mydomain.com has IPv6 address 2001:db8:4016:801::1008
www.mydomain.com has IPv6 address 2001:db8:4016:801::1009
www.mydomain.com has IPv6 address 2001:db8:4016:801::1010
これが私がこれを使用する理由です:
//return array[0][ip] or array[0][ipv6]
function get_all_ip_addresses( $url ){
$url_tab = parse_url($url);
$host = $url_tab['host']
$ip4s = dns_get_record($host, DNS_A);
$ip6s = dns_get_record($host, DNS_AAAA);
return array_merge($ip4s, $ip6s);
}