trust-dns: listen on each address explicitly

This commit is contained in:
colin 2022-12-10 12:29:10 +00:00
parent cbd5ccd1c8
commit b01501663d

View File

@ -1,10 +1,14 @@
# specify each address explicitly, instead of using "*".
# this ensures responses are sent from the address at which the request was received.
listen_addrs_ipv4 = ["192.168.0.5", "10.0.1.5"]
[[zones]]
## zone: this is the ORIGIN of the zone, aka the base name, '.' is implied on the end
# zone: this is the ORIGIN of the zone, aka the base name, '.' is implied on the end
zone = "uninsane.org"
## zone_type: Primary, Secondary, Hint, Forward
# zone_type: Primary, Secondary, Hint, Forward
zone_type = "Primary"
## file: this is relative to the directory above
# file: relative to the `zonedir` option
file = "uninsane.org.zone"