- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
Centos 6.4 安装dnsmasq的方法
DNSmasq是一个小巧且方便地用于配置DNS和DHCP的工具,适用于小型网络,它提供了DNS功能和可选择的DHCP功能
1 下载源码
1 2 3 | wget http: //www .thekelleys.org.uk /dnsmasq/dnsmasq-2 .45. tar .gz cp dnsmasq-2.45. tar .gz /usr/src tar zxvf dnsmasq-2.45. tar .gz |
2 编译安装
1 2 3 4 | cd /usr/src/dnsmasq-2 .45 make install cp dnsmasq.conf.example /etc/dnsmasq .conf mkdir -p /etc/dnsmasq .d |
3 配置
1 2 3 4 5 6 7 | vi /etc/dnsmasq .conf ########## resolv- file = /etc/dnsmasq .d /dnsmasq .resolv.conf strict-order listen-address= 192.168.1.xx addn-hosts= /etc/dnsmasq .d /dnsmasq .hosts |
在/etc/dnsmasq.d目录下新建2个文件
dnsmasq.resolv.conf
1 | nameserver 8.8.8.8 |
dnsmasq.hosts
1 | ip domain |
4 安装dig&nslookup
Ubuntu:
1 | sudo apt-get install dnsutils |
Fedora / Centos:
1 | yum install bind-utils |
售前咨询
售后咨询
备案咨询
二维码
TOP