个人工具

UbuntuHelp:Eucalyptus bridge

来自Ubuntu中文

跳转至: 导航, 搜索

Configure the bridge on the node:

sudo /etc/init.d/networking stop
sudo vi /etc/network/interfaces

Edit the file such that it looks like as follows (and remember to save your changes):

auto lo
iface lo inet loopback

auto br0
iface br0 inet dhcp
 bridge_ports eth0
 bridge_fd 9
 bridge_hello 2
 bridge_maxage 12
 bridge_stp off

Restart the network:

sudo /etc/init.d/networking start