ui 上通告的 IPv6 DNS 服务器 只能给所有设备下发
在 openwrt 的 /etc/config/dhcp 中修改文件,可以指定单独设备分配 ipv4 的 dns 或者其他信息
config host
option name 'device'
option dns '1'
option mac 'AA:BB:CC:DD:EE:FF'
option ip '192.168.5.26'
option tag 'other_dns'
config tag 'other_dns'
list dhcp_option '6,192.168.5.7'
但是 ipv6 的 dns 在添加了 list dns 'fd::dee' 的情况下并没有生效
1
SenLief 158 天前
看看有没有个 dhcpd6.conf 的配置文件
|
2
whetherTsmile OP @SenLief #1 没找到这个文件,我看他 lan 口的 ipv6dns 就是写在这里的,config dhcp 'lan'
option interface 'lan' option start '100' option limit '150' option leasetime '12h' option dhcpv4 'server' option dhcpv6 'server' option ra 'server' list ra_flags 'managed-config' list ra_flags 'other-config' option force '1' list dns 'fd::1' 另外我使用的是 istoreos ,不知道会不会和原版 openwrt 有出入 |