org: vpn
This commit is contained in:
parent
06f82ef82b
commit
2766c9dbbf
2 changed files with 28 additions and 0 deletions
|
@ -9,5 +9,6 @@
|
|||
};
|
||||
age.secrets."wg-key" = {
|
||||
file = ./wg-key.age;
|
||||
owner = "systemd-network";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -18,6 +18,9 @@
|
|||
Scope = "link";
|
||||
};
|
||||
}];
|
||||
networkConfig = {
|
||||
IPForward = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
netdevs = {
|
||||
|
@ -32,6 +35,30 @@
|
|||
};
|
||||
|
||||
wireguardPeers = [
|
||||
{ #bakham (AGB)
|
||||
wireguardPeerConfig = {
|
||||
AllowedIPs = [
|
||||
"10.10.10.5/32"
|
||||
];
|
||||
PublicKey = "JpUHFiavhlQfiHfOdUffQP3HLLeStttheACCaqlXAF8=";
|
||||
};
|
||||
}
|
||||
{ #soyouzpanda
|
||||
wireguardPeerConfig = {
|
||||
AllowedIPs = [
|
||||
"10.10.10.11/32"
|
||||
];
|
||||
PublicKey = "/xjWqkiyHY93wqo/Apj5SHP8UaXF4mKQRVwylKC2wy8=";
|
||||
};
|
||||
}
|
||||
{ #sinavir
|
||||
wireguardPeerConfig = {
|
||||
AllowedIPs = [
|
||||
"10.10.10.12/32"
|
||||
];
|
||||
PublicKey = "kmc3PexCMKm1Tg8WUDbHaOkcWLl8KUh52CtrDOODf0M=";
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue