You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
320 B
9 lines
320 B
6 years ago
|
#!/bin/bash
|
||
|
ovsCommut=`grep -e "^# LXC br ID" /var/lib/lxc/$1/config | cut -f 6 -d ' '`
|
||
|
TAG=`grep -e "^# LXC tag ID" /var/lib/lxc/$1/config | cut -f 6 -d ' '`
|
||
|
|
||
|
ip link set $5 mtu 9000
|
||
|
ip link set $5 master $ovsCommut
|
||
|
bridge vlan del dev $5 vid 1 PVID untagged master
|
||
|
bridge vlan add dev $5 vid $TAG pvid untagged master
|