Merge pull request #205399 from SuperSandro2000/fix-avahi

This commit is contained in:
Sandro 2022-12-14 23:34:12 +01:00 committed by GitHub
commit b5f35b1c85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 16 deletions

View File

@ -95,16 +95,6 @@
<literal>true</literal>, or configure your firewall. <literal>true</literal>, or configure your firewall.
</para> </para>
</listitem> </listitem>
<listitem>
<para>
The
<link linkend="opt-services.avahi.openFirewall">services.avahi.openFirewall</link>
module option default value has been changed from
<literal>true</literal> to <literal>false</literal>. You will
need to explicitely set this option to
<literal>true</literal>, or configure your firewall.
</para>
</listitem>
<listitem> <listitem>
<para> <para>
The The

View File

@ -33,8 +33,6 @@ In addition to numerous new and upgraded packages, this release has the followin
- The [services.snapserver.openFirewall](#opt-services.snapserver.openFirewall) module option default value has been changed from `true` to `false`. You will need to explicitely set this option to `true`, or configure your firewall. - The [services.snapserver.openFirewall](#opt-services.snapserver.openFirewall) module option default value has been changed from `true` to `false`. You will need to explicitely set this option to `true`, or configure your firewall.
- The [services.avahi.openFirewall](#opt-services.avahi.openFirewall) module option default value has been changed from `true` to `false`. You will need to explicitely set this option to `true`, or configure your firewall.
- The [services.tmate-ssh-server.openFirewall](#opt-services.tmate-ssh-server.openFirewall) module option default value has been changed from `true` to `false`. You will need to explicitely set this option to `true`, or configure your firewall. - The [services.tmate-ssh-server.openFirewall](#opt-services.tmate-ssh-server.openFirewall) module option default value has been changed from `true` to `false`. You will need to explicitely set this option to `true`, or configure your firewall.
- The [services.unifi-video.openFirewall](#opt-services.unifi-video.openFirewall) module option default value has been changed from `true` to `false`. You will need to explicitely set this option to `true`, or configure your firewall. - The [services.unifi-video.openFirewall](#opt-services.unifi-video.openFirewall) module option default value has been changed from `true` to `false`. You will need to explicitely set this option to `true`, or configure your firewall.

View File

@ -103,16 +103,17 @@ in
openFirewall = mkOption { openFirewall = mkOption {
type = types.bool; type = types.bool;
default = false; default = true;
description = lib.mdDoc '' description = lib.mdDoc ''
Whether to open the firewall for UDP port 5353. Whether to open the firewall for UDP port 5353.
Disabling this setting also disables discovering of network devices.
''; '';
}; };
allowPointToPoint = mkOption { allowPointToPoint = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
description= lib.mdDoc '' description = lib.mdDoc ''
Whether to use POINTTOPOINT interfaces. Might make mDNS unreliable due to usually large Whether to use POINTTOPOINT interfaces. Might make mDNS unreliable due to usually large
latencies with such links and opens a potential security hole by allowing mDNS access from Internet latencies with such links and opens a potential security hole by allowing mDNS access from Internet
connections. connections.

View File

@ -13,8 +13,8 @@
, libevent , libevent
, nixosTests , nixosTests
, gtk3Support ? false , gtk3Support ? false
, gtk3 ? null , gtk3
, qt5 ? null , qt5
, qt5Support ? false , qt5Support ? false
, withLibdnssdCompat ? false , withLibdnssdCompat ? false
, python ? null , python ? null