From 7ce9893bef53b9bb3c37042557593457fbf3a6b3 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 12 Oct 2012 18:14:39 +0200 Subject: [PATCH] network-interfaces.nix: interfaces that are part of a bridge must be brought 'up' for the bridge to function --- modules/tasks/network-interfaces.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/tasks/network-interfaces.nix b/modules/tasks/network-interfaces.nix index 7ef548a36b4..5c984b9e59c 100644 --- a/modules/tasks/network-interfaces.nix +++ b/modules/tasks/network-interfaces.nix @@ -382,6 +382,7 @@ in ${flip concatMapStrings v.interfaces (i: '' brctl addif "${n}" "${i}" + ip link set "${i}" up ip addr flush dev "${i}" '')}