You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
1.8 KiB
Nix
91 lines
1.8 KiB
Nix
{
|
|
version = "v1";
|
|
subnets = [
|
|
{
|
|
name = "mesh";
|
|
endpoints = [
|
|
{
|
|
# No match mean match any
|
|
port = 51820;
|
|
}
|
|
];
|
|
}
|
|
];
|
|
groups = [
|
|
# groups field is expected, but can be empty
|
|
];
|
|
peers = [
|
|
{
|
|
name = "node1";
|
|
subnets = {
|
|
mesh = {
|
|
listenPort = 51820;
|
|
# empty ipAddresses will auto generate an IPv6 address
|
|
};
|
|
};
|
|
publicKey = "kdyzqV8cBQtDYeW6R1vUug0Oe+KaytHHDS7JoCp/kTE=";
|
|
privateKeyFile = "/etc/wg-key";
|
|
endpoints = [
|
|
{
|
|
# no match can be any
|
|
ip = "node1";
|
|
}
|
|
];
|
|
}
|
|
{
|
|
name = "node2";
|
|
subnets = {
|
|
mesh = {
|
|
listenPort = 51820;
|
|
};
|
|
};
|
|
publicKey = "ztdAXTspQEZUNpxUbUdAhhRWbiL3YYWKSK0ZGdcsMHE=";
|
|
privateKeyFile = "/etc/wg-key";
|
|
endpoints = [
|
|
{
|
|
# no match can be any
|
|
ip = "node2";
|
|
}
|
|
];
|
|
}
|
|
{
|
|
name = "node3";
|
|
subnets = {
|
|
mesh = {
|
|
listenPort = 51820;
|
|
# empty ipAddresses will auto generate an IPv6 address
|
|
};
|
|
};
|
|
publicKey = "43tP6JgckdTFrnbYuy8a42jdNt3+wwVcb4+ae5U4ez4=";
|
|
privateKeyFile = "/etc/wg-key";
|
|
endpoints = [
|
|
{
|
|
# no match can be any
|
|
ip = "node3";
|
|
}
|
|
];
|
|
}
|
|
{
|
|
name = "node4";
|
|
subnets = {
|
|
mesh = {
|
|
listenPort = 51820;
|
|
};
|
|
};
|
|
publicKey = "g6+Tq9aeVfm5CXPIwZDqoTxGmsQ/TlLtxcxVn2aSiVA=";
|
|
privateKeyFile = "/etc/wg-key";
|
|
endpoints = [
|
|
{
|
|
# no match can be any
|
|
ip = "node4";
|
|
}
|
|
];
|
|
}
|
|
];
|
|
connections = [
|
|
{
|
|
a = [{type= "subnet"; rule = "is"; value = "mesh";}];
|
|
b = [{type= "subnet"; rule = "is"; value = "mesh";}];
|
|
}
|
|
];
|
|
} |