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
|
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];
|
||||||
|
|
Loading…
Reference in a new issue