�&ǐk�@'bJ�h�ۊL'}T� :��'2�Z#$��n�a��� �>a��`��_3d�Qpt�/�P -��#5�,�M��� �pA:©�q�����NW��ډ�A���� �9nʺج���� �TSM��{J6?7��r�@�\����D��� �׶���s�f�TJj?"��D��`?��̒� b�#�%�C*v�$�{�$����5Ծ�F�s��y�e/8��h-�f�̰&(����Gj�L:U� 2�� ����v�_k����Y��gp,�k�WF�R������_C�R��N@���R�@�ߔ?A�w9���F("iNa-S���Q�o�3tDMLh*�#4k�T/iQ��Y*�G��m����)��8�hBm/�I�,g�ﯖ���Z��}�Cz�q@´��d.����L�ŕ�,��1�Z�܌�: ̪���F+J-'��c�tvJ8��]Q-��b��y �6;*J`r_�d ��'�G ~p��)'�C,�%F��E(��2�k�����lР�z�!�=t ��_�0��f7��� ;�p�|�U �% 1, # allow ONLY the opts specified in hash below remove => 1, # remove opts from cmd line after processing them # require_left => 1, }, \@ARGV, \&usage, { 'test' => \$test_mode, 'verbose' => \$verbose, } ); # ALL args to this script must be --xxx option args. If any # other args are left after we've eliminated those, we have a # problem. @ARGV && usage(); my $rightip = Cpanel::DIp::MainIP::getmainserverip(); my $hostname = Cpanel::Sys::Hostname::gethostname(); my @problems; my $wrongip; my $iaddr; if ( my $iaddr = gethostbyname($hostname) ) { my $ip = Socket::inet_ntoa($iaddr); if ( $ip ne $rightip && !Cpanel::IP::Loopback::is_loopback($ip) ) { $wrongip = $ip; push( @problems, 'resolved_to_wrong_ip_msg' ); } } else { #not found by perl builtin push( @problems, 'host_not_found_msg' ); } my $host_bin = Cpanel::Binaries::path('host'); if ( !-x $host_bin ) { push( @problems, 'unable_resolve_no_host_binary_msg' ); } else { my $dnsres = Cpanel::SafeRun::Errors::saferunallerrors( $host_bin, $hostname ); if ( !$dnsres || $dnsres =~ /Host not found/i ) { #not found by linux binary push( @problems, 'host_not_found_msg' ); } else { my ($dns_resip) = $dnsres =~ /(\d+\.\d+\.\d+\.\d+)/; if ( !$dns_resip ) { #not found by linux binary push( @problems, 'host_not_found_msg' ); } elsif ( Cpanel::NAT::get_local_ip($dns_resip) ne $rightip && !Cpanel::IP::Loopback::is_loopback($dns_resip) ) { # The check for localhost is for symmetry with first method, above # (gethostbyname), where we likewise perform these two tests. push( @problems, 'resolved_to_wrong_ip_msg' ); $wrongip = $dns_resip; } } } if (@problems) { require Cpanel::iContact::Class::Check::IP; print "[ipcheck] sent email! Errors found\n"; require Cpanel::Notify; Cpanel::Notify::notification_class( 'class' => 'Check::IP', 'application' => 'Check::IP', 'constructor_args' => [ 'origin' => $hostname, 'problems' => \@problems, 'right_ip' => $rightip, 'wrong_ip' => $wrongip ] ); } else { if ($verbose) { print "$0: OK: No IP-related problems have been found.\n"; } }