vlan interfaces depend on parent

module-based-network
Daniel Barlow 2023-03-08 20:34:39 +00:00
parent d290965711
commit 85b5edc39d
1 changed files with 3 additions and 1 deletions

View File

@ -43,7 +43,7 @@
"${openwrt}/target/linux/ramips/dts"
];
};
networkInterfaces = {
networkInterfaces = rec {
# lan and wan ports are both behind a switch on eth0
eth = interface { device = "eth0"; };
lan = interface {
@ -51,12 +51,14 @@
device = "eth0.1";
link = "eth0";
id = "1";
dependencies = [eth];
};
wan = interface {
type = "vlan";
device = "eth0.2";
id = "2";
link = "eth0";
dependencies = [eth];
};
wlan = interface {
device = "wlan0";