From 8be25ca7773571602c2f04302c8d643f1aaaaa85 Mon Sep 17 00:00:00 2001 From: Erwin Boskma Date: Mon, 3 Oct 2022 19:44:17 +0200 Subject: [PATCH] loki: Use different ports for NFS lockd, mountd and statd --- machines/loki/configuration.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/machines/loki/configuration.nix b/machines/loki/configuration.nix index 4cf0927..4a3017e 100644 --- a/machines/loki/configuration.nix +++ b/machines/loki/configuration.nix @@ -82,7 +82,7 @@ in # interfaces."enp4s0" = { allowedTCPPorts = [ # NFS - 111 2049 4000 4001 4002 20048 + 111 2049 4100 4101 4102 20048 # Horus System V2 12345 5555 5556 @@ -96,7 +96,7 @@ in allowedUDPPorts = [ # NFS - 111 2049 4000 4001 4002 20048 + 111 2049 4100 4101 4102 20048 ]; allowedTCPPortRanges = [ @@ -141,9 +141,9 @@ in exports = '' /home/erwin/proxmox-backup 10.0.0.0/24(rw,sync,no_subtree_check,anonuid=1000,anongid=100,all_squash) ''; - lockdPort = 4001; - mountdPort = 4002; - statdPort = 4000; + lockdPort = 4101; + mountdPort = 4102; + statdPort = 4100; }; sops.defaultSopsFile = ./secrets.yaml;