[modules] init vpn

This commit is contained in:
2024-12-16 22:00:05 +01:00
parent 65c61f6923
commit 014564191d
2 changed files with 109 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{
"vpn" = {
role = "server";
publicIp = "5.9.153.217";
ips = [ "10.100.0.1/24" ];
allowedIPs = [ "10.100.0.0/24" ];
listenPort = 51821;
publicKey = "";
};
"fanny" = {
role = "client";
ips = [ "10.100.0.2/24" ];
allowedIPs = [ "10.100.0.0/24" ];
publicKey = "";
};
"test" = {
role = "client";
ips = [ "10.100.0.3/24" ];
allowedIPs = [ "10.100.0.0/24" ];
publicKey = "";
};
}