# This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface #------------------------------- auto lo iface lo inet loopback # The primary network interface #------------------------------- auto eth0 allow-hotplug eth0 #iface eth0 inet static # address 192.168.1.101 # netmask 255.255.255.0 # network 192.168.1.0 # broadcast 192.168.1.255 # gateway 192.168.1.1 # dns-nameservers 192.168.1.1 # The primary network interface #------------------------------- auto eth1 allow-hotplog eth1 iface eth1 inet dhcp # Bridges -> so was wie ein virtueller Netzwerk-Switch #----------------------------------------------------- auto xenbr0 allow-hotplug xenbr0 iface xenbr0 inet static bridge_ports eth0 address 192.168.1.101 broadcast 192.168.1.255 netmask 255.255.255.0 gateway 192.168.1.1 dns-nameservers 192.168.1.1 #was hier fehlt/flsch ist findet ihr selber raus :) iface xenbr1 inet manual bridge_ports eth1 address 192.168.2.101 broadcast 192.168.2.255 netmask 255.255.255.0 gateway 192.168.2.1 dns-nameservers 192.168.2.1