Linux下Shell脚本部署DNS服务的配置文件

## Install DNS Services ##
# DNS configuration file example.

# /cloud_nsd/conf/dns.conf

################################## INCLUDES ###################################

# Include one or more other config files here.

############################## GLOBAL VARIABLES ###############################
Nfs_Dir=/cloud_nsd						#NFS共享目录
Script_Path=$Nfs_Dir/shell				#脚本路径
Soft_Path=$Nfs_Dir/soft					#软件路径
############################### DNS CONFIGURE #################################
# [MASTER CONFIGURE]
Soft_Packet=("bind" "bind-chroot")		#软件包名
Dns_Conf=/etc/named.conf				#主配置文件
Fqdn=www.tedu.cn						#完全合格主机名
Domain_Name=`echo ${Fqdn#*.}`			#域名
Addr_Path=/var/named					#地址库文件位置
Addr_Name1=${Domain_Name}.zone1			#地址库文件名称
Addr_Name2=${Domain_Name}.zone2
Dns_Server=192.168.4.100				#DNS服务器地址
Proxy1=192.168.4.5						#代理服务器地址
Proxy2=192.168.4.15

# [SPLIT CONFIGURE]
Client1=192.168.4.10					#客户端地址
Client2=192.168.4.20

你可能感兴趣的:(Shell)