博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
custom-dns-for-internal-network
阅读量:6496 次
发布时间:2019-06-24

本文共 1172 字,大约阅读时间需要 3 分钟。

for the reason that we need test the func in internal network, we use dnsmasq to set up internal dns.

Tools

  • ubuntu 14.x/Centos7.x

  • dnsmasq

Steps

install

#intallapt-get install dnsmasq -y # yum install dnsmasq -y#start & autostartsystemctl start dnsmasqsystemctl enable dnsmasq

conf

#/etc/dnsmasq.conf resolv-file=/etc/resolv.dnsmasq.confstrict-orderlisten-address=192.168.2.121,127.0.0.1# /etc/resolv.confecho 'nameserver 127.0.0.1' > /etc/resolv.conf# /etc/resolv.dnsmasq.confcp /etc/resolv.conf /etc/resolv.dnsmasq.confecho 'nameserver 119.29.29.29' > /etc/resolv.dnsmasq.conf# /etc/dnsmasq.d/dnsmasq.hostscp /etc/hosts /etc/dnsmasq.d/dnsmasq.hostsecho 'addn-hosts=/etc/dnsmasq.d/dnsmasq.hosts' >> /etc/dnsmasq.conf

restart & test

# restartsystemctl restart dnsmasq# check statusnetstat -tunlp|grep 53# ping testping baidu.com

more

# nslookup an domain(not exist) & get the ipbogus-nxdomain={ip}# speedupserver=/cn/114.114.114.114server=/taobao.com/114.114.114.114server=/taobaocdn.com/114.114.114.114# foreignserver=/google.com/223.5.5.5# block adsaddress=/ad.youku.com/127.0.0.1address=/ad.iqiyi.com/127.0.0.1# redirect siteaddress=/freehao123.com/123.123.123.123

Refer

转载地址:http://squyo.baihongyu.com/

你可能感兴趣的文章
dynamic关键字的使用
查看>>
iOS 音乐播放器之锁屏效果+歌词解析
查看>>
【转】Google 的眼光
查看>>
android O 蓝牙设备默认名称更改
查看>>
阳台的青椒苗
查看>>
swapper进程【转】
查看>>
python笔记21-列表生成式
查看>>
关于解决sql2012编辑器对象名无效问题
查看>>
跨链技术与通证经济
查看>>
[SignalR2] 认证和授权
查看>>
爬虫学习之-xpath
查看>>
js jQuery 右键菜单 清屏
查看>>
深入理解let和var的区别(暂时性死区)!!!
查看>>
SAP CRM中间件下载equipment时遇到的一个错误
查看>>
View组件
查看>>
SecureCRT8.0设置语法高亮
查看>>
Centos6 Ruby 1.8.7升级至Ruby 2.3.1的方法
查看>>
农业部副部长:大力推动互联网与“三农”工作融合
查看>>
Zimbra管理手册
查看>>
dotConnect for Oracle
查看>>