- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- DNS timeout
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-08-2002 01:55 AM
тАО02-08-2002 01:55 AM
DNS timeout
This is a question I posted on System Administration forum, without an affordable result, can you help?
Well, this is a qmail & dns related question. I have qmail installed in one of my HP9000 servers. That server collects logs, etc, from other machines via e-mail. Later, through POP3, I read messages in the accont where they arrive. But there's a little problem (in fact, a timeout). As these machines are isolated from the internet, they do not use DNS. When I do this:
root@grecopr2:/# telnet localhost 110
Trying...
Connected to localhost.
Escape character is '^]'.
+OK <18155.1012994166@grecopr2>
Before the last line, there's a delay of 30 seconds, which is the time the dns gives a timeout because it can't resolve the machine name. After that, messages can be, of course, readed properly. As qmail is a daemon that does *NOT* read /etc/hosts, it's not a solution for me to put machine address machine IP in that file. I need another way for dns to resolve at least my local machine IP for POP3 logins to be done quickly. I hope I have explained myself well :)
TIA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-08-2002 03:41 AM
тАО02-08-2002 03:41 AM
Re: DNS timeout
One suggestion,
Have you searched in another forum also , if not you can search in
http://searchhp.techtarget.com/tip/1,289483,sid6_gci776891,00.html
-vijay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-08-2002 05:45 AM
тАО02-08-2002 05:45 AM
Re: DNS timeout
Add a localhost entry to /etc/hosts:
127.0.0.1 localhost
set up nsswitch.conf. If localhost doesn't look up correctly, watch out for the domain directive in /etc/resolv.conf.
In addition, you can build localhost into the zone for your domain if resolv.conf is "helping you" qualify names.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-08-2002 07:02 AM
тАО02-08-2002 07:02 AM
Re: DNS timeout
turn your HP into a DNS name server. Use the tool "hosts2named" and you will be up and running within minutes.
Then configure your "/etc/resolv.conf" and "/etc/nsswitch.conf" and you are done with the client-side, too.
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-08-2002 08:37 AM
тАО02-08-2002 08:37 AM
Re: DNS timeout
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-08-2002 09:13 AM
тАО02-08-2002 09:13 AM
Re: DNS timeout
This is how my /etc/resolv.conm is configured,
search out.domain.name.com
nameserver name_server1_ip
nameserver name_server2_ip
nameserver name_server3_ip
now if server 1 and 2 are down. if i do a nslookup, it automatically defaults to server 3. Then if i do a telnet to one of the server whose address is resolved using DNS, it takes a while longer since it probably tries the server 1 and 2 first before it finally tries server 3. Do make sure you have the latest patch installed on your system.
Hope this helps.
Regds