PowerDNS配置不完全手册解析.docVIP

  • 76
  • 0
  • 约5.51千字
  • 约 9页
  • 2016-10-16 发布于湖北
  • 举报
PowerDNS配置不完全手册。 2011-03-25 21:24:54 标签:dns?onlyzq.powerdns?linux?休闲?职场 原创作品,允许转载,转载时请务必以超链接形式标明文章?原始出处?、作者信息和本声明。否则将追究法律责任。/1228/526504 在Linux平台下配置DNS服务器,大家一定首选想到的是BIND,不错BIND绝对是DNS服务器软件的老大,全球13台根域名服务器中有10台使用的是BIND。不过使用开源软件有一个很大的好处就是无论你要做什么永远会有不止一种选择,如果你不想使用BIND配置DNS服务器,那么PowerDNS会是一个不错的选择。 PowerDNS(官方网站:/)是一个跨平台的开源DNS服务组件,PowerDNS同时有Windows和Linux/Unix的版本。PowerDNS在Windows下可以使用Access的mdb文件记录DNS信息,而在Linux/Unix下则可以使用MySQL来记录DNS信息。 下面我们一起来看下在如下图所示一个简单的网络拓扑中,如何在Debian Square平台下通过PowerDNS及Poweradmin(一个基于Web的PowerDNS管理工具)配置一个DNS服务器。 ? ? 1、????由于我们需要将PowerDNS的数据保存到MySQL数据库中,所以首先使用如下命令安装MySQL,在安装过程中需要设置MySQL管理员(root用户的密码)。 root@srv:~# apt-get -y install mysql-server mysql-client 2、????使用如下命令注释MySQL配置文件(/etc/mysql/f)的bind-address参数,以便使MySQL可以侦听所有网络接口的访问语法。 root@srv:~# netstat -tunlp | grep 3306 tcp????0???0?:3306牋牋牋:*牋牋牋牋牋牋牋燣ISTEN牋牋牋3275/mysqld牋牋 root@srv:~# sed -i -e s/bind-address/#bind-address/ /Unix的版本。PowerDNSetc/mysql/f root@srv:~# /etc/init.d/mysql restart Stopping MySQL database server: mysqld. Starting MySQL database server: mysqld. Checking for corrupt, not cleanly closed and upgrade needing tables.. root@srv:~# netstat -tunlp | grep 3306牋牋牋牋牋牋?牋牋牋牋牋牋牋牋牋牋 tcp牋牋0牋? :3306牋牋牋牋:*牋牋牋牋牋牋牋燣ISTEN牋牋牋3600/mysqld?3、????使用如下命令安装PowerDNS。 root@srv:~# apt-get -y install pdns-server pdns-backend-mysql 4、????使用mysql -u root -p命令登录到MySQL后,建立PowerDNS所需的数据库及表。 root@srv:~#?mysql -u root -p Enter password: Welcome to the MySQL monitor.??Commands end with ; or \g. Your MySQL connection id is 36 Server version: 5.1.49-3 (Debian) ?Copyright (c) 2000, 2010, Oracle andr/or its affiliates. All rights reserved. This software comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to modify and redistribute it under the GPL v2 license ?Type help; or \h for help. Type \c to clear the current input statement. ?#建立一个名为dnsdb的数据库用于存储PowerDNS的数据。 mysql?create database dnsdb; Query OK, 1 row affected (0.00 sec) ? #建立一个名为pdnsuser的用户,用于PowerDN

您可能关注的文档

文档评论(0)

1亿VIP精品文档

相关文档