feat: vendetta is now live on what used to be Earth

This commit is contained in:
silver 2023-02-24 12:09:21 +00:00
parent eb504c2694
commit f57fb1b846

View file

@ -2,11 +2,11 @@
Name: https://masseffect.fandom.com/wiki/Vendetta Name: https://masseffect.fandom.com/wiki/Vendetta
Why: Vendetta held troves of important data waiting for folks to request it. Why: Vendetta held troves of important data waiting for folks to request it.
Type: VM Type: Physical
Hardware: - Hardware: PowerEdge r210
From: 2023 From: 2011 (?)
Role: DNS Server Role: DNS Server
Notes: Notes: Using the server that used to be called Earth
*/ */
@ -23,6 +23,9 @@ let
ns = "ns1"; ns = "ns1";
in { in {
imports = [ imports = [
# the physical hardware for this
./hardware/RM002.nix
# applications for this particular server # applications for this particular server
../applications/firewall.nix ../applications/firewall.nix
../applications/dns.nix ../applications/dns.nix
@ -35,6 +38,18 @@ in {
}; };
networking = { networking = {
# needs to have an address statically assigned
interfaces = {
eno1 = {
ipv4.addresses = [
{
address = "193.1.99.120";
prefixLength = 26;
}
];
};
};
firewall = { firewall = {
allowedTCPPorts = [22 53]; allowedTCPPorts = [22 53];
allowedUDPPorts = [53]; allowedUDPPorts = [53];