test netbird
This commit is contained in:
@@ -21,7 +21,13 @@
|
|||||||
enable = config.sysconfig.opts.netbird.enable;
|
enable = config.sysconfig.opts.netbird.enable;
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = lib.mkIf config.sysconfig.opts.netbird.enable [ pkgs.netbird-ui ];
|
#environment.systemPackages = lib.mkIf config.sysconfig.opts.netbird.enable [ pkgs.netbird-ui ];
|
||||||
|
|
||||||
|
networking.firewall = lib.mkIf config.sysconfig.opts.virtualization.netbird.enable {
|
||||||
|
allowedTCPPorts = [ 80 443 33073 33080 10000 ];
|
||||||
|
allowedUDPPorts = [ 3478 ];
|
||||||
|
allowedUDPPortRanges = [{ from = 49152; to = 65535; }];
|
||||||
|
};
|
||||||
|
|
||||||
containers.netbird = lib.mkIf config.sysconfig.opts.virtualization.netbird.enable {
|
containers.netbird = lib.mkIf config.sysconfig.opts.virtualization.netbird.enable {
|
||||||
|
|
||||||
@@ -29,11 +35,44 @@
|
|||||||
privateNetwork = true;
|
privateNetwork = true;
|
||||||
hostAddress = "192.168.100.10";
|
hostAddress = "192.168.100.10";
|
||||||
localAddress = "192.168.100.21";
|
localAddress = "192.168.100.21";
|
||||||
|
forwardPorts = [
|
||||||
|
{
|
||||||
|
containerPort = 33073;
|
||||||
|
hostPort = 33073;
|
||||||
|
protocol = "tcp";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
containerPort = 33080;
|
||||||
|
hostPort = 33080;
|
||||||
|
protocol = "tcp";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
containerPort = 10000;
|
||||||
|
hostPort = 10000;
|
||||||
|
protocol = "tcp";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
containerPort = 3478;
|
||||||
|
hostPort = 3478;
|
||||||
|
protocol = "udp";
|
||||||
|
}
|
||||||
|
] ++ map (x : {
|
||||||
|
containerPort = x;
|
||||||
|
hostPort = x;
|
||||||
|
protocol = "udp";
|
||||||
|
}) (builtins.genList (y: y + 49152) (65535 - 49152));
|
||||||
|
|
||||||
|
|
||||||
bindMounts = {};
|
bindMounts = {};
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
|
||||||
|
networking.firewall = {
|
||||||
|
allowedTCPPorts = [ 80 443 33073 33080 10000 ];
|
||||||
|
allowedUDPPorts = [ 3478 ];
|
||||||
|
allowedUDPPortRanges = [{ from = 49152; to = 65535; }];
|
||||||
|
};
|
||||||
|
|
||||||
services.netbird = {
|
services.netbird = {
|
||||||
|
|
||||||
enable = true;
|
enable = true;
|
||||||
@@ -42,25 +81,30 @@
|
|||||||
|
|
||||||
enable = true;
|
enable = true;
|
||||||
domain = "vpn.blunkall.us";
|
domain = "vpn.blunkall.us";
|
||||||
|
/*
|
||||||
management = {
|
management = {
|
||||||
enable = true;
|
enable = true;
|
||||||
dnsDomain = ".vpn";
|
dnsDomain = ".vpn";
|
||||||
|
|
||||||
|
turnDomain = "localhost";
|
||||||
|
|
||||||
disableAnonymousMetrics = true;
|
disableAnonymousMetrics = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
dashboard = {
|
dashboard = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
managementServer = "localhost";
|
||||||
};
|
};
|
||||||
|
|
||||||
coturn = {
|
coturn = {
|
||||||
|
domain = "turn.blunkall.us";
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
signal = {
|
signal = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
*/
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -216,6 +216,13 @@
|
|||||||
service = "pihole";
|
service = "pihole";
|
||||||
tls.certResolver = "cloudflare";
|
tls.certResolver = "cloudflare";
|
||||||
};*/
|
};*/
|
||||||
|
|
||||||
|
netbird = {
|
||||||
|
entryPoints = [ "websecure" ];
|
||||||
|
rule = "Host(`vpn.blunkall.us`)";
|
||||||
|
service = "netbird";
|
||||||
|
tls.certResolver = "cloudflare";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
middlewares = {
|
middlewares = {
|
||||||
@@ -262,6 +269,8 @@
|
|||||||
|
|
||||||
ntfy.loadBalancer.servers = [ { url = "http://192.168.100.19"; } ];
|
ntfy.loadBalancer.servers = [ { url = "http://192.168.100.19"; } ];
|
||||||
|
|
||||||
|
netbird.loadBalancer.servers = [ { url = "http://192.168.100.21"; } ];
|
||||||
|
|
||||||
homeassistant.loadBalancer.servers = [ { url = "http://192.168.100.10:8123"; } ];
|
homeassistant.loadBalancer.servers = [ { url = "http://192.168.100.10:8123"; } ];
|
||||||
|
|
||||||
ollama.loadBalancer.servers = [ { url = "http://192.168.100.10:11434"; } ];
|
ollama.loadBalancer.servers = [ { url = "http://192.168.100.10:11434"; } ];
|
||||||
|
|||||||
Reference in New Issue
Block a user