Hetzner eq6 no connect

Can anyone share how to configure network on hetzner EQ servers.
I cant get it working.

You should register for the hetzner forum (forum.hetzner.de, hetzner customers only), it's quite a good resource for stuff like that. This is how i did it:

http://forum.hetzner.de/wbb2/thread.php?postid=138779 said:
# device: eth0
auto eth0
iface eth0 inet manual

auto br0
iface br0 inet static
address 188.99.99.177
broadcast 188.99.99.191
netmask 255.255.255.192
gateway 188.99.99.129
bridge_ports eth0
bridge_stp off
bridge_fd 0
bridge_maxwait 0
 
I manage to get it working by myself

xx.xx.xx.xx 1st IP
yy.yy.yy.yy 2nd IP
zz.zz.zz.zz. 3rd IP

ofcours netmask and broadcast should be as recieved from hetzner
/etc/network/interfaces on host:
Code:
auto lo
iface lo inet loopback

# device: eth0
auto  eth0
iface eth0 inet static
  address   xx.xx.xx.xx
  broadcast xx.xx.xx.xx
  netmask   255.255.255.224
  gateway   xx.xx.xx.xx
  post-up echo 1 > /proc/sys/net/ipv4/conf/eth0/proxy_arp
  post-up echo 1 > /proc/sys/net/ipv4/ip_forward



auto vmbr0
iface vmbr0 inet static
        address  yy.yy.yy.yy
        netmask  255.255.255.224
        bridge_ports none
        bridge_stp off
        bridge_fd 0
/etc/network/interfaces on guest:
important gateway should be IP of vmbr0

Code:
auto eth0
iface eth0 inet static
        address zz.zz.zz.zz
        netmask 255.255.255.224
        network zz.zz.zz.zz
        broadcast zz.zz.zz.zz
        gateway yy.yy.yy.yy
 
Last edited: