我希望我的 DHCP 数据包包含符合RFC 4833选项 100 或 101 的时区。
我登录路由器并运行
dnsmasq --help dhcp
并且它显示了两者:
100 posix-timezone
101 tzdb-timezone
因此我认为这应该得到支持。
我已经尝试了几种语法(一次一个)
config dnsmasq
list 'dhcp_option' '101,America/New_York'
list 'dhcp_option' '101,"America/New_York"'
list dhcp_option '101,America/New_York'
list dhcp_option 'tzdb-timezone,America/New_York'
我也尝试添加其中一些
config dhcp 'lan'
然后我用
service dnsmasq restart
我查看了 Wireshark 中的数据包,没有看到任何 101 选项被发送。我确信这只是我对语法缺乏理解。