20070627

VirtualBox Network - host interface

在我的機器上 VirtualBox 的效能比 Vmware 好很多,只是 bridge 比效難設定,
在網上爬了幾日文才設起來...

note:

#sudo apt-get install uml-utilities bridge-utils

sudo chmod 666 /dev/net/tun

sudo tunctl -t tap0 -u <username>
sudo brctl addbr br0
sudo ifconfig eth0 0.0.0.0 promisc
sudo brctl addif br0 eth0
sudo ifconfig br0 <host-ip> up
sudo route del default
sudo route add default gw <gateway>
sudo brctl addif br0 tap0
sudo ifconfig tap0 up

0 comments: