# # File name: TCPIP$BIND.CONF # Product: HP TCP/IP Services for OpenVMS # Version: V5.7-13 # # © Copyright 1976, 2009 Hewlett-Packard Development Company, L.P. # # # BIND server configuration file # # # DESCRIPTION: # # This file contains configuration information for the BIND server. # Before starting the BIND server, you must edit this file and copy # it to SYS$SPECIFIC:[TCPIP$BIND]TCPIP$BIND.CONF. # # Refer to the HP TCP/IP Services for OpenVMS Management guide for # instructions on editing and using this file. # options { directory "SYS$SPECIFIC:[TCPIP$BIND]"; recursion yes; max-transfer-time-in 120; transfers-in 10; # # (listen-on-v6 is for BIND 9 and later) # unless this option is specified, the server # does not listen on any IPv6 addresses. # Use: listen-on-v6 { any; }; # forward first; forwarders { 1.2.3.4; 5.6.7.8; }; }; zone "ABC.DEF.DEC.COM" IN { type slave; file "abc_def_dec_com.db"; masters { 10.20.30.40; }; 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; }; allow-transfer { any; }; }; zone "localhost" IN { type master; file "localhost.db"; allow-transfer { any; }; }; zone "1.0.0.127.in-addr.arpa" IN { type master; file "loopback.db"; allow-transfer { any; }; }; zone "." IN { type hint; file "root.hint"; };