https://bugzilla.novell.com/show_bug.cgi?id=220464 Summary: No vlan support in xen bridge scripts Product: SUSE Linux 10.1 Version: Final Platform: Other OS/Version: Other Status: NEW Severity: Enhancement Priority: P5 - None Component: Xen AssignedTo: cgriffin@novell.com ReportedBy: erik@hensema.net QAContact: qa@suse.de The xen scripts supplied by novell don't support vlan interfaces. In particular the network-bridge script does a 'ifdown vlanX' which destroys the interface. This fragment of /etc/xen/scripts/xen-network-common.sh fixes it: ifup() { case $1 in vlan*) echo skipping ifup $1 ;; *) /sbin/ifup $1 -o rc || true ;; esac } ifdown() { case $1 in vlan*) ip addr flush $1 2>&1 > /dev/null ip link set $1 down ;; *) /sbin/ifdown $1 -o rc ;; esac } It's still lightly tested. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.