- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Configure a DNS server in HP-UX10.20
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
08-14-2002 01:55 PM
08-14-2002 01:55 PM
How can I configure my HP-UX 10.20 to be a DNS Server ? Do I have to install any software ? Where can I find it ?
I want to avoid the problem of keeping the hosts files of the computers (windows + HP-UX)in my net always upgraded.
Regards,
Mauro
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2002 02:04 PM
08-14-2002 02:04 PM
Re: Configure a DNS server in HP-UX10.20
See "man hosts_to_named" and "man named".
For a simple setup, you can continue to maintain one /etc/hosts file on the DNS server box and run hosts_to_named to update the DNS data base when changes occur.
When a change is made, then you would run "sig_named restart" for the named daemon to refresh.
Rich
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2002 02:08 PM
08-14-2002 02:08 PM
Re: Configure a DNS server in HP-UX10.20
http://www.docs.hp.com/hpux/onlinedocs/B2355-90685/B2355-90685.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2002 02:36 PM
08-14-2002 02:36 PM
Solutionfirst you need an up-to-date copy of a hosts file, containing all the names and IP-addresses you want.
Then you create a sub-directory, where you want to store the database (so-called "db-files") and "cd" into that.
Next step is to execute "hosts_to_named" with the proper options:
-r # if you want to run a "root" server
-d domain.name # the name of the domain
-n 11.22.33.44:255.255.255.0 # network and netmask for the reverse-lookups
-b /etc/named.boot # to create the config file in the default location
Now you enable the start of the daemon "named" upon next boot: vi /etc/rc.config.d/namesrvs
and set START_NAMED=1
and then you start it right now: /sbin/init.d/named start
The last step is to configure your local resolver: vi /etc/resolv.conf
nameserver your-ip-address
domain your.domain
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2002 03:19 PM
08-14-2002 03:19 PM
Re: Configure a DNS server in HP-UX10.20
I will try, but just one more doubt. After this I have to set the windows clients to use this DNS server addind the IP of this DNS server in the DNS list, ok ? This HP-UX10.20 is also the domain controller and logon server with ten windows clients machines.
Regards,
Mauro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2002 08:33 AM
08-15-2002 08:33 AM
Re: Configure a DNS server in HP-UX10.20
yes.
Regards,
Wodisch