named3.conf revision 953692fa1e307b7325e383302d82b711d164a9d5
5d82424f5d3c77c092c111b935041fd3dc4b3e98Andreas Gustafsson/*
431a83fb29482c5170b3e4026e59bb14849a6707Tinderbox User * Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
a7038d1a0513c8e804937ebc95fc9cb3a46c04f5Mark Andrews *
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence * Permission to use, copy, modify, and/or distribute this software for any
ec5347e2c775f027573ce5648b910361aa926c01Automatic Updater * purpose with or without fee is hereby granted, provided that the above
5d82424f5d3c77c092c111b935041fd3dc4b3e98Andreas Gustafsson * copyright notice and this permission notice appear in all copies.
5d82424f5d3c77c092c111b935041fd3dc4b3e98Andreas Gustafsson *
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews * PERFORMANCE OF THIS SOFTWARE.
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews */
5d82424f5d3c77c092c111b935041fd3dc4b3e98Andreas Gustafsson
5d82424f5d3c77c092c111b935041fd3dc4b3e98Andreas Gustafsson/* $Id: named2.conf,v 1.3 2011/01/04 23:47:13 tbox Exp $ */
28a8f5b0de57d269cf2845c69cb6abe18cbd3b3aMark Andrews
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein// NS4
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein
9c3531d72aeaad6c5f01efe6a1c82023e1379e4dDavid Lawrencecontrols { /* empty */ };
5d82424f5d3c77c092c111b935041fd3dc4b3e98Andreas Gustafsson
5d82424f5d3c77c092c111b935041fd3dc4b3e98Andreas Gustafssonoptions {
8eaa51a6991ea6bc6c9db0b907beacde8dd1fed2Andreas Gustafsson query-source address 10.53.0.4;
5d82424f5d3c77c092c111b935041fd3dc4b3e98Andreas Gustafsson notify-source 10.53.0.4;
8eaa51a6991ea6bc6c9db0b907beacde8dd1fed2Andreas Gustafsson transfer-source 10.53.0.4;
9cd6d409b78a6f833b681c13a68fbdc7c024fe66David Lawrence port 5300;
22fa4e3206c2048cabaf75a3ae21132fd5542848Mark Andrews pid-file "named.pid";
5d82424f5d3c77c092c111b935041fd3dc4b3e98Andreas Gustafsson listen-on { 10.53.0.4; };
8eaa51a6991ea6bc6c9db0b907beacde8dd1fed2Andreas Gustafsson listen-on-v6 { none; };
5d82424f5d3c77c092c111b935041fd3dc4b3e98Andreas Gustafsson recursion yes;
1a69a1a78cfaa86f3b68bbc965232b7876d4da2aDavid Lawrence acache-enable yes;
364a82f7c25b62967678027043425201a5e5171aBob Halley dnssec-enable yes;
5d82424f5d3c77c092c111b935041fd3dc4b3e98Andreas Gustafsson dnssec-validation auto;
b356893425f18a2399771faa875e91318f204fb5Andreas Gustafsson bindkeys-file "managed.conf";
b356893425f18a2399771faa875e91318f204fb5Andreas Gustafsson dnssec-accept-expired yes;
b356893425f18a2399771faa875e91318f204fb5Andreas Gustafsson};
b356893425f18a2399771faa875e91318f204fb5Andreas Gustafsson
b356893425f18a2399771faa875e91318f204fb5Andreas Gustafssonkey rndc_key {
b356893425f18a2399771faa875e91318f204fb5Andreas Gustafsson secret "1234abcd8765";
b356893425f18a2399771faa875e91318f204fb5Andreas Gustafsson algorithm hmac-md5;
6526fd032fc418411da3af4201214e95c113d3e2Mark Andrews};
6526fd032fc418411da3af4201214e95c113d3e2Mark Andrews
6526fd032fc418411da3af4201214e95c113d3e2Mark Andrewscontrols {
b356893425f18a2399771faa875e91318f204fb5Andreas Gustafsson inet 10.53.0.4 port 9953 allow { any; } keys { rndc_key; };
b356893425f18a2399771faa875e91318f204fb5Andreas Gustafsson};
b356893425f18a2399771faa875e91318f204fb5Andreas Gustafsson
b356893425f18a2399771faa875e91318f204fb5Andreas Gustafssonzone "." {
b356893425f18a2399771faa875e91318f204fb5Andreas Gustafsson type hint;
b356893425f18a2399771faa875e91318f204fb5Andreas Gustafsson file "../../common/root.hint";
6526fd032fc418411da3af4201214e95c113d3e2Mark Andrews};
ec3f1d35170225c74d11c27bb184e250d150b209Tatuya JINMEI 神明達哉