備忘錄_20160105(定位) 修改 回首頁

程式 2024-12-20 17:01:38 1734685298 100
raspberry pi 5 安裝 dnsmasq 來變成一台 dns 伺服器

raspberry pi 5 安裝 dnsmasq 來變成一台 dns 伺服器

sudo apt update
sudo apt upgrade
sudo apt install dnsmasq

sudo geany /etc/dnsmasq.conf
  將 #domain-needed 的井字號拿掉
  將 #bogus-p 的井字號拿掉
  將 #no-resolv 的井字號拿掉
  加入 server=8.8.8.8
  加入 server=168.95.1.1
  將 #cache-size=150 改成 cache-size=15000
  儲存,離開
  
sudo systemctl restart dnsmasq