Wow. Danke, danke, danke.
Es hat jetzt endlich nach langem hin und her funktioniert. Das ganze funktioniert aber erst, seitdem ich den Rechner rebootet habe und dann das Modul ipw2200 mit rmmod ipw2200 entfernt und mit modprobe ipw2200 wieder hinzugefügt habe.
Habe endlich wieder eine IP-Adresse vom Router bekommen. Juhu!!!
Das einzige, was mich ein bisschen bei der Version des wpa_supplicants ist, dass keine Informationen mehr angezeigt werden (obwohl ich -dd eingestellt habe).
Code: Alles auswählen
root@daniel-laptop:/etc# ifup eth1
Daemonize..
Internet Software Consortium DHCP Client 2.0pl5
Copyright 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium.
All rights reserved.
Please contribute if you find this software useful.
For info, please visit http://www.isc.org/dhcp-contrib.html
sit0: unknown hardware address type 776
eth2: unknown hardware address type 24
sit0: unknown hardware address type 776
eth2: unknown hardware address type 24
Listening on LPF/eth1/00:0e:35:5c:f4:bf
Sending on LPF/eth1/00:0e:35:5c:f4:bf
Sending on Socket/fallback/fallback-net
DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 3
DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 4
DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 7
DHCPOFFER from 192.168.0.1
DHCPREQUEST on eth1 to 255.255.255.255 port 67
DHCPACK from 192.168.0.1
bound to 192.168.0.103 -- renewal in 43200 seconds.
Hier sind meine Einstellungen für eine WPA-PSK-Verschlüsselung mit (vorerst) TKIP!
Die Version vom wpa_supplicant von
http://www.backports.org/package.php?se ... supplicant
Code: Alles auswählen
root@daniel-laptop:/etc# wpa_supplicant -v
wpa_supplicant v0.4.8
Copyright (c) 2003-2006, Jouni Malinen <jkmaline@cc.hut.fi> and contributors
Die /etc/default/wpasupplicant.dpkg-ba
Code: Alles auswählen
root@daniel-laptop:/etc# cat default/wpasupplicant.dpkg-bak
# /etc/default/wpasupplicant
# WARNING! Make sure you have a configuration file!
ENABLED=1
# Useful flags:
# -D <driver> Wireless Driver
# -i <ifname> Interface (required, unless specified in config)
# -c <config file> Configuration file
# -d Debugging (-dd for more)
# -w Wait for interface to come up
OPTIONS="-dd -Bw -ieth1 -Dwext -c/etc/wpa_supplicant.conf"
Meine /etc/wpa_supplicant.conf
Code: Alles auswählen
root@daniel-laptop:/etc# cat wpa_supplicant.conf
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
eapol_version=1
ap_scan=1
fast_reauth=1
network={
ssid="wrt"
scan_ssid=1
mode=0
proto=WPA
pairwise=TKIP
key_mgmt=WPA-PSK
auth_alg=OPEN
group=TKIP
psk="H345.y239EyiElM6785Nd"
}
Meine /etc/network/interface
Code: Alles auswählen
root@daniel-laptop:/etc# cat network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
auto lo
iface lo inet loopback
iface eth0 inet dhcp
iface eth1 inet dhcp
#
# W-LAN settings for wep-encryption
#
wireless_mode managed
wireless_essid wrt
wireless channel 1
wireless_key C81B82C4665A28D046A078C293
name ipw2200
#
# W-LAN settings for wpa-psk
#
pre-up /sbin/wpa_supplicant -dd -Bw -Dwext -ieth1 -c/etc/wpa_supplicant.conf
post-down killall -q wpa_supplicant
Nochmals ein Dankeschön an alle, die mir geholfen haben!