1*00b67f09SDavid van Moolenbroek/* 2*00b67f09SDavid van Moolenbroek * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC") 3*00b67f09SDavid van Moolenbroek * 4*00b67f09SDavid van Moolenbroek * Permission to use, copy, modify, and/or distribute this software for any 5*00b67f09SDavid van Moolenbroek * purpose with or without fee is hereby granted, provided that the above 6*00b67f09SDavid van Moolenbroek * copyright notice and this permission notice appear in all copies. 7*00b67f09SDavid van Moolenbroek * 8*00b67f09SDavid van Moolenbroek * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH 9*00b67f09SDavid van Moolenbroek * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 10*00b67f09SDavid van Moolenbroek * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, 11*00b67f09SDavid van Moolenbroek * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 12*00b67f09SDavid van Moolenbroek * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE 13*00b67f09SDavid van Moolenbroek * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 14*00b67f09SDavid van Moolenbroek * PERFORMANCE OF THIS SOFTWARE. 15*00b67f09SDavid van Moolenbroek */ 16*00b67f09SDavid van Moolenbroek 17*00b67f09SDavid van Moolenbroek/* Id: controls.conf,v 1.2 2010/06/17 05:38:05 marka Exp */ 18*00b67f09SDavid van Moolenbroek 19*00b67f09SDavid van Moolenbroekkey rndc_key { 20*00b67f09SDavid van Moolenbroek secret "1234abcd8765"; 21*00b67f09SDavid van Moolenbroek algorithm hmac-md5; 22*00b67f09SDavid van Moolenbroek}; 23*00b67f09SDavid van Moolenbroek 24*00b67f09SDavid van Moolenbroekcontrols { 25*00b67f09SDavid van Moolenbroek inet 10.53.0.2 port 9953 allow { any; } keys { rndc_key; }; 26*00b67f09SDavid van Moolenbroek}; 27*00b67f09SDavid van Moolenbroek 28