From 8f3a0bccd105694085e72c94aac48eaa410d6f30 Mon Sep 17 00:00:00 2001 From: NyxErinys Date: Thu, 21 May 2026 04:22:02 -0500 Subject: [PATCH] fix nfs --- hosts/servers/poseidon/shares.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hosts/servers/poseidon/shares.nix b/hosts/servers/poseidon/shares.nix index 4f8c2c9..c516a54 100644 --- a/hosts/servers/poseidon/shares.nix +++ b/hosts/servers/poseidon/shares.nix @@ -1,6 +1,7 @@ { ... }: { - networking.firewall.allowedTCPPorts = [ 111 4000 4001 4002 2049 ]; + networking.firewall.allowedTCPPorts = [ 111 2049 4000 4001 4002 20048 ]; + networking.firewall.allowedUDPPorts = [ 111 2049 4000 4001 4002 20048 ]; fileSystems."/export/containers" = { device = "/Velaris/Containers"; options = [ "bind" ]; @@ -12,8 +13,8 @@ mountdPort = 4002; statdPort = 4000; exports = '' - /export 10.5.0.2(rw,fsid=0,no_subtree_check,vers=4) - /export/containers 10.5.0.2(rw,nohide,insecure,no_subtree_check,vers=4) + /export 10.5.0.2(rw,fsid=0,no_subtree_check) + /export/containers 10.5.0.2(rw,nohide,insecure,no_subtree_check) ''; }; } \ No newline at end of file