pymumu / smartdns

A local DNS server to obtain the fastest website IP for the best Internet experience, support DoT, DoH. 一个本地DNS服务器,获取最快的网站IP,获得最佳上网体验,支持DoH,DoT。
https://pymumu.github.io/smartdns/
GNU General Public License v3.0
8.51k stars 1.09k forks source link

能不能增加一个加入外部HOST的选项,用来完成简单的去广告功能? #203

Closed db-one closed 5 years ago

db-one commented 5 years ago

能不能增加一个加入外部HOST的选项,用来完成去广告的功能?

设备信息 LEDE软路由

pymumu commented 5 years ago

自己用命令转一下就可以了:

wget https://cdn.jsdelivr.net/gh/neoFelhz/neohosts@gh-pages/basic/hosts  -O - | grep -v "^#"  | sed 's/\r//g' | sort | uniq | awk '{print "address /"$2"/#"}'
db-one commented 5 years ago

这个命令是直接把外部hosts写入到etc/hosts里面了吗