Skip to content

Commit

Permalink
chore(hosts/nas): update MACAddress in netdevConfig
Browse files Browse the repository at this point in the history
Adjust MACAddress in netdevConfig to "00:02:c9:56:ff:6a" for the new configuration.

chore(hosts/nas): update network configuration for eno2
Refactor network configuration for eno2 interface in preparation for the new case installation.
  • Loading branch information
billimek committed Feb 27, 2024
1 parent d9e0b96 commit 19c098e
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions hosts/nas/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@
netdevConfig = {
Kind = "bridge";
Name = "br0";
# TODO: change this to the MAC address of the existing mellanox card that will actually be used when installed to the new case
MACAddress = "3c:ec:ef:b5:bf:6f";
MACAddress = "00:02:c9:56:ff:6a";
Description = "br0 bridged interface for eno1";
};
};
Expand Down Expand Up @@ -89,9 +88,20 @@
RequiredForOnline = false;
};
};
# TODO: change this to enp2s0 when installed to the new case
# TODO: remove this when installed to the new case (enp2s0)
"30-eno2" = {
matchConfig.Name = "eno2"; # will eventually be enp2s0
matchConfig.Name = "eno2";
networkConfig = {
Bridge = "br0";
DHCP = "no";
};
vlan = [
"vlk8s20"
];
linkConfig.RequiredForOnline = "enslaved";
};
"30-enp2s0" = {
matchConfig.Name = "enp2s0";
networkConfig = {
Bridge = "br0";
DHCP = "no";
Expand Down

0 comments on commit 19c098e

Please sign in to comment.