配置本地DNS解析:通过编辑/etc/dnsmasq.conf
文件,添加address=/example.com/192.168.1.1
来指定特定域名解析到特定IP地址。
设置别名:通过编辑/etc/dnsmasq.conf
文件,添加cname=old.example.com,new.example.com
来指定别名。
配置DHCP服务:通过编辑/etc/dnsmasq.conf
文件,添加DHCP配置,如dhcp-range=192.168.0.50,192.168.0.100,12h
来设置DHCP IP地址范围和租期。
设置缓存大小:通过编辑/etc/dnsmasq.conf
文件,添加cache-size=1000
来设置缓存大小。
启用日志记录:通过编辑/etc/dnsmasq.conf
文件,添加log-queries
来启用查询日志记录。
设置上游DNS服务器:通过编辑/etc/dnsmasq.conf
文件,添加server=8.8.8.8
来设置上游DNS服务器。
配置域名过滤:通过编辑/etc/dnsmasq.conf
文件,添加server=/example.com/
来阻止特定域名的解析。
设置DNS缓存时间:通过编辑/etc/dnsmasq.conf
文件,添加min-cache-ttl=3600
来设置DNS缓存时间。