DD-WRTを実行しているLinksysルーターがあります(ファームウェア:DD-WRT v24-sp2(09/08/09)mini)。DHCPで割り当てられたシステムのDNS名を正常に解決しましたが、それらのドメインを完全に修飾した場合のみです。これは、「expand-hosts」DNSMasq追加オプションを使用しているにもかかわらずです。追加オプションは、この正確な機能をアクティブにすることになっています。
これが私のdnsmasq.confです。
interface=br0
resolv-file=/tmp/resolv.dnsmasq
domain=example.com
dhcp-leasefile=/tmp/dnsmasq.leases
dhcp-lease-max=51
dhcp-option=lan,3,10.77.0.5
dhcp-authoritative
dhcp-range=lan,10.77.0.100,10.77.0.149,255.255.0.0,1440m
dhcp-host=00:1A:A0:1D:82:5A,astatichostname,10.77.1.40,infinite
expand-hosts
(FYI:example.comとastatichostnameは、使用する実際の取引名のプレースホルダーです。ネットワークは10.77.0.0/16を使用しています。ルーターは10.77.0.5にあります。)
結果:
> nslookup astatichostname 10.77.0.5
Server: 10.77.0.5
Address: 10.77.0.5#53
** server can't find astatichostname: NXDOMAIN
> nslookup astatichostname.example.com 10.77.0.5
Server: 10.77.0.5
Address: 10.77.0.5#53
Name: astatichostname.example.com
Address: 10.77.1.40
DNSMasqでexpand-hostを作動させる可能性のある何か他のものはありますか?