S
sarmiena
Guest
I'm not sure exactly what is going wrong, but I cannot get network access on my Proxmox VMs.
The host machine had Debian 6.0.4 64bit installed by my hosting provider (Softlayer). I then installed Proxmox 2.0 as per instructions given on http://pve.proxmox.com/wiki/Install_Proxmox_VE_on_Debian_Squeeze.
When I rebooted and logged into the Proxmox web interface, I went to "Network" tab and noticed there was no "vmbr0". Here is what my /etc/network/interfaces file looked like:
In order to get "vmbr0" to show up as an option in the Proxmox 2.0 web gui, I modified my interfaces file to look like this:
This is what the host shows for bridges:
This allowed me to select vmbr0 when creating a VM in bridged mode, but installation of a Debian 6.0.4 Squeeze VM failed to detect a network (apparently because it couldn't access a DHCP server).
Also, the VM has no routing entries using netstat -nr
What's the problem???
The host machine had Debian 6.0.4 64bit installed by my hosting provider (Softlayer). I then installed Proxmox 2.0 as per instructions given on http://pve.proxmox.com/wiki/Install_Proxmox_VE_on_Debian_Squeeze.
When I rebooted and logged into the Proxmox web interface, I went to "Network" tab and noticed there was no "vmbr0". Here is what my /etc/network/interfaces file looked like:
Code:
# network interface settings
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
#pre-up /sbin/ethtool -s eth0 autoneg off speed 100 duplex full
address 10.25.xxx.yyy
netmask 255.255.255.192
up route add -net 10.0.0.0/8 gw 10.25.xxx.yyy
auto eth1
iface eth1 inet static
#pre-up /sbin/ethtool -s eth1 autoneg off speed 100 duplex full
address 208.43.eee.ggg
netmask 255.255.255.192
gateway 208.43.eee.fff
In order to get "vmbr0" to show up as an option in the Proxmox 2.0 web gui, I modified my interfaces file to look like this:
Code:
auto lo
iface lo inet loopback
iface eth0 inet manual
#pre-up /sbin/ethtool -s eth0 autoneg off speed 100 duplex full
auto eth1
iface eth1 inet static
#pre-up /sbin/ethtool -s eth1 autoneg off speed 100 duplex full
address 208.43.eee.ggg
netmask 255.255.255.192
gateway 208.43.eee.fff
auto vmbr0
iface vmbr0 inet static
address 10.25.xxx.yyy
netmask 255.255.255.192
up route add -net 10.0.0.0/8 gw 10.25.xxx.yyy
bridge_hello 3
bridge_maxage 12
bridge_ports eth0
bridge_stp off
bridge_fd 0
This is what the host shows for bridges:
Code:
# brctl show
bridge name bridge id STP enabled interfaces
vmbr0 8000.003048dda33c no eth0
vmbr0v1 8000.003048dda33c no eth0.1
tap100i0
This allowed me to select vmbr0 when creating a VM in bridged mode, but installation of a Debian 6.0.4 Squeeze VM failed to detect a network (apparently because it couldn't access a DHCP server).
Also, the VM has no routing entries using netstat -nr
What's the problem???