Search results

  1. M

    Hetzner / Proxmox 1.5 (2.6.18-2-pve) / Bridged networking with veth

    Hi guys! I really do need some help here, to get my system up and running again.. I'm soooon slamming my had against the wall. Ip's i have: host ip: 85.10.xxx.10 additional ip's: 85.10.xxx.22-24 88.198.xxx.176/28 netmask: 255.255.255.240 Broadcast: 88.198.xxx.191 i want to be able to bridge 2...
  2. M

    Hi, sorry... Haven't been much online latly ;) But no worry, i don't need much credits mate ;)...

    Hi, sorry... Haven't been much online latly ;) But no worry, i don't need much credits mate ;) Marius.
  3. M

    OpenVPN with Masquerade support

    Hi, That's good, have fun with your openVPN webinterface :D Marius
  4. M

    OpenVPN with Masquerade support

    Hi again, Hmm, i think i have misleaded you abit here, i looked trough my config again, and it looks like i have :P rm -rf /dev/as0t0 vzctl exec VEID mkdir -p /dev/net vzctl exec VEID mknod /dev/net/tun c 10 200 vzctl exec VEID chmod 600 /dev/net/tun (restart the container) After this, it...
  5. M

    OpenVPN with Masquerade support

    Hi, Can you do an: ls -la /dev/as0t0 Marius
  6. M

    OpenVPN with Masquerade support

    Hi Martin, You have access to the host system? if you do, i want you to follow this little guide: To load the tun module into the HOST os. modprobe tun This is to grant your container to access tun/tap devices. vzctl set VEID --devices c:10:200:rw --save vzctl set VEID --capability...
  7. M

    adaptec 5805 pveperf tunning

    Hi, As you see, the program you are trying to run, need X Windows installed, So you will have to install it, follow this guide http://pve.proxmox.com/wiki/Developer_Workstations_with_Proxmox_VE_and_X11 To do it. Marius
  8. M

    Login boot promox please ?

    Try to browse to http://yourip/ And use the same login there. Marius
  9. M

    OpenVPN with Masquerade support

    Hi, It's actually very easy... I had it up and running within a couple of minutes only.. I use this line in my /etc/vz/vz.conf file: ## IPv4 iptables kernel modules IPTABLES="ipt_REJECT ipt_tos ipt_TOS ipt_LOG ip_conntrack ipt_limit ipt_multiport iptable_filter iptable_mangle ipt_TCPMSS...
  10. M

    Kernel Source?

    Hi, I'm assuming you are using openvz for this, as you need the module, and can't compile you own kernel. Go and try out the KVM feature in proxmox, and compile your own kernel with the zaptel support.... Marius
  11. M

    container locked

    Hmm, i'm guessing the HN tryes to start the VM during boot ? If it does, something in this vm is very bugged probably, try remove the lock file without reboot after, and tail -f /var/log/vzctl.log and start the VM at the same time.... see what the log file says.
  12. M

    container locked

    Hi, Take a look in /var/lib/vz/lock , and delete the lock file that belongs to the VM. Marius
  13. M

    Dual homing a VM

    To achive this you need to manualy edit the VEID.conf for your vm Take a look at this page for more information: http://vireso.blogspot.com/2008/02/2-veth-with-2-brindges-on-openvz-at.html Marius
  14. M

    Dual homing a VM

    Hi again, So br1 is the LAN interface, and br0 is the inet interface, that's another situation, you can set the netmask to the network you want on br1, and configure whatever ipnet you want on that interface, i thought you were after an reduant solutions, with two different isp's on br0 and...
  15. M

    Dual homing a VM

    Hi, Setup br1 the same way you did setup br0, and you will achive this, But.. with different ip-nets and networks, you can't use both connections at the same time, so only 1 will work as your in/out interface. Marius
  16. M

    Dual homing a VM

    Hi, What do you want to achive doing this? Marius
  17. M

    Iptable nat rule for openvpn access ?

    Hi, I'm not very into iptables and NAT, but give it a try: iptables --table nat --append POSTROUTING --out-interface xxx -j MASQUERADE iptables --append FORWARD --in-interface xxx -j ACCEPT Remember to change 'xxx' to out and in interface. echo 1 > /proc/sys/net/ipv4/ip_forward Marius...
  18. M

    After upgrade to 1.2 - windows machines require activation

    Hi, I'm guessing some of the hardware in the vm's have been upgraded/changed, and Windows look at this as an major upgrade of the hardware, so the only possible way is to use old KVM.... Marius
  19. M

    Iptable nat rule for openvpn access ?

    Hi, In /etc/vz/vz.conf you can add: IPTABLES="ipt_REJECT ipt_tos ipt_TOS ipt_LOG ip_conntrack ipt_limit ipt_multiport iptable_filter iptable_mangle ipt_TCPMSS ipt_tcpmss ipt_ttl ipt_length ipt_state iptable_nat ip_nat_ftp" To give the container access to every iptables module there is avaible...
  20. M

    vzmigrate

    Hi, I do not think it is possible to use vzmigrate to change the VEID for the container, i think you will need to look into the command 'vzdump' instead. I belive that is the only solution for changing VEID, without manualy configuring different .conf files. Look at...