配置本地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緩存時間。