generalise profile.gateway.wan so not just pppoe
This commit is contained in:
parent
3012c91b47
commit
7f9cae9d5c
12
NEWS
12
NEWS
@ -103,3 +103,15 @@ a bit more useful :-)
|
|||||||
};
|
};
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
2024-07-16
|
||||||
|
|
||||||
|
* structured parameters are available for the pppoe service
|
||||||
|
|
||||||
|
* The "wan" configuration in modules/profiles/gateway.nix has changed:
|
||||||
|
instead of passing options that are used to create a pppoe interface,
|
||||||
|
callers should create a (pppoe or other) interface and pass that as
|
||||||
|
the value of profile.gateway.wan. For the pppoe case this is now only
|
||||||
|
very slightly more verbose, and it allows using the gateway profile
|
||||||
|
with other kinds of upstream.
|
||||||
|
|
||||||
|
@ -53,9 +53,17 @@ in rec {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
wan = {
|
wan = {
|
||||||
interface = config.hardware.networkInterfaces.wan;
|
# wan interface depends on your upstream - could be dhcp, static
|
||||||
username = secrets.l2tp.name;
|
# ethernet, a pppoe, ppp over serial, a complicated bonded
|
||||||
password = secrets.l2tp.password;
|
# failover ... who knows what else?
|
||||||
|
interface = svc.pppoe.build {
|
||||||
|
interface = config.hardware.networkInterfaces.wan;
|
||||||
|
username = secrets.l2tp.name;
|
||||||
|
password = secrets.l2tp.password;
|
||||||
|
};
|
||||||
|
# once the wan has ipv4 connnectivity, should we run dhcp6
|
||||||
|
# client to potentially get an address range ("prefix
|
||||||
|
# delegation")
|
||||||
dhcp6.enable = true;
|
dhcp6.enable = true;
|
||||||
};
|
};
|
||||||
firewall = {
|
firewall = {
|
||||||
|
@ -52,8 +52,6 @@ in {
|
|||||||
|
|
||||||
wan = {
|
wan = {
|
||||||
interface = mkOption { type = liminix.lib.types.interface; };
|
interface = mkOption { type = liminix.lib.types.interface; };
|
||||||
username = mkOption { type = types.str; };
|
|
||||||
password = mkOption { type = types.str; };
|
|
||||||
dhcp6.enable = mkOption { type = types.bool; };
|
dhcp6.enable = mkOption { type = types.bool; };
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -86,9 +84,7 @@ in {
|
|||||||
members = cfg.lan.interfaces;
|
members = cfg.lan.interfaces;
|
||||||
};
|
};
|
||||||
|
|
||||||
services.wan = svc.pppoe.build {
|
services.wan = cfg.wan.interface;
|
||||||
inherit (cfg.wan) interface username password;
|
|
||||||
};
|
|
||||||
|
|
||||||
services.packet_forwarding = svc.network.forward.build { };
|
services.packet_forwarding = svc.network.forward.build { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user