diff options
author | Indrajit Raychaudhuri <irc@indrajit.com> | 2023-09-23 23:44:08 -0500 |
---|---|---|
committer | Indrajit Raychaudhuri <irc@indrajit.com> | 2023-09-28 10:40:57 -0500 |
commit | e66f7075ee12ae3107d29efaf683442c3535e8b9 (patch) | |
tree | 1ea8a4c22b72cd63f214471d64daaeca58075ece /data | |
parent | 852e9c3328e61f5d0b92a9efca376aec94533f2b (diff) | |
download | vyos-1x-e66f7075ee12ae3107d29efaf683442c3535e8b9.tar.gz vyos-1x-e66f7075ee12ae3107d29efaf683442c3535e8b9.zip |
mdns: T5615: Allow controlling IP version to use for mDNS repeater
This commit adds a new configuration option to the mDNS repeater service
to allow controlling which IP version to use for mDNS repeater.
Additionally, publishing AAAA record over IPv4 and A record over IPv6 is
disabled as suggested.
See:
- https://github.com/lathiat/avahi/issues/117#issuecomment-1651475104
- https://bugzilla.redhat.com/show_bug.cgi?id=669627#c2
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/mdns-repeater/avahi-daemon.j2 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/data/templates/mdns-repeater/avahi-daemon.j2 b/data/templates/mdns-repeater/avahi-daemon.j2 index e0dfd897e..d562c048f 100644 --- a/data/templates/mdns-repeater/avahi-daemon.j2 +++ b/data/templates/mdns-repeater/avahi-daemon.j2 @@ -1,7 +1,7 @@ ### Autogenerated by service_mdns-repeater.py ### [server] -use-ipv4=yes -use-ipv6=yes +use-ipv4={{ 'yes' if ip_version in ['ipv4', 'both'] else 'no' }} +use-ipv6={{ 'yes' if ip_version in ['ipv6', 'both'] else 'no' }} allow-interfaces={{ interface | join(', ') }} {% if browse_domain is vyos_defined and browse_domain | length %} browse-domains={{ browse_domain | join(', ') }} @@ -17,6 +17,8 @@ disable-user-service-publishing=yes publish-addresses=no publish-hinfo=no publish-workstation=no +publish-aaaa-on-ipv4=no +publish-a-on-ipv6=no [reflector] enable-reflector=yes |