17 lines
415 B
Bash
Executable File
17 lines
415 B
Bash
Executable File
#!/bin/sh
|
|
brctl addbr br-left
|
|
brctl addbr br-right
|
|
tunctl -t tap-left
|
|
tunctl -t tap-right
|
|
ifconfig tap-left 0.0.0.0 promisc up
|
|
ifconfig tap-right 0.0.0.0 promisc up
|
|
brctl addif br-left tap-left
|
|
ifconfig br-left up
|
|
brctl addif br-right tap-right
|
|
ifconfig br-right up
|
|
pushd /proc/sys/net/bridge
|
|
for f in bridge-nf-*; do echo 0 > $f; done
|
|
popd
|
|
lxc-create -n left -f lxc-left.conf
|
|
lxc-create -n right -f lxc-right.conf
|