First I want to congratulate you on your product - very well done.
Secondly I need some help with my network setup. I have from my ISP a public subnet that is routed through my main ip. So I proceeded to setup a test server trying to do this configuration using private ip-s just for test purposes.
I setup the network on the host as shown in the wiki in http://pve.proxmox.com/wiki/Network_Model. This is my interfaces file on the host:
Next I added a virtual container for Ubuntu Hardy (using the available template) - and used vmbr1 for the network device. This is my interfaces file on the guest:
However I cannot access the internet on the guest, or even ping 10.10.10.1.
I guess I'm doing something wrong, but I don't know what. Any ideas?
Thank you,
Ioan
Secondly I need some help with my network setup. I have from my ISP a public subnet that is routed through my main ip. So I proceeded to setup a test server trying to do this configuration using private ip-s just for test purposes.
I setup the network on the host as shown in the wiki in http://pve.proxmox.com/wiki/Network_Model. This is my interfaces file on the host:
Code:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.201.141
netmask 255.255.255.0
gateway 192.168.201.1
post-up echo 1 > /proc/sys/net/ipv4/conf/eth0/proxy_arp
auto vmbr0
iface vmbr0 inet static
address 10.10.10.1
netmask 255.255.255.0
bridge_ports none
bridge_stp off
bridge_fd 0
auto vmbr1
iface vmbr1 inet static
address 10.10.10.2
netmask 255.255.255.0
gateway 10.0.0.1
bridge_ports none
bridge_stp off
bridge_fd 0
Code:
auto lo
iface lo
inet loopback
auto eth0
iface eth0
inet static
address 10.10.10.2
netmask 255.255.255.0
gateway 10.10.10.1
I guess I'm doing something wrong, but I don't know what. Any ideas?
Thank you,
Ioan