如何在OpenWrt中为DHCP客户端提供自定义DNS?[关闭]


8

我想为dhcp客户端提供自定义DNS服务器。我如何在openWrt中实现呢?


2
这个问题不太广泛,因为它得到了非常具体的答案。令人遗憾的是,滥用政策破坏了提出问题和获得答案的基本思想……
pixel

Answers:


12

DNS服务器地址对应于DHCP选项006。根据OpenWRT Wiki,/etc/config/dhcp应该看起来像

config 'dhcp' 'lan'
    ...
    list 'dhcp_option' '6,yourDNSIP'

似乎您被我击败了几秒钟,我将打开答案,因为它是特定
Reaces 2015年

8

如果启用了dnsmasq,则需要使用DHCP选项6

因此,/etc/dnsmasq.conf您将添加:

dhcp-option = 6,8.8.8.8,8.8.4.4

添加Google DNS服务器


选项6有什么作用?还有哪些其他选项(例如1-5)?
craibuc
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.