From 416ab8a37f1b07dc9f6c0fb3ff1a8ff2036510b5 Mon Sep 17 00:00:00 2001 From: Sebastian Schmelzer Date: Thu, 2 Sep 2010 17:50:49 +0200 Subject: change dir structure --- .../init-hooks/20-nw-bridge-config/bridge.sh | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 src/os-plugins/plugins/openvz/init-hooks/20-nw-bridge-config/bridge.sh (limited to 'src/os-plugins/plugins/openvz/init-hooks/20-nw-bridge-config/bridge.sh') diff --git a/src/os-plugins/plugins/openvz/init-hooks/20-nw-bridge-config/bridge.sh b/src/os-plugins/plugins/openvz/init-hooks/20-nw-bridge-config/bridge.sh new file mode 100755 index 00000000..d5245234 --- /dev/null +++ b/src/os-plugins/plugins/openvz/init-hooks/20-nw-bridge-config/bridge.sh @@ -0,0 +1,30 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your feedback to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org +# +# Init hook to create a bridge on the active network interface +# (should be kept identical to the files of virtualbox and qemukvm plugins) +############################################################################# + +local bridge=br0 +local brnwif=${nwif} +local nwifmac=${macaddr} + +# bridge 0 already defined or some other problem +brctl addbr ${bridge} || exit 0 +brctl stp ${bridge} 0 +brctl setfd ${bridge} 0.000000000001 +ip link set addr ${nwifmac} ${bridge} +ip link set dev ${nwif} up +brctl addif ${bridge} ${nwif} + +# fixme: sending back the variable to init does not work properly at the +# moment +nwif=${bridge} -- cgit v1.2.3-55-g7522