feat: vendetta is now live on what used to be Earth
This commit is contained in:
parent
eb504c2694
commit
f57fb1b846
1 changed files with 19 additions and 4 deletions
|
@ -2,11 +2,11 @@
|
|||
|
||||
Name: https://masseffect.fandom.com/wiki/Vendetta
|
||||
Why: Vendetta held troves of important data waiting for folks to request it.
|
||||
Type: VM
|
||||
Hardware: -
|
||||
From: 2023
|
||||
Type: Physical
|
||||
Hardware: PowerEdge r210
|
||||
From: 2011 (?)
|
||||
Role: DNS Server
|
||||
Notes:
|
||||
Notes: Using the server that used to be called Earth
|
||||
|
||||
*/
|
||||
|
||||
|
@ -23,6 +23,9 @@ let
|
|||
ns = "ns1";
|
||||
in {
|
||||
imports = [
|
||||
# the physical hardware for this
|
||||
./hardware/RM002.nix
|
||||
|
||||
# applications for this particular server
|
||||
../applications/firewall.nix
|
||||
../applications/dns.nix
|
||||
|
@ -35,6 +38,18 @@ in {
|
|||
};
|
||||
|
||||
networking = {
|
||||
# needs to have an address statically assigned
|
||||
interfaces = {
|
||||
eno1 = {
|
||||
ipv4.addresses = [
|
||||
{
|
||||
address = "193.1.99.120";
|
||||
prefixLength = 26;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
firewall = {
|
||||
allowedTCPPorts = [22 53];
|
||||
allowedUDPPorts = [53];
|
||||
|
|
Loading…
Reference in a new issue