btest/dns_mgr: Update run-dnsmasq, use --host-record

Using dnsmasq --address covers an entire domain, so dns.example.com
AAAA queries would also return IPv6 addresses for example.com

Instead, this was always meant to use host entries.
This commit is contained in:
Arne Welzel 2025-03-05 12:35:17 +01:00
parent 3595f50f16
commit 7eec3859fa
3 changed files with 15 additions and 11 deletions

View file

@ -19,14 +19,13 @@ exec dnsmasq \
--no-daemon \
--listen-addr="${listen_addr}" \
--port="${listen_port}" \
--address /example.com/10.0.0.1 \
--address /example.com/10.0.0.2 \
--address /example.com/10.0.0.3 \
--address /example.com/10.0.0.4 \
--address /example.com/10.0.0.4 \
--address /example.com/fe80::6990:df6e:618:c096 \
--address /mx.example.com/10.0.0.99 \
--address /dns.example.com/10.0.0.99 \
--host-record=example.com,10.0.0.1 \
--host-record=example.com,10.0.0.2 \
--host-record=example.com,10.0.0.3 \
--host-record=example.com,10.0.0.4 \
--host-record=example.com,fe80::6990:df6e:618:c096 \
--host-record=mx.example.com,10.0.0.99 \
--host-record=dns.example.com,10.0.0.99 \
--ptr-record=99.0.0.10.in-addr.arpa,mx.example.com \
--ptr-record=99.0.0.10.in-addr.arpa,dns.example.com \
--txt-record=example.com,network-monitor,open-source,zeek \