//------------------------------------------------------------------- // // Copyright (c) Digital Equipment Corporation, 1998 // // TCPIP$BIND_CONF.TEMPLATE - Sample BIND server configuration file // (BIND Version 8.1 or later) // // IMPORTANT // // This file contains information that is read by the BIND server at // initialization time. You must edit this file and save it to // // SYS$SPECIFIC:[TCPIP$BIND]TCPIP$BIND.CONF // // before starting the BIND server. // // See the DIGITAL TCP/IP Services for OpenVMS Management guide for // instructions on editing and using this file. // //____________________________________________________________________ options { directory "sys$specific:[tcpip$bind]"; named-xfer "tcpip$bind_server_xfer"; check-names master warn; /* default. */ datasize 20M; transfers-in 6; max-transfer-time-in 30; // number of minutes an inbound zone // transfer may run. recursion yes; }; zone "ABC.DEF.DEC.COM" IN { type slave; file "abc_def_dec_com.db"; masters { 10.20.30.40; }; check-names fail; allow-update { none; }; allow-transfer { any; }; }; zone "30.20.10.in-addr.arpa" IN { type slave; file "30_20_10_in-addr_arpa.db"; masters { 10.20.30.40; }; check-names fail; allow-update { none; }; allow-transfer { any; }; }; zone "localhost" IN { type master; file "localhost.db"; check-names fail; allow-update { none; }; allow-transfer { any; }; }; zone "0.0.127.in-addr.arpa" IN { type master; file "127_0_0.db"; check-names fail; allow-update { none; }; allow-transfer { any; }; }; zone "." IN { type hint; file "root.hint"; };