- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Configuring DNS
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
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
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
07-15-2007 06:12 AM
07-15-2007 06:12 AM
I have to add a new address DNS in my resolv, but then I done this the telnet connection is very slow to response.
Anyway, have I to do only that for add new DNS ??
thank you for each reply at my question !!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2007 06:25 AM
07-15-2007 06:25 AM
Re: Configuring DNS
in SAM->Networking and Communications->
Name Service Switch-> hosts
in what order is the name service awitch resolving ?
mine is /etc/hosts DNS NIS
also what Operating system version are you using?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2007 07:23 AM
07-15-2007 07:23 AM
Re: Configuring DNS
You should also put an entry matching the ifconfig lan0 output for your system in /etc/hosts
The default configuration uses /etc/hosts first and your connection speed in inbound telnet can be boosted by this simple move. I'm assuming of course that lan0 is your primary NIC.
Good Luck,
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2007 08:32 AM
07-15-2007 08:32 AM
Re: Configuring DNS
How is the speed when u use ssh connection?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2007 02:08 PM
07-15-2007 02:08 PM
Re: Configuring DNS
A classic case of missing DNS records. Your DNS administrator probably did not setup reverse (PTR) records for any of the hosts. HP-UX (and most Unix systems) try to authorize incoming connections by seeing if the IP address has been authorized by having an entry in DNS. When the DNS server has no PTR record, HP-UX waits for about 20-25 seconds per DNS server listed in resolv.conf.
The fix is to add all incoming hosts to /etc/hosts, then change the line in /etc/nsswitch.conf to read file then dns:
hosts: files [NOTFOUND=continue UNAVAIL=continue] dns
or fix your DNS server.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2007 09:35 PM
07-22-2007 09:35 PM
Re: Configuring DNS
Yes, the dns that I insert in resolv.conf is not yet available, but I need to configure it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2007 01:24 AM
07-23-2007 01:24 AM
SolutionMy resolv.conf:
domain mydomain.com
nameserver 192.168.110.147
nameserver 192.168.162.157
nameserver 192.168.162.6
retrans 1500
retry 2
Ttry adding the last 2 to yours (retrans and retry)
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2007 05:07 AM
07-23-2007 05:07 AM
Re: Configuring DNS
hosts: files
and nothing else. Leave it this way until you have a working DNS server. Now you'll have no delays. Verify with:
nslookup some_name
nsquery hosts some_name
It should find everything in /etc/hosts.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2007 11:41 PM
07-23-2007 11:41 PM
Re: Configuring DNS
I solve the slow connection by :
nsswitch.conf add UNAVAIL=continue
resolv.conf add retrans 1500 and retry 2
bye bye
Elis