- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: name resolution from DNS server
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Forums
Discussions
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
04-07-2006 03:25 AM
04-07-2006 03:25 AM
name resolution from DNS server
Because when the resolution of names is enabled from a dns microsoft, the login process is very slow?
S:O HP-UX 11i
Thanks in advance
Jorge Prado T.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2006 03:26 AM
04-07-2006 03:26 AM
Re: name resolution from DNS server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2006 04:00 AM
04-07-2006 04:00 AM
Re: name resolution from DNS server
domain yourdomainname
nameserver x.x.x.x
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2006 04:02 AM
04-07-2006 04:02 AM
Re: name resolution from DNS server
SSHD_START=1
SSHD_ARGS="-u0"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2006 04:06 AM
04-07-2006 04:06 AM
Re: name resolution from DNS server
I would suggest that you verify the routing first for your DNS Server. On Windows run the following
tracert DNSSERVERNAME or
tracert IP
On UNIX run,
traceroute DNSSERVERNAME or IP
---
then if the number of hops seem acceptable to you (should be just 2 or max 3) then add your servers directly in the /etc/resolv.conf file to resolve DNS names through the system than by the DNS server first.
vi /etc/resolv.conf
Add as below
SERVER1 192.168.*.* (whatever the ip is)
Then edit /etc/nsswitch.conf and enter
hosts: files[NOTFOUND=continue] dns
This will allow your system to resolve DNS through the /etc/resolv.conf file and if it does not find a system it will go to the DNS server.
Enter the names in /etc/resolv.conf file for only the most accessed servers for better performance.
-Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2006 04:38 AM
04-07-2006 04:38 AM
Re: name resolution from DNS server
look for my post that included an attachment. The attachment (tar file) allows you to make your HP servers DNS caching servers - which should make your DNS queries very fast.
Note: If you are talking about slow logins using SSH, then you are toast. SSH appears to try IPv6 DNS lookups first, then fails back to IPv4.
Hopefully Rick Jones will pipe in here :-)
live free or die
harry d brown jr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2006 09:09 AM
04-07-2006 09:09 AM
Re: name resolution from DNS server
nslookup some_server dns1.mydomain.com
where some_server is a hostame that should work OK. If it completes very fast, all is well. If it fails, talk to your DNS aadministrators.
The second test (which is likely the problem) is to use nslookup to find your PC's hostname and then find your PC's IP address:
nslookup myPCname
nslookup 12.34.56.78
Many Windows adminstrators fail to provide reverse lookup records. This is an imperative security requirement for all DNS servers. The DNS boxes must be able to resolve hosts and IP addresses both directions. HP-UX tries to validate your PCs IP address and gets no response so it waits for 15-20 seconds.
Bill Hassell, sysadmin