- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Revers DNS lookup
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
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
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
тАО09-20-2005 06:29 PM
тАО09-20-2005 06:29 PM
Our app server tries to reverse lookup the connection query to find out the server name and all requests to that server are delayed by 10-15 sec.
Unfortunately, I can not change outdated reverse lookup records in DNS and can not disable reverse dns lookup for my app. Is it possible to manage private Reverse IP lookups through files contained simple list of computer names and associated static IP?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-20-2005 06:33 PM
тАО09-20-2005 06:33 PM
Re: Revers DNS lookup
just populate your /etc/hosts file with the entries and make sure that in /etc/nsswitch.conf in hosts line files comes first.
This way it will first check in files and it will be very fast.
Alex.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-20-2005 06:42 PM
тАО09-20-2005 06:42 PM
Re: Revers DNS lookup
Change hosts: entry as,
-- /etc/nsswitch.conf --
hosts: files
-- /etc/hosts
127.0.0.1 localhost loopback
ip-address fqdn hostname
It will do your need. Just copy this /etc/hosts file setting to all available machines in the network.
Check routing entry for this also If machine is not reachable.
# netstat -rn
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-20-2005 06:47 PM
тАО09-20-2005 06:47 PM
Re: Revers DNS lookup
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-20-2005 06:48 PM
тАО09-20-2005 06:48 PM
Re: Revers DNS lookup
I had this problem as well, adding hostname to /etc/hosts is not a good solution because the ip address and hostname are keeping changing. New hosts could be added to the network everyday.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-20-2005 06:51 PM
тАО09-20-2005 06:51 PM
Re: Revers DNS lookup
Reverse IP address lookup converts the IP to the name and '/etc/hosts' file does not support this future.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-20-2005 08:10 PM
тАО09-20-2005 08:10 PM
Solution--- /etc/hosts ---
127.0.0.1 localhost loopback
# nslookup 127.0.0.1
Using /etc/hosts on: hostname
looking up FILES
Name: localhost
Address: 127.0.0.1
Aliases: loopback
It will return localhost and loopback there on configuring hosts: files there.
It is showing that it is doing R-Lookup too.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-20-2005 08:11 PM
тАО09-20-2005 08:11 PM
Re: Revers DNS lookup
host->ip and ip->host, works both with /etc/hosts.
Alex.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-20-2005 09:00 PM
тАО09-20-2005 09:00 PM