tags:

views:

26

answers:

1

I have a PHP script that is using get_dns_record to retrieve and display specific DNS records for a domain, submitted via a form.

It's working really well, except that the section that handles MX records is a little unreliable. Sometimes no MX Records are displayed at all (on domains I know have them). If you refresh 2-3 times, sometimes they will show up. Sometimes they won't.

Thoughts?

function getDNSRecord($domain1) {
$dns = dns_get_record( $domain1, DNS_ANY );
echo "These are DNS records";
foreach( $dns as $d ) {
    // Only print A and MX records
    if( $d['type'] != "A" and $d['type'] != "MX" )
        continue;

    // Print type specific fields
    switch( $d['type'] ) {
        case 'A':
            // Display annoying message
            echo "<b>\n" . $d['ip'] . "</b>\n is the Primary A Record for this domain.";
            break;
        case 'MX':
            // Resolve IP address of the mail server
            $mx = dns_get_record( $d['target'], DNS_A );
            foreach( $mx as $server ) {
                echo "This MX record for " . $d['host'] . " points to the server <b>\n" . $d['target'] . "</b>\n whose IP address is <b>\n" . $server['ip'] . "</b>. It has a priority of <b>\n" . $d['pri'] . "</b>\n.";
            }
        if ( $d['target'] == $domain1 ) {
            echo "<div id='mx-status'>There is an issue with this MX Record</div>\n";
                } else {
            echo "<div id='mx-status'>This MX Record looks fine.</div>\n";
            }
            break;
    }
}
}
+2  A: 

Have you considered using getmxrr() to get the mx records for the domain? Documentation here: http://us2.php.net/manual/en/function.getmxrr.php

Brian Driscoll
Yes but, I'm not sure how to implement it, using the same setup. I need to not only find the MX Record but, display where it's pointing to and the IP address of it's target.
Batfan