B
bstriker
Guest
I've searched this topic for awhile now and can't seem to find any solution. Everyone seems to have different things working for them.
And with this being "an-almost-production-server" I can't really afford to "tinker" too much..
What I have is a Proxmox host with 1 NIC, 2 seperate subnets. (2 separate CIDR blocks)
Default Install with vmbr0 being bridged over eth0
vmbr0 has a /29 statically configured with a gateway
VZ / KVM can use the bridge vmbr0 or use venet, no problem.
I've created another vmbr1 with the /28 statically assigned.
I can ping the vmbr1 address no problem
but other VM's can't get out when assigned an IP in that range.
My understanding of networking is horrid, or its my understanding of interfacing / configuration.
Either way, can someone please put me out of misery and point me in the right direction
Thanks in advance
/etc/networking/interfaces:
And with this being "an-almost-production-server" I can't really afford to "tinker" too much..
What I have is a Proxmox host with 1 NIC, 2 seperate subnets. (2 separate CIDR blocks)
Default Install with vmbr0 being bridged over eth0
vmbr0 has a /29 statically configured with a gateway
VZ / KVM can use the bridge vmbr0 or use venet, no problem.
I've created another vmbr1 with the /28 statically assigned.
I can ping the vmbr1 address no problem
but other VM's can't get out when assigned an IP in that range.
My understanding of networking is horrid, or its my understanding of interfacing / configuration.
Either way, can someone please put me out of misery and point me in the right direction
Thanks in advance
/etc/networking/interfaces:
Code:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet manual
#XXX.XXX.99.0/29 (usable range: 2-6)
auto vmbr0
iface vmbr0 inet static
address XXX.XXX.99.2
netmask 255.255.255.248
gateway XXX.XXX.99.1
bridge_ports eth0
bridge_stp off
bridge_fd 0
#The line following did not work
#post-up route add -net XXX.XX.127.130 netmask 255.255.255.240 dev vmbr0
#XXX.XX.127.128/28 (usable range: 130-142)
auto vmbr1
iface vmbr1 inet static
address XXX.XX.127.130
netmask 255.255.255.240
gateway XXX.XX.127.129
metric 100
bridge_ports none
bridge_stp off
bridge_fd 0