hamilton: Fix network config
This commit is contained in:
parent
9b71a51959
commit
f809aafde4
1 changed files with 3 additions and 3 deletions
|
@ -18,11 +18,11 @@
|
||||||
networking = {
|
networking = {
|
||||||
# Fallback / for the monitoring v(x)lan
|
# Fallback / for the monitoring v(x)lan
|
||||||
useDHCP = true;
|
useDHCP = true;
|
||||||
defaultGateway = { address = "172.31.1.1"; interface = "ens3"; };
|
defaultGateway = { address = "172.31.1.1"; interface = "enp1s0"; };
|
||||||
defaultGateway6 = { address = "fe80::1"; interface = "ens3"; };
|
defaultGateway6 = { address = "fe80::1"; interface = "enp1s0"; };
|
||||||
nameservers = [ "213.133.98.98" "213.133.99.99" "213.133.100.100" ];
|
nameservers = [ "213.133.98.98" "213.133.99.99" "213.133.100.100" ];
|
||||||
|
|
||||||
interfaces.ens3 = {
|
interfaces.enp1s0 = {
|
||||||
useDHCP = false;
|
useDHCP = false;
|
||||||
ipv4.addresses = [ { address = "128.140.1.30"; prefixLength = 32; } ];
|
ipv4.addresses = [ { address = "128.140.1.30"; prefixLength = 32; } ];
|
||||||
ipv6.addresses = [ { address = "2a01:4f8:1c1e:b564::1"; prefixLength = 64; } ];
|
ipv6.addresses = [ { address = "2a01:4f8:1c1e:b564::1"; prefixLength = 64; } ];
|
||||||
|
|
Loading…
Reference in a new issue