# 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
#allow-hotplug eth0
#iface eth0 inet dhcp
## This is an autoconfigured IPv6 interface
#iface eth0 inet6 auto

####
# The primary network interface
auto eth0
allow-hotplug eth0
iface eth0 inet static
# IP-Adresse des physischen Ethernet-Ports 
	address 192.168.13.3
	netmask 255.255.255.0
	network 192.168.13.0
	broadcast 192.168.13.255
# vorgelagerter Router, ueber den Ihr Linux-Router
# ins Internet kommt  
	gateway 192.168.13.6
# DNS-Server hat der Linux-Router selbst 
	dns-nameservers 192.168.13.3

# virtueller Ethernet-Port 
auto eth0:0
allow-hotplug eth0:0
iface eth0:0 inet static
# IP-Adresse des virtuellen Ethernet-Ports 
	address 192.168.13.9
	netmask 255.255.255.0
