open nebula firewall
This commit is contained in:
parent
096d89956e
commit
1cb4864c7c
1 changed files with 11 additions and 0 deletions
11
nebula.nix
11
nebula.nix
|
@ -8,6 +8,17 @@
|
|||
cert = "/var/lib/nebula/node.crt";
|
||||
key = "/var/lib/nebula/node.key";
|
||||
ca = "/var/lib/nebula/ca.crt";
|
||||
|
||||
firewall.inbound = [{
|
||||
host = "any";
|
||||
port = "any";
|
||||
proto = "any";
|
||||
}];
|
||||
firewall.outbound = [{
|
||||
host = "any";
|
||||
port = "any";
|
||||
proto = "any";
|
||||
}];
|
||||
};
|
||||
|
||||
networking.firewall.allowedTCPPorts = [ 4242 ];
|
||||
|
|
Loading…
Reference in a new issue