|
我在slackware中装的是2.02的virtualbox,想要通过虚拟机安装winxp,之后通过桥接使slackware与winxp互通,我是这样做的:
************************************************************************
modprobe tun 加载tun
VBoxTunctl -t tap0 -u root 建立tap0虚卡
ifconfig eth1 0.0.0.0 promisc
ifconfig tap0 0.0.0.0 promisc 设为混杂模式
# 建立新的桥接界面(bridge),把 eth0, tap0加入bridge
brctl addbr br0
brctl addif br0 eth1
brctl addif br0 tap0
# 将bridge设成静态IP。
ifconfig br0 192.168.10.12 netmask 255.255.255.0 up
route add default gw 192.168.10.1
在VirtualBox的Guest OS网路设定画面中,将连接到的选项中选择host interface,主机网络界面名称选项中设为tap0。
**********************************************************************
进入xp后,看到连接状态只有发出去的包没有回来的包,不知道是什么问题,那位能帮我看看,谢谢。 |
|