[no ci] feat: now got ssh access to skynet.skynet.ie

This commit is contained in:
silver 2023-09-05 15:02:02 +01:00
parent 522efc92cc
commit c5c0df3f5e

View file

@ -35,11 +35,9 @@ in {
# it has two network devices so two # it has two network devices so two
skynet_dns.records = [ skynet_dns.records = [
#{record=name; r_type="A"; value=ip_pub; server=true;} {record=name; r_type="A"; value=ip_pub; server=true;}
{record=name; r_type="A"; value=ip_priv; server=true; }
{record="ext"; r_type="A"; value=ip_pub; server=false;}
{record="${name}.int"; r_type="A"; value=ip_priv; server=true;} {record="${name}.int"; r_type="A"; value=ip_priv; server=true;}
{record=ip_pub; r_type="PTR"; value=hostname;}
{record=ip_priv; r_type="PTR"; value=hostname_int;} {record=ip_priv; r_type="PTR"; value=hostname_int;}
]; ];
@ -59,14 +57,19 @@ in {
}; };
proxmoxLXC.manageNetwork = true; proxmoxLXC.manageNetwork = true;
networking.hostName = name; networking = {
networking.interfaces = { hostName = name;
# needed to use the dmz first
defaultGateway = lib.mkForce "193.1.96.161";
interfaces = {
eth0.ipv4.addresses = [ eth0.ipv4.addresses = [
{ {
address = ip_priv; address = ip_priv;
prefixLength = 26; prefixLength = 26;
} }
]; ];
# primary ip for logging in
eth1.ipv4.addresses = [ eth1.ipv4.addresses = [
{ {
address = ip_pub; address = ip_pub;
@ -74,9 +77,11 @@ in {
} }
]; ];
}; };
};
services.skynet = { services.skynet = {
host = { host = {
# website is still hosted on the internal IP
ip = ip_priv; ip = ip_priv;
name = name; name = name;
}; };