个人工具

UbuntuHelp:Eucalyptus bridge

来自Ubuntu中文

Wikibot讨论 | 贡献2009年5月18日 (一) 15:43的版本 (创建新页面为 '{{From|https://help.ubuntu.com/community/Eucalyptus%2Bbridge}} {{Languages|UbuntuHelp:Eucalyptus%2Bbridge}} ==== Configure the bridge on the node: ==== <pre><nowiki> sudo /etc/i...')

(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航, 搜索

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