Skip to content

Yonsm/dnsmasq

Repository files navigation

dnsmasq

当前分支基于 2.9.0

git checkout [email protected]:Yonsm/dnsmasq.git
git remote add upstream git://thekelleys.org.uk/dnsmasq.git

make

src/dnsmasq -p 5354 -d -q &
sleep 1
dig @127.0.0.1 -p 5354 google.com

1. 支持 gfwlist 配置

配置文件格式:

gfwlist=<path|domain>[@server][^ipset]
  • path:以 /. 开头的文件路径,内容为每行逐条的 gfwlist.txt
  • domain:域名,支持逗号分割多个域名(每行需小于 1000 字符)
  • server:可以省略默认为 127.0.0.1#5354
  • ipset:默认为 gfwlist,如果不想启用 ipset 功能,可以直接用 `^`` 而不跟随任何字符即可

举例(如果在命令行中使用为 --gfwlist):

gfwlist=mit.edu
gfwlist=github.com,[email protected]~53^gfwlist
gfwlist=/etc/gfwlist.txt

仅在 parse 参数和配置的过程中改动,兑现成 dnsmasq 原有的功能。方案靠谱,改动不大,但受益很大。

2. 支持 dhcp-host 主机名的持久解析

问题背景:Router + AP 情况下,Router 重启后 ,因设备连接 AP 而没有来重新 DHCP,导致 dnsmasq 无法解析 dhcp-host 中配置的 hostname。

解决方案:支持 dhcp-to-host 配置,当此配置开启后,遇到 dhcp-host 中包含 hostname 时,会自动添加一条 host-record 记录,解决上述问题。

举例(如果在命令行中使用为 --dhcp-to-host

dhcp-to-host

改动内容:在适当的时机调用 dnsmasq 原有代码实现相关功能。

About

No description, website, or topics provided.

Resources

License

GPL-2.0, GPL-3.0 licenses found

Licenses found

GPL-2.0
COPYING
GPL-3.0
COPYING-v3

Stars

Watchers

Forks

Packages

No packages published