home *** CD-ROM | disk | FTP | other *** search
/ chilidog.highland.cc.ks.us / chilidog.highland.cc.ks.us.zip / chilidog.highland.cc.ks.us / backup / bradford.20120521.etc.tar.gz / bradford.20120521.etc.tar / etc / named.d / rndc-access.conf
Text File  |  2003-10-09  |  626b  |  22 lines

  1. # ensure to find the key named 'rndc-key'
  2. include "/etc/rndc.key";
  3.  
  4. controls {
  5.     # Bind BIND's control channel to localhost and allow access from
  6.     # loopback addresses only.
  7.     # This control channel is used for the init script /etc/init.d/named,
  8.     # rcnamed while called with the option reload or status
  9.     inet 127.0.0.1 allow {
  10.         127.0.0.0/8;
  11.     } keys { rndc-key; };
  12.  
  13.     # In the following example BIND's control channel in addition is bound
  14.     # to IP address 192.0.2.1 and access is granted to loopback addresses
  15.     # and the 192.0.2.0/24 network.
  16.  
  17.     #inet 192.0.2.1 allow {
  18.     #    127.0.0.0/8;
  19.     #    192.0.2.0/24;
  20.     #} keys { rndc-key; };
  21. };
  22.