# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)

# The loopback interface
auto lo
iface lo inet loopback

# Wireless interfaces
# auto wlan0 # done by udev script
iface wlan0 inet dhcp
	pre-up /etc/network/wpa-supplicant.sh
	pre-down killall wpa_supplicant
#iface wlan0 inet static
#	pre-up /etc/network/wpa-supplicant.sh
#	pre-down killall wpa_supplicant
#	address 192.168.0.21
#	netmask 255.255.255.0
#	network 192.168.0.0
#	broadcast 192.168.0.255
#	hostname $(cat /etc/hostname)
#	post-up ip route add default via 192.168.0.1\
#	dev wlan0 metric 200
#	post-up /etc/network/dhcp-metric.sh wlan0 200

#iface atml0 inet dhcp

# Wired or wireless interfaces
auto eth0
# dynamische ip
iface eth0 inet dhcp
	hostname $(cat /etc/hostname)
	pre-up echo eth0 pre-up: config speed and duplex
	pre-up ifconfig eth0 up
	pre-up ethtool -s eth0 autoneg on advertise 0x0f ;sleep 3
	pre-up [ ! -x /etc/tcpdump_at_start.sh ] || /etc/tcpdump_at_start.sh
#statische ip
#iface eth0 inet static
#	pre-up echo eth0 pre-up: config speed and duplex
#	pre-up ifconfig eth0 up
#	pre-up ethtool -s eth0 autoneg on advertise 0x0f ;sleep 3
#	pre-up [ ! -x /etc/tcpdump_at_start.sh ] || /etc/tcpdump_at_start.sh
#	address 192.168.0.21
#	netmask 255.255.255.0
#	network 192.168.0.0
#	broadcast 192.168.0.255
#	gateway 192.168.0.1
#	hostname $(cat /etc/hostname)

#iface eth1 inet dhcp

# Ethernet/RNDIS gadget (g_ether)
# ... or on host side, usbnet and random hwaddr
#iface usb0 inet static
#	address 192.168.7.2
#	netmask 255.255.255.0
#	network 192.168.7.0
#	gateway 192.168.7.1

# Bluetooth networking
#iface bnep0 inet dhcp

