From 74a2d0a2e7848f0e74795e00df2c01f5c0b593e7 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Sat, 22 Feb 2025 08:55:07 +0100 Subject: [PATCH] feat(network): enable LLMNR and MulticastDNS in SGX config - Enabled LLMNR to allow link-local name resolution. - Enabled MulticastDNS to support service discovery and hostname resolution within local networks. --- systems/x86_64-linux/sgx/network.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/systems/x86_64-linux/sgx/network.nix b/systems/x86_64-linux/sgx/network.nix index b6d0e69..b7efd19 100644 --- a/systems/x86_64-linux/sgx/network.nix +++ b/systems/x86_64-linux/sgx/network.nix @@ -30,6 +30,8 @@ DHCP = "yes"; linkConfig.RequiredForOnline = "routable"; linkConfig.RequiredFamilyForOnline = "both"; + LLMNR = "true"; + MulticastDNS = "true"; }; systemd.network.netdevs."br0" = {