Enable listening on IPv6 by default

This commit is contained in:
Philipp Trulson 2025-12-19 20:25:04 +01:00
parent d446fde009
commit 926387eb0a
No known key found for this signature in database
GPG key ID: 7D15DA14D2E1182A
3 changed files with 3 additions and 3 deletions

View file

@ -102,7 +102,7 @@ public class CreateNetworkConfiguration : IMigrationRoutine
public int PublicPort { get; set; } = DefaultHttpPort;
public bool EnableIPV6 { get; set; }
public bool EnableIPV6 { get; set; } = true;
public bool EnableIPV4 { get; set; } = true;

View file

@ -157,7 +157,7 @@ public class MigrateNetworkConfiguration : IMigrationRoutine
public string UDPPortRange { get; set; } = string.Empty;
public bool EnableIPV6 { get; set; }
public bool EnableIPV6 { get; set; } = true;
public bool EnableIPV4 { get; set; } = true;

View file

@ -121,7 +121,7 @@ public class NetworkConfiguration
/// <summary>
/// Gets or sets a value indicating whether IPv6 is enabled.
/// </summary>
public bool EnableIPv6 { get; set; }
public bool EnableIPv6 { get; set; } = true;
/// <summary>
/// Gets or sets a value indicating whether access from outside of the LAN is permitted.