- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: BIND Zone Help!!
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
09-11-2002 09:40 PM
09-11-2002 09:40 PM
BIND Zone Help!!
I seem to be having a terrible difficulty setting up my BIND stuff. I have 2 domains (say domain1.org & domain2.com) that will be pointing to the same server, and just wondering what's the best way to do it. I would post what I have so far and ask why it's not working, but I figure I'll just start from scratch.
So the question is, what's the best way to set all this stuff up?? Input as to what the zone files & the named.conf should look like would be great!
Thanx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2002 04:08 AM
09-12-2002 04:08 AM
Re: BIND Zone Help!!
Among many excellent BIND resources on the Internet is the "Setting Up a Name Server" chapter in Mark Burgess's "Principles of System Administration" at http://www.iu.hio.no/~mark/sysadmin/SystemAdmin_toc.html
It includes sample zone and conf files for named 8.x.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2002 08:38 AM
09-12-2002 08:38 AM
Re: BIND Zone Help!!
// named.conf:
options {
directory "/var/named";
* port 53;
};
zone "." {
type hint;
file "root.hints";
};
zone "0.0.127.in-addr.arpa" {
type master;
file "named.local";
allow-update { none; };
};
zone "letrabb.com" {
type master;
notify no;
file "mydomain.com";
};
zone "11.22.33.in-addr.arpa" {
type master;
notify no;
file "mydomain.addr";
};
key "key" {
algorithm hmac-md5;
secret "mysecretkey";
};
//-----------
//mydomain.com zone:
$TTL 86400
@ IN SOA dns1.mydomain.com. brentonb.uvic.ca. (
2002091103 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
86400) ; Minimum
NS dns1.mydomain.com.
MX 10 mail
localhost A 127.0.0.1
mydomain.com. A 11.22.33.44
mail A 11.22.33.44
ftp A 11.22.33.44
www A 11.22.33.44
CNAME 11.22.33.44
// -----
// mydomain.addr zone
$TTL 86400
@ IN SOA mydomain.com. brentonb.uvic.ca. (
2002091101 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
86400) ; Minimum
NS dns1.mydomain.com.
160 PTR mydomain.com.
I have no idea where it's goin wrong, but it is. Any help would be grand.
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 04:50 AM
09-13-2002 04:50 AM
Re: BIND Zone Help!!
mail IN A 11.22.33.44Also, you could use CNAME instead of A records for ftp.mydomain.com and www.mydomain.com. It's recommended that an MX not point to a CNAME, so you should leave mail.mydomain.com the way it is.
Just a quick once-over. Post what you fixed and what results you get when you load the zones and when you try to query them and we can go another round if it's not fixed. One of the frustrating things about DNS is that bad zone data often makes things work weirdly instead of definitively breaking.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 05:24 AM
09-13-2002 05:24 AM
Re: BIND Zone Help!!
33.22.11.in-addr.arpa
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2002 09:07 AM
09-20-2002 09:07 AM