- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: New Primary master server--Pls comment!!
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
05-10-2004 07:44 PM
05-10-2004 07:44 PM
I am going to configure one primary master DNS server for an ISP. Pls comment on the below configuration of BIND 9.2.0, how it will react:
acl ournets { IP_range; };
acl bogusnets { IP_range; };
options {
...
...
allow-transfer { none; };
allow-query { ournets; };
allow-recursion { ournets; };
...
...
blackhole { bogusnets; };
};
zone "mydomain.com" {
type master;
file "db.mydomain.com";
allow-query { any; };
allow-transfer { IP_of_slave_server; };
};
.
.
.
Thanks in advance,
Richard
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2004 11:46 PM
05-10-2004 11:46 PM
Re: New Primary master server--Pls comment!!
http://forums1.itrc.hp.com/service/forums/helptips.do?#28
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2004 06:46 AM
05-17-2004 06:46 AM
Re: New Primary master server--Pls comment!!
:)
TIA,
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2004 06:56 AM
05-17-2004 06:56 AM
Re: New Primary master server--Pls comment!!
logging {
channel all_channel {
file "/var/named/named.log" versions 5 size 10; // keep 5 versions max 10 MB in size
print-category yes;
print-severity yes;
print-time yes;
};
category queries { all_channel; };
category update { all_channel; };
category security { all_channel; };
category default { all_channel; };
};
Do you need any incudes? like rndc key:
include "/etc/rndc.key";
Also for options add:
query-source address * port 53;
version "Noname DNS";
fetch-glue no;
max-cache-size 128M;
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2004 03:06 PM
05-17-2004 03:06 PM
Re: New Primary master server--Pls comment!!
Thanks.
The option "query-source address * port 53", I read some doc on BIND and understood that this option may not work properly, so they advised to mention source address explicitly?? Although I am using this option to my other named server.
Another good point is logging, I am not sure for an ISP named service, how much syslog size would be sufficient??
one question, shall I apply my ACL to reverse zone also?
regards,
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2004 01:21 AM
05-18-2004 01:21 AM
SolutionAs far as logging - start with 5 x 10MB - then go from there - if you need more, just increase it in the named.conf file and issue a: rndc reload
file "/var/named/named.log" versions 5 size 10; // keep 5 versions max 10 MB in size
As far as query source - yes, you can put the source address explicitly - I have mine at 53 because that was the only way I could get a NT DNS box to transfer (though I havn't tried lately to see if it will work explicitly now...)
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2004 02:12 AM
05-18-2004 02:12 AM
Re: New Primary master server--Pls comment!!
Thanks for sharing.
Best regards,
Richard