summaryrefslogtreecommitdiffstats
path: root/lass
diff options
context:
space:
mode:
authorlassulus <lass@aidsballs.de>2015-10-31 00:11:45 +0100
committerlassulus <lass@aidsballs.de>2015-10-31 00:11:45 +0100
commit7fc5c721f41869bf45a2da776db63950f905b7a0 (patch)
treef5334230245107e34af76b942cdc1899bf8dd4fe /lass
parent6bf12a65f534103771f51e74b7d750dd1ce42d29 (diff)
l 2 downloading: open ports for transmission
Diffstat (limited to 'lass')
-rw-r--r--lass/2configs/downloading.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/lass/2configs/downloading.nix b/lass/2configs/downloading.nix
index b8b20d0e..553a3a55 100644
--- a/lass/2configs/downloading.nix
+++ b/lass/2configs/downloading.nix
@@ -48,6 +48,7 @@ with lib;
rpc-username = "download";
#add rpc-password in secrets
rpc-password = "test123";
+ peer-port = 51413;
};
};
@@ -55,6 +56,8 @@ with lib;
enable = true;
tables.filter.INPUT.rules = [
{ predicate = "-p tcp --dport 9091"; target = "ACCEPT"; }
+ { predicate = "-p tcp --dport 51413"; target = "ACCEPT"; }
+ { predicate = "-p udp --dport 51413"; target = "ACCEPT"; }
];
};