fix: smol changes to get this working
This commit is contained in:
parent
3d7f99946a
commit
ba2a8cd472
1 changed files with 19 additions and 9 deletions
|
@ -39,30 +39,40 @@ in {
|
|||
cname = [];
|
||||
};
|
||||
|
||||
|
||||
# keep the wired usb connection alive (front panel)
|
||||
networking.interfaces.enp0s29u1u5u2.useDHCP = true;
|
||||
|
||||
networking.hostName = name;
|
||||
# this has to be defined for any physical servers
|
||||
# vms are defined by teh vm host
|
||||
networking.interfaces = {
|
||||
eno1 = {
|
||||
ipv4.routes = [
|
||||
# eno1 = {
|
||||
# ipv4.addresses = [
|
||||
# {
|
||||
# address = "193.1.99.72";
|
||||
# prefixLength = 26;
|
||||
# }
|
||||
# ];
|
||||
# ipv4.routes = [
|
||||
# {
|
||||
# address = "193.1.99.72";
|
||||
# prefixLength = 26;
|
||||
# via = "193.1.99.65";
|
||||
# }
|
||||
];
|
||||
};
|
||||
# ];
|
||||
# };
|
||||
eno2 = {
|
||||
useDHCP = false;
|
||||
#useDHCP = false;
|
||||
ipv4.addresses = [
|
||||
{
|
||||
address = "193.1.99.72";
|
||||
prefixLength = 26;
|
||||
}
|
||||
#{
|
||||
# address = "172.20.20.1";
|
||||
# prefixLength = 24;
|
||||
#}
|
||||
{
|
||||
address = "172.20.20.1";
|
||||
prefixLength = 24;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue