Sponsored Content
Special Forums UNIX and Linux Applications Infrastructure Monitoring unable to load console info in SUNMC 4.0 Post 302351604 by spandhan on Wednesday 9th of September 2009 05:24:42 AM
Old 09-09-2009
DNS is ok it is working fine
Quote:
Originally Posted by incredible
Check your DNS settings
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

gettting disk info from console

Hi all, can someone tell me the easiest was to get disk info from a console. I manage headless servers, and would like to collect the specs on hard drives installed without looking it up through Sun. The boot messages only tell me the size/name e.g. 'Sun36G' I want to know the rotation... (1 Reply)
Discussion started by: mintzy
1 Replies

2. UNIX for Advanced & Expert Users

Unable to load interbase.so

Hi I'm trying to add interbase.so to php.ini but i can't, the error says Unable to load ../../.../extensions/interbase.so - libgds.so on ... no such file or directory on line 0 But all the files are created correctly on their folders Any idea? (1 Reply)
Discussion started by: ncatdesigner
1 Replies

3. Solaris

sun 8 unable to communicate through console

Hi : I have a e450 sun server that I just started up and I connect my laptop to the serial connection using a null modem cable and it just does not connect. I use hyperterminal, I dont connect a keyboard to the sun machine? Any ideas? Thanks a lot Al (3 Replies)
Discussion started by: alanj4
3 Replies

4. Solaris

Unable to load module

Hey guys i got this error in my messages: warning : mod_load: cannot load module sbd - I dont know anything about this. - How do i verify if there is a module sbd - What are the reasons modules cant be loaded (1 Reply)
Discussion started by: sbn
1 Replies

5. Solaris

unable to load console info in SUNMC 4.0

Hi all, unable to load console info in SUNMC 4.0 in alarm it is giving error info i.e..Agent on host (.....),1161 port not responding. Iam using M9000 server solaris 10 plz try to solve the problem Regards spandhan (0 Replies)
Discussion started by: spandhan
0 Replies

6. UNIX for Dummies Questions & Answers

Unable to load OJDBC jar

Hi I was trying to execute a java file from Unix. I am using a JDBC connection in this program. XXXXX/test/nirmal/Java > ls -lrt drwxrwxrwx 3 ideasm10 ide 3 Jul 7 11:01 classes drwxrwxrwx 3 ideasm10 ide 3 Jul 7 11:01 src drwxrwxrwx 2 ideasm10 ide ... (0 Replies)
Discussion started by: nirmal.mukundan
0 Replies

7. Shell Programming and Scripting

Event logging to file and display to console | tee command is not able to log all info.

My intention is to log the output to a file as well as it should be displayed on the console > I have used tee ( tee -a ${filename} ) command for this purpose. This is working as expected for first few outputs, after some event loggin nothing is gettting logged in to the file but It is displaying... (3 Replies)
Discussion started by: sanoop
3 Replies

8. Solaris

Unable to take console

When trying to connect to console, I am getting the below error. plathwsvcd: Another instance is running. plathwsvcd: Another instance is running. plathwsvcd: Another instance is running. plathwsvcd: Another instance is running. INIT: Id "plhw" respawning too fast: disabled for 5 minutes ... (3 Replies)
Discussion started by: aksijain
3 Replies

9. Solaris

Unable to start webconsole:console

Here is issue... bash-3.00# svcs system/webconsole:console STATE STIME FMRI maintenance 1:15:54 svc:/system/webconsole:console bash-3.00# svcadm clear svc:/system/webconsole:console bash-3.00# svcs -a |grep /system/webconsole offline* 1:20:44... (0 Replies)
Discussion started by: lingeshwaran
0 Replies

10. Shell Programming and Scripting

Print info in console or not judged by variable

I have a code fragment #dosomething ( #do many things ) |tee -a zzz.log #dosomething I want a varialbe var if var =1, print the info in (#do many things ) to console, if var=0, not print the info to console (1 Reply)
Discussion started by: yanglei_fage
1 Replies
Mail::DKIM::DNS(3)					User Contributed Perl Documentation					Mail::DKIM::DNS(3)

NAME
Mail::DKIM::DNS - performs DNS queries for Mail::DKIM DESCRIPTION
This is the module that performs DNS queries for Mail::DKIM. CONFIGURATION
This module has a couple configuration settings that the caller may want to use to customize the behavior of this module. $Mail::DKIM::DNS::TIMEOUT This global variable specifies the maximum amount of time (in seconds) to wait for a single DNS query to complete. The default is 10. Mail::DKIM::DNS::resolver() Use this global subroutine to get or replace the instance of Net::DNS::Resolver that Mail::DKIM uses. If set to undef (the default), then a brand new default instance of Net::DNS::Resolver will be created the first time a DNS query is needed. You will call this subroutine if you want to specify non-default options to Net::DNS::Resolver, such as different timeouts, or to enable use of a persistent socket. For example: # first, construct a custom DNS resolver my $res = Net::DNS::Resolver->new( udp_timeout => 3, tcp_timeout => 3, retry => 2, ); $res->udppacketsize(1240); $res->persistent_udp(1); # then, tell Mail::DKIM to use this resolver Mail::DKIM::DNS::resolver($res); Mail::DKIM::DNS::enable_EDNS0() This is a convenience subroutine that will construct an appropriate DNS resolver that uses EDNS0 (Extension mechanisms for DNS) to support large DNS replies, and configure Mail::DKIM to use it. (As such, it should NOT be used in conjunction with the resolver() subroutine described above.) Mail::DKIM::DNS::enable_EDNS0(); Use of EDNS0 is recommended, since it reduces the need for falling back to TCP when dealing with large DNS packets. However, it is not enabled by default because some Internet firewalls which do deep inspection of packets are not able to process EDNS0-enabled packets. When there is a firewall on a path to a DNS resolver, the EDNS0 feature should be specifically tested before enabling. AUTHOR
Jason Long, <jlong@messiah.edu> COPYRIGHT AND LICENSE
Copyright (C) 2006-2007, 2012-2013 by Messiah College This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available. perl v5.18.2 2013-02-07 Mail::DKIM::DNS(3)
All times are GMT -4. The time now is 04:22 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy