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.
This commit is contained in:
parent
74a2d0a2e7
commit
ff76b9045e
|
@ -30,8 +30,10 @@
|
||||||
DHCP = "yes";
|
DHCP = "yes";
|
||||||
linkConfig.RequiredForOnline = "routable";
|
linkConfig.RequiredForOnline = "routable";
|
||||||
linkConfig.RequiredFamilyForOnline = "both";
|
linkConfig.RequiredFamilyForOnline = "both";
|
||||||
LLMNR = "true";
|
extraConfig = ''
|
||||||
MulticastDNS = "true";
|
LLMNR = true
|
||||||
|
MulticastDNS = true
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.network.netdevs."br0" = {
|
systemd.network.netdevs."br0" = {
|
||||||
|
|
Loading…
Reference in a new issue