- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- nslookup shall prefer one address
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
09-27-2002 03:06 AM
09-27-2002 03:06 AM
nslookup shall prefer one address
is there a possibilty to determine the order of Ip-Addresse when making an nslookup
example:
root @ ovhost-prod> nslookup ovhost
Trying DNS
Name: ovhost.systor.com
Addresses: 10.122.13.66, 10.122.28.66, 10.122.13.65
The list of IP-Addresses shall start with 10.122.13.65
Thanks ind advance
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2002 03:32 AM
09-27-2002 03:32 AM
Re: nslookup shall prefer one address
yes , it depends on the order of your A records
placed in your zone data file.
for example
If the order is like this
ovhost IN A 10.122.13.65
ovhost IN A 10.122.28.66
ovhost IN A 10.122.13.66
Then nslookup will present like this
(dont forget to restart named after this change)
Name: ovhost.systor.com
Addresses: 10.122.13.65, 10.122.28.66, 10.122.13.66
dont forget to restart named after this change
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2002 03:52 AM
09-27-2002 03:52 AM
Re: nslookup shall prefer one address
the order plays no role. The whole process seems to be random.
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2002 03:57 AM
09-27-2002 03:57 AM
Re: nslookup shall prefer one address
sorry , misunderstood your question
IF you are using BIND 9 , there is no way to stop this randomness.
But in BIND 8 it is possible ,
put the A records as i told you in my previous
post.
Edit /etc/named.conf and put this rrset-order option
options {
directory "/var/named/";
rrset-order { order fixed; };
};
restart named.
that's it.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2002 05:14 AM
09-27-2002 05:14 AM
Re: nslookup shall prefer one address
thank you for the hint.
I put the following line in the /etc/named.boot
options no-round-robin
Now it works
Peter