Gentoo Archives: gentoo-user-de

From: marcel <daki.linux@×××××××.ch>
To: gentoo-user-de@l.g.o
Subject: [gentoo-user-de] WLAN WEP-Key
Date: Fri, 24 Mar 2006 19:00:38
Message-Id: 1143226806.7702.33.camel@localhost
1 Hallo Gentoo Freunde
2
3 Ich habe folgendes Problem mit meinem WLAN und zwar kriege ich es nicht
4 hin, dass der WEP Key beim starten automatisch auf den Adapter gepopelt
5 wirdt.
6 -eth0 LAN Adapter
7 -eth1 WLAN Adapter
8
9 Die Einstellungen:
10 * net *
11 # /etc/conf.d/net
12 modules=( "dhcpcd" )
13 config_eth0=( "dhcp" )
14 dhcpcd_eth0="-t 20"
15 dhcp_eth0="nodns nontp nonis"
16
17 * wireless *
18 # /etc/conf.d/wireless
19 modules=( "iwconfig" )
20 sleep_scan_eth1="2"
21 key_eth1="12345678901234567890123456 enc open"
22 config_eth1=( "dhcp" )
23 dhcpcd_eth1="-t 20"
24 dhcp_eth1="nodns nontp nonis"
25
26 * ausgabe iwconfig eth1 *
27 eth1 IEEE 802.11b/g ESSID:"local.daki.ch"
28 Mode:Auto Frequency:2.437 GHz Access Point:00:13:46:32:80:E0
29 Bit Rate:54 Mb/s Tx-Power=31 dBm Sensitivity=20/200
30 Retry min limit:8 RTS thr:2347 B Fragment thr:2346 B
31 Encryption key:off
32 Link Quality:95/0 Signal level:-32 dBm Noise level:-128 dBm
33 Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
34 Tx excessive retries:0 Invalid misc:0 Missed beacon:0n:0
35
36 Funktioniert, wenn im AP WEP deaktiviert ist...
37
38
39 Derzeitiger Workaround der funktioniert wen im AP WEP eingeschalten ist:
40
41 * local.start *
42 # /etc/conf.d/local.start
43 # This is a good place to load any misc programs
44 # on startup ( use 1>&2 to hide output)
45 bash /script/startwlan
46
47 * startwlan *
48 #!/bin/bash
49 iwconfig eth1 key 12345678901234567890123456
50 iwconfig eth1 key open
51 ifconfig eth1 up
52 dhcpcd eth1
53
54 Hat jemand eine Idee, wie ich Gentoo dazu bringen kann den Schlüssel in
55 "/etc/conf.d/wireles" oder "/etc/conf.d/net" auch zu benutzen ?
56 Hab schon jenstes ohne Erfolg probiert:
57 - key in "/etc/conf.d/net" eintragen.
58 - key_eth1="12345678901234567890123456 enc open"
59 - key_eth1="[1] 1234-5678-9012-3456-7890-1234-56 key [1] enc open"
60
61
62 Gruss, Marcel
63
64 --
65 gentoo-user-de@g.o mailing list

Replies

Subject Author
Re: [gentoo-user-de] WLAN WEP-Key "Jörg Bornkessel" <ml@××××××××.de>
Re: [gentoo-user-de] WLAN WEP-Key Felix Schuster <felix.schuster@×××.at>