- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- diff b/w allow-update and allow-transfer ?
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
тАО03-24-2005 12:10 AM
тАО03-24-2005 12:10 AM
Hello Dear Gurus
le me know the diff b/w allow-update, and allow-transfer
zone "test.com" IN {
type master;
file "test.com.frwd"
allow-update { slave server's ip; };
};
zone "example.com IN {
type master;
file "example.com.frwd"
allow-transfer { slave server's ip; };
};
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-24-2005 12:53 AM
тАО03-24-2005 12:53 AM
Solutionallow-update - specifies which hosts are allowed to submit Dynamic DNS updates (not whole zone!!) to the server.
Regards,
Sergejs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-24-2005 04:45 AM
тАО03-24-2005 04:45 AM
Re: diff b/w allow-update and allow-transfer ?
I m really shocked/amazed. i have a master and a slave dns server, and instead of 'allow-transfer {slave's ip;};' i m using 'allow-update { slave's ip; };'. and amazingly my slave server is working fine, every record i add in the master's zone file, it will be automatically incremented in the slave server as well, although i m using "allow-update", instead of "allow-transfer" in the masters server /etc/named.conf
master's /etc/named.conf
zone "test.com" IN {
type master;
file "test.com.frwd";
allow-update { slave's ip;}; // see my mistake
};
slave's /etc/named.conf
zone "test.com" IN {
type slave;
file "test.com.frwd";
masters { master's ip;};
};
so if i should/must use allow-transfer in the master to updata/sync the slave, then why allow-update is working in the place of allow-transfer.
Thanks and Regards
Maaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-24-2005 05:16 PM
тАО03-24-2005 05:16 PM
Re: diff b/w allow-update and allow-transfer ?
( I follow your threads :) ) , this is happening because allow-transfer option is on by-default, you only need to use allow-transfer option when you want to explicitly define which slave servers will get zone-transfer, which others will not. Right now allow transfer is on for all slave servers, and all slave servers will be allowed to get a zone-transfer.
The second thing I want to tell you is, do not use allow-update option unless you really need it, because it has some security risks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-24-2005 08:27 PM
тАО03-24-2005 08:27 PM
Re: diff b/w allow-update and allow-transfer ?
Check out the following link:
http://www.oreilly.com/catalog/dns4/chapter/ch11.html
Regards,
Sergejs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-25-2005 05:43 AM
тАО03-25-2005 05:43 AM
Re: diff b/w allow-update and allow-transfer ?
Many Thanks
Regards
Maaz