Ubuntu下安装dnsmasq,命令:
sudo apt-get install dnsmasq
编辑dnsmasq的配置相关文件,命令:
sudo gedit /etc/dnsmasq.conf
找到接下来这一项:
#resolv-file=
用接下来的一条语句替换:
resolv-file=/etc/resolv.dnsmasq.conf
然后执行命令,以/etc/resolv.conf的副本创建resolv.dnsmasq.conf:
sudo cp /etc/resolv.conf /etc/resolv.dnsmasq.conf
然后编辑resolv.conf,命令:
sudo gedit /etc/resolv.conf
将其中的域名服务器全部注释掉,加入以下这行
nameserver 127.0.0.1
保存,退出。执行以下命令:
sudo gedit /etc/ppp/peers/wvdial
在 usepeerdns 前面增加 # ,也就是把这条语句覆盖掉。以防resolv.conf的设置被pppoe覆盖。
重启。
声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。