您的当前位置:首页正文

【macos】dnsmasq搭建DNS服务器

2024-11-08 来源:个人技术集锦
brew install dnsmasq
brew info dnsmasq

//每次配置完,重启服务
sudo brew services restart dnsmasq
  1. 修改 /usr/local/etc/dnsmasq.conf
log-queries
log-facility=/var/log/dnsmasq.log
bogus-nxdomain=119.29.29.29
cache-size=2048
port=53
no-resolv
  1. /private/etc/hosts ,使用no-resolv走的就是host的配置(使用gas mask软件可以快速修改host)
123.123.123.123 www.xxx.com
  1. 手机设置dns地址为电脑ip,使用NetAnalyzer查看dns

alias ip='curl ifconfig.me'
alias ip2='ifconfig | grep inet | grep -v inet6 | grep -v 127'
alias ip3='ifconfig | grep inet'
显示全文