danke für die Antwort...
nachdem ich
#ifconfig wlan0 192.168.1.15
aufgerufen habe, hatte ich Zugriff auf wlan0:
# iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
wlan0 802.11b/g NIC ESSID:""
Mode:Managed Frequency=2.472 GHz Access Point: 00:00:00:00:00:00
Bit Rate:1 Mb/s
Retry:off RTS thr=2432 B Fragment thr:off
Encryption key:off
Power Management:off
Link Quality=80/92 Signal level=64/154 Noise level=161/154
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
eth1 no wireless extensions.
sit0 no wireless extensions.
Die Einstellungen habe ich dann mit
# iwconfig wlan0 essid "Speedy"
geändert.
Das ergab dann:
# iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
wlan0 802.11b/g NIC ESSID:"Speedy"
Mode:Managed Frequency=2.452 GHz Access Point: 00:13:49:07:BA:59
Bit Rate:11 Mb/s
Retry:off RTS thr=2432 B Fragment thr:off
Encryption key:****-****-****-****-****-****-** Security mode:open
Power Management:off
Link Quality=76/92 Signal level=63/154 Noise level=161/154
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
eth1 no wireless extensions.
sit0 no wireless extensions.
und ich konnte mit
# ping 192.168.1.1
PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
64 bytes from 192.168.1.1: icmp_seq=1 ttl=254 time=5.69 ms
64 bytes from 192.168.1.1: icmp_seq=2 ttl=254 time=2.31 ms
...
auf den Router zugreifen... also klappts!
Das neue Problem: Nach dem Neustart ist alles futsch... darufhin hab ich /etc/network/interfaces geändert:
# 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
# This is a list of hotpluggable network interfaces.
# They will be activated automatically by the hotplug subsystem.
mapping hotplug
script grep
map eth1
# The primary network interface
iface eth1 inet dhcp
iface wlan0 inet dhcp
wireless-essid Speedy
wireless-key s:xxxxxxxxxx # natürlich hier der richtige Key...
auto wlan0
Das müßte doch eigentlich gehen oder nicht?! Klappt aber nicht. Nach dem Neustart gibt mir
#iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
wlan0 802.11b/g NIC ESSID:""
Mode:Managed Frequency=2.472 GHz Access Point: 00:00:00:00:00:00
Bit Rate:1 Mb/s
Retry:off RTS thr=2432 B Fragment thr:off
Encryption key:off
Power Management:off
Link Quality=80/92 Signal level=64/154 Noise level=161/154
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
eth1 no wireless extensions.
sit0 no wireless extensions.
aus. Woran liegts? Bin doch so kurz vorm Ziel 😉
DANKE NOCHMAL