From: <ope...@li...> - 2010-09-22 10:58:57
|
I think you must add proper routes inside KVM VM and/or also to vmbr0 for these subnets. venet interfaces work magically because they are point-to-point and required routes get added automatically - as seen with: route -n To add additional routes to vmbr0 interface do something like that (192.168.55.0 being desired subnet and 192.168.55.1 as gateway to this subnet) : route add -net 192.168.55.0 netmask 255.255.255.0 gw 192.168.55.1 vmbr0 (vmbr0 on HN or eth0 inside VM) Let me know if that helps. ---------------------------------------------- Andres Toomsalu, an...@ac... ope...@li... wrote: > Hello, > > I have a server with 1 public IP address, and 8 more IP addresses > routed through it. These are individual IPs, they aren't in the same > block. > > OpenVZ guests work very well in this setup... the HN just forwards > packets directed to their IP to the corresponding VNET interface, and > everything works very well. > > How can I replicate this setup with Windows Guests under KVM? Can > anyone point me to a tutorial or howto on how to setup both the HN and > the Windows Guest networking? > > Thanks in advance, > Julián J. M. > > |