Brige Setup für VirtualBox

Deltachaos

New Member
Hallo ich möchte auf meinem Server ein Brige Setup für VirtualBox einrichten:
VirtualBox/Netzwerk ? Wiki ? ubuntuusers.de
nur leider gootes ist nach diesen Einstellungen der Server nach ausenhin offline und ich muss per LARA die alte Config wiederherstellen

Funktionireden Config:
Code:
### Hetzner Online AG - installimage
# Loopback device:
auto lo
iface lo inet loopback
 
# device: eth0
auto eth0
iface eth0 inet static
  address   85.10.206.233
  broadcast 85.10.206.255
  netmask   255.255.255.224
  gateway   85.10.206.225
#  up ifconfig $IFACE 0.0.0.0 up
#  down ifconfig $IFACE down
 
up route add -net 85.10.206.224 netmask 255.255.255.224 gw 85.10.206.225 eth0

Config wie ich denke das sie sein müsste:

Code:
### Hetzner Online AG - installimage
# Loopback device:
auto lo
iface lo inet loopback
 
# device: eth0
auto eth0
iface eth0 inet static
  address   85.10.206.233
  broadcast 85.10.206.255
  netmask   255.255.255.224
  gateway   85.10.206.225
  up ifconfig $IFACE 0.0.0.0 up
  down ifconfig $IFACE down
 
up route add -net 85.10.206.224 netmask 255.255.255.224 gw 85.10.206.225 eth0
 
auto tap0
iface tap0 inet manual
    up ifconfig $IFACE 0.0.0.0 up
    down ifconfig $IFACE down
    tunctl_user server
 
auto br0
iface br0 inet static
    address 78.47.73.219
    netmask 255.255.255.31
    bridge_ports eth0

hatt jemand verbesserungs vorschläge?
 
Back
Top