UBuntu 13.04服务器与Windows 2008虚拟机

我有一个Ubuntu的13.04服务器。 在它上面,我有一台虚拟机(kvm),其上安装了Windows 2008。

我已经configuration了/ etc / network / interfaces来build立到机器的桥接连接,所以我可以访问我的MS SQL数据库。

但是,我仍然无法连接到它。 我究竟做错了什么?

这里是我目前的/ etc / network / interfaces:

# This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto br0 iface br0 inet static address 192.168.2.98 netmask 255.255.255.0 network 192.168.2.0 broadcast 192.168.2.255 gateway 192.168.2.1 bridge_ports eth0 bridge_stp off bridge_maxwait 5 

我注意到,当我壳到服务器,这个IP没有列出,但一个不同的IP地址的virbr0接口被列出。

请注意,我已将虚拟机configuration为使用网桥。 虚拟机的IP地址是192.168.2.83,但是当我尝试从主机上ping时,没有任何东西可以回来。 (如果这有帮助的话)

如果您ping主机没有回应,我build议您检查以下内容:
1.你打开了Window防火墙吗?
2.你打开了Ubuntu防火墙/ iptables吗?
3.检查Windows中的子网设置
4.尝试在Window命令行中发出arp,看看是否可以获得路由器和Linux Box的MAC地址。
5.如果Window和Linux Box的MAC地址相冲突?
6.网卡卸载选项,< – 尝试禁用它们。 (特别是在Window VM内)。

在这里输入图像说明