bind服务的脚本

简介:

 #!/bin/bash

#this script install bind for linux or centos 5.x version

#The original is only for your reference(原创仅供大家参考)

IP=`ifconfig | grep "inet addr" | grep -v "127.0.0.1" | cut -d: -f2 | cut -d' ' -f1`  #get ip address(获取IP地址)

#IP=`ifconfig | grep -A 1 "eth0" | grep "inet addr" | cut -d: -f2 | cut -d' ' -f1 `   #if you have many network card,please use this 

NIP=`echo $IP | awk -F . -v OFS="." '{print $3,$2,$1}'`                               #Reverse output IP(逆序输出ip的前三位)

FIP= `echo $IP | awk -F . -v OFS="." '{print $4}'`                                    #output the fourth IP(输出ip的第四位)

mount /dev/cdrom   /media/

echo "/dev/cdrom         /media           iso9660    defaults    0 0  " >> /etc/fstab

cat >> /etc/yum.repos.d/iso.repo << EOF

[redhat]

name=redhat5.4

baseurl=file:///media/Server/

gpgecheck=1

enabled=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release

EOF

yum -y install bind-* caching-nameserver-*

#The main configuration file(主配置文件)

main_conf=/var/named/chroot/etc/named.caching-nameserver.conf

#Regional configuration file(区域配置文件)

reg_conf=/var/named/chroot/etc/named.rfc1912.zones

#According to the template set up positive and negative zone data configuration file(根据模板建立正反区域数据配置文件)

read -p "please input you company domain name(like abc.com):" domain

cd /var/named/chroot/var/named/

cp -p localdomain.zone  $domain.zone

cp -p named.local       $domain.local

cd /

#Positive regional data configuration file(正向区域数据配置文件)

pos_conf=/var/named/chroot/var/named/$domain.zone

#Reverse zones data configuration file(反向区域数据配置文件)

rev_conf=/var/named/chroot/var/named/$domain.local

#change or set this all configure file

sed -i 's/127\.0\.0\.1/any/g'   $main_conf  #the 127.0.0.1---->to--->any

sed -i 's/localhost\;/any\;/g'  $main_conf

cat >> $reg_conf <<EOF

zone "$domain" IN {

        type masteain.zone";

        allow-updar;

        file "$domte { none; };

};

zone "$NIP.in-addr.arpa" IN {

        type master;

        file "$domain.local";

        allow-update { none; };

};

EOF

#Modify Positive regional data configuration file(修改正向区域数据配置文件)

sed -i "s/localhost/$domain\./g"             $pos_conf

sed -i "s/root/root\.$domain\./g"            $pos_conf

sed -i "s/127\.0\.0\.1/$IP/g"                $pos_conf

echo  "www          IN A          $IP" >>    $pos_conf

#Modify Reverse zones data configuration file(修改反向区域数据配置文件)

sed -i "s/localhost\./$domain\./g"           $rev_conf

sed -i "/PTR/s/$domain\./www\.$domain\./g"   $rev_conf

sed -i "s/1/$FIP/g"                          $rev_conf

#start server

service named restart

chkconfig --add named

chkconfig --level 35 named on

 










本文转自 jie783213507 51CTO博客,原文链接:http://blog.51cto.com/litaotao/1186918,如需转载请自行联系原作者
目录
相关文章
|
6月前
|
前端开发 JavaScript
【Web 前端】 js中call、apply、bind有什么区别?
【4月更文挑战第22天】【Web 前端】 js中call、apply、bind有什么区别?
【Web 前端】 js中call、apply、bind有什么区别?
|
6月前
|
前端开发 开发者
在使用`v-bind`指令时,有哪些注意事项?
在使用`v-bind`指令时,有哪些注意事项?
41 0
|
弹性计算 PHP
PHP警告:socket_bind():无法绑定地址
PHP警告:socket_bind():无法绑定地址
320 0
|
C++
c++bind函数使用
c++bind函数使用
128 1
|
JavaScript 开发者
v-bind 指令的学习 | 学习笔记
快速学习 v-bind 指令的学习
115 0
v-bind 指令的学习  |  学习笔记
bind以及手动实现bind
bind以及手动实现bind
163 0
ES6—26:bind方法应用
ES6—26:bind方法应用
132 0
ES6—26:bind方法应用
|
网络协议 测试技术 数据库
内建DNS服务器--BIND
参考 BIND 官网:http://www.isc.org/downloads/bind/ 1、系统环境说明 [root@clsn6 ~]# cat /etc/redhat-release CentOS release 6.
1450 0