Search results

  1. D

    Only a question about network interfaces hint

    Perfect, tomorrow i'll write the patch and send to you. Many tx, Diaolin
  2. D

    Only a question about network interfaces hint

    Is it possible to add a hint to each node interface like vmbr0 (dmz) vmbr1 (net) vmbr2 (local) just to intercept correctly (when adding a new machine) the correct interface to join machine to??? I know that this is not in the code and i can write it myself... and send the patch, obviously...
  3. D

    routing to internal VPN server

    a bridge is a simple, SIMPLE, hub if the two vm can see the bridge indipendently from the lan position right or left inside hypervisor or outside no problem: ONLY ON THE SAME BRIDGE
  4. D

    routing to internal VPN server

    why????? this is simply strange Connect the two vm to the same bridge and you are ok
  5. D

    routing to internal VPN server

    it cannot work, the two bridges don't speak one to another...
  6. D

    routing to internal VPN server

    Yeah, of course i didn't see it! This is true. In your config vmbr1 is a mute bridge
  7. D

    routing to internal VPN server

    Remove this: iptables -t nat -A POSTROUTING -s '172.16.16.1/24' -o eth0 -j MASQUERADE and add iptables -t nat -A POSTROUTING -p gre -s '172.16.16.1/24' -o vmbr0 -j MASQUERADE
  8. D

    Proxmox 3.0 port redirection

    Just use xinetd apt-get install xinetd touch /etc/xinetd.d/pve vi pve ######################## service https { socket_type = stream wait = no disable = no user = root redirect =...
  9. D

    Just a simple question

    All machine have a small Notes where i can insert informations about machine itself Is it possible to have sucha a small Notes even on each node???? Tx anyway, DIaolin
  10. D

    routing to internal VPN server

    You forgot to nat and dnat even proto 47 iptables -t nat -A PREROUTING -p gre -d xx.xxx.xx.xx -j DNAT --to destination 172.16.16.2 DIaolin
  11. D

    Proxmox v2.0 on Hetzner Working Setup

    You have the public addresses on eth0 (all public addresses) and create a simple vmbr0 withouth interfaces associated to it like this auto eth0 iface eth0 inet static address myplublicaddress netmask mynetmask gateway mygateway up "ip address add mysecondaddress dev eth0...
  12. D

    Open Vswitch

    Why iptables does not work? Do you mean usign iptables on the Proxmox node itself (of course)?
  13. D

    Clone vm

    Ok: then the question is: if a server fails to run a copy (and the server itself should know how to determine that the running machine is not OK) it should restore immediately from an up-to-date copy... And who says that the latest up-o-date is OK? I think that this should be made only...
  14. D

    Open Vswitch

    Just a simple question: anyone tested openvswitch on Proxmox? Or, better, is it in the future of Proxmox or do you have any other solution for a virtual switch? I'm testing 3.x rc1 and i think it's a good solution (testing on my own lan as stable server) Tx, Diaolin
  15. D

    Clone vm

    I don't undestand the question! Automatic restore? When and why? Diaolin
  16. D

    Clone vm

    I don't understand this, please reformulate
  17. D

    Clone vm

    If you have upgraded to 3.0rc1 then you can do it from web interface. Otherwise via cmdline Daolin
  18. D

    [SOLVED] VZdump and the infinite exclude-path error

    pay attention, we did a fix to the problem of exclude-path but there are many others just follow the solution. The idea behind your code is ok but it states that if you find a single parameter on cmdline all parameters are overwritten, with my little hint this happens only for the passed param...
  19. D

    [SOLVED] VZdump and the infinite exclude-path error

    Found the bug, i hope that Dietmar will be so kind to include the solution. /usr/share/perl5/PVE/API2/VZDump.pm This code says that the exclude-path is ALWAYS read from command-line and despite each line in /etc/vzdump.conf will be skipped # exclude-path list need to be 0 separated my...