diff options
author | lassulus <lass@aidsballs.de> | 2015-10-31 00:11:45 +0100 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2015-10-31 00:11:45 +0100 |
commit | 7fc5c721f41869bf45a2da776db63950f905b7a0 (patch) | |
tree | f5334230245107e34af76b942cdc1899bf8dd4fe /lass/2configs/downloading.nix | |
parent | 6bf12a65f534103771f51e74b7d750dd1ce42d29 (diff) |
l 2 downloading: open ports for transmission
Diffstat (limited to 'lass/2configs/downloading.nix')
-rw-r--r-- | lass/2configs/downloading.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lass/2configs/downloading.nix b/lass/2configs/downloading.nix index b8b20d0ed..553a3a557 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"; } ]; }; |