Thanks I'll look at patches.
I'm reading ovh and hetzner setup about their routed kvm network config http://guides.ovh.com/Proxmox http://wiki.hetzner.de/index.php/Proxmox_VE/en Both have 2 kinds of config, they can route single ip address (/32), or block ip range. This ips are routed from hardware router to proxmox host main ip, and guests use host ips as gateway. I don't see how to manage that with your proxy-arp setup ? example for hetzner ---------------------- single ip routing -------------------------------------------------------------- host ----- auto eth0 iface eth0 inet static address <Main IP> netmask 255.255.255.255 pointopoint <Gateway> gateway <Gateway> # for single IPs auto vmbr0 iface vmbr0 inet static address <Main IP> (#note: not sur why we need Main IP on eth0 && vmbr0) netmask 255.255.255.255 bridge_ports none bridge_stp off bridge_fd 0 up ip route add <1st additional IP>/32 dev vmbr0 (#note: could be done without bridge with routing to dev tap...) guest ------ auto eth0 iface eth0 inet static address <Additional IP> netmask 255.255.255.255 pointopoint <Main IP> gateway <Main IP> block ip routing ------------------------------------------------------------------------------- host ----- auto eth0 iface eth0 inet static address <Main IP> netmask 255.255.255.255 pointopoint <Gateway> gateway <Gateway> auto vmbr1 iface vmbr1 inet static address <A usable IP address from the additional subnet> netmask <Netmask of the additional subnet> bridge_ports none bridge_stp off bridge_fd 0 guest ------ auto eth0 iface eth0 inet static address <A usable IP address from the additional subnet> netmask 255.255.255.0 gateway <The IP address from the additional subnet assigned for vmbr1> ----- Mail original ----- De: "Dietmar Maurer" <[email protected]> À: "Dietmar Maurer" <[email protected]>, "Alexandre DERUMIER" <[email protected]> Cc: [email protected] Envoyé: Mardi 27 Août 2013 10:28:54 Objet: RE: [PATCH] add routed network mode > > >>I posted my code to make it clear what I talk about. > > > > So, for your setup, why not simply do a standard bridge setup + proxyarp ? > > The user can setup whatever he wants. My patch works with all setups. Wait a few minutes - i will post an improved patch which extract infos for DHCP form the routing table. _______________________________________________ pve-devel mailing list [email protected] http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
