diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-01-01 20:51:02 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-01-01 20:51:02 +0530 |
commit | 3a1ac20e168489ed899b5e94954e61368b7aab75 (patch) | |
tree | 9fabc4bd5913eb318f49837194fdf0dc21a7ccb9 /hosts/kay/modules/router.nix | |
parent | 2eb43c7b2150342c2d6fb17fe0d2f0c12a2cdaee (diff) |
Revert "kay/network: switch lan and wan port"
This reverts commit cb0606d7935d9c8cf35ce095c5c7b91a61fa683a.
Diffstat (limited to 'hosts/kay/modules/router.nix')
-rw-r--r-- | hosts/kay/modules/router.nix | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/hosts/kay/modules/router.nix b/hosts/kay/modules/router.nix index c621620..cc9aaae 100644 --- a/hosts/kay/modules/router.nix +++ b/hosts/kay/modules/router.nix @@ -1,7 +1,7 @@ { ... }: let - lanInterface = "enp4s0"; + lanInterface = "enp0s20u1"; wanInterface = "ppp0"; subnet = "10.0.0.0"; prefix = 24; @@ -24,12 +24,6 @@ in address = host; prefixLength = prefix; }]; - # the mac id of the built-in nic is required for - # ppp authentication with isp, this is here to avoid - # mac address collision since it's original mac id is used - # by the new wan interface for ppp authentication - # see ./network.nix - macAddress = "40:ed:00:08:ba:be"; }; firewall = { allowedUDPPorts = [ 53 67 ]; |