Sie sind nicht angemeldet.

Lieber Besucher, herzlich willkommen bei: GentooForum.de. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.

1

19.08.2009, 00:20

bcm43xx in travelmate 2482 zum laufen bekommen.

Hey ho,

ich habe einen Acer Travelmate 2482 mit einer

Quellcode

1
0a:03.0 Network controller: Broadcom Corporation BCM4318 [AirForce One 54g] 802.11g Wireless LAN Controller (rev 02)
Wlankarte.

Ich bin nach diesem Thread gegangen: Broadcom Corporation BCM4318 [AirForce One 54g] 802.11g Wireless LAN Controller / AMD64

Habe aber einen anderen Treiber genommen, genauer genommen diesen hier: http://global-download.acer.com/GDFiles\Driver/Wireless LAN/Wireless LAN_Broadcom_4.102.15.56_VistaX86.zip?acerid=633638854884078177&Step1=Notebook&Step2=TravelMate&Step3=TravelMate 2480&OS=V10&LC=de&SC=EMEA_8

Hat auch alles bis zum Ende durch geklappt.

Quellcode

1
2
3
4
avalarion-laptop avalarion # lsmod
Module              	Size  Used by
ndiswrapper       	126400  0 
sky2               	39160  0


Also der Mod scheint zu laden.

Gehe ich nun über zum nächsten:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
avalarion-laptop avalarion # iwconfig
lo    	no wireless extensions.

wmaster0  no wireless extensions.

wlan0 	IEEE 802.11bg  ESSID:""  
      	Mode:Managed  Frequency:2.412 GHz  Access Point: Not-Associated   
      	Tx-Power=27 dBm   
      	Retry min limit:7   RTS thr:off   Fragment thr:off
      	Encryption key:off
      	Power Management:off
      	Link Quality:0  Signal level:0  Noise level:0
      	Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
      	Tx excessive retries:0  Invalid misc:0   Missed beacon:0

sit0  	no wireless extensions.

eth0  	no wireless extensions.


wlan0 ist nicht verbunden. Und was macht eth0 unter meinen Wlan Karten?

less /etc/wpa_supplicant/wpa_supplicant.conf

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Die folgende Zeile nicht ändern, sonst wird nichts funktionieren
ctrl_interface=/var/run/wpa_supplicant

# Sicherstellen, dass nur root die WPA Konfiguration lesen kann
ctrl_interface_group=0

# wpa_supplicant soll sich um scannen und AP Auswahl kümmern
ap_scan=1

network={
  ssid="Google"
  psk="Mein PW"
  # Je höher die Priorität, desto schneller werden wir verknüpft
  priority=9
  scan_ssid=1
}

/etc/wpa_supplicant/wpa_supplicant.conf lines 1-17/17 (END)


less /etc/conf.d/wireless

Quellcode

1
2
3
4
5
6
essid_wlan0='Google'
mode_wlan0='auto'
channel_wlan0='3'
key_Google='Mein_PW'
config_Google=('dhcp')
dhcpd_Google='-t 5'


less /etc/conf.d/net

Quellcode

1
2
3
4
5
6
7
8
9
10
11
# This blank configuration will automatically use DHCP for any net.*
# scripts in /etc/init.d.  To create a more complete configuration,
# please review /etc/conf.d/net.example and save your configuration
# in /etc/conf.d/net (this file :]!).
###config_eth0=( "dhcp" )

# wpa_supplicant gegen<C3><BC>ber wireless-tools bevorzugen
modules=( "wpa_supplicant" )

config_eth0=( "192.168.1.79 netmask 255.255.255.0 brd 192.168.1.255" )
routes_eth0=( "default via 192.168.1.1" )


Ich hoffe, ich hab nichts wichtiges vergessen, aber an sich sollte da irgendwo der Wurm drin sein. Ich denke der WPA_Supplicant ist der Fehler, aber sicher bin ich auch nicht ;)

Gruß

Bastian

Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »Avalarion« (25.10.2009, 15:57)


2

21.08.2009, 15:35

Zitat

wlan0 ist nicht verbunden. Und was macht eth0 unter meinen Wlan Karten?
Nicht viel. iwconfig tastet ALLE interfaces ab und guckt nach einer wireless extension. Die findet es bei eth0 ohnehin nicht. Ist alles korrekt.

Welchen Treiber nimmst du bei wpa_supplicant? .. und versuche es mal von Hand auf der Shell zu starten. Was tut sich?


edit: http://www.gentooforum.de/post/123147/et…rtet-nicht.html ist das dasselbe Problem?
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

3

21.08.2009, 15:40

Hey ho,

bin jetzt gleich übers Wochenende erstmal weg, teste es vielleicht gleich nochmal manuell, aber eigentlich tut sich da nicht viel. Hab auch mittlerweile SSH ZUgang übers Internet freigeschaltet, dann hat sich ein Kumpel von mir das angeschaut, der hat aber auch keine Ahnung.

Nein, das ist nicht das Selbe Problem, das waren zwei Probleme, einmal ETH0 und einmal WLan. In dem anderen Thread haben wir nur Eth0 behandelt, Wlan0 wollte ich halt hier behandeln.

Gruß

Bastian

4

23.08.2009, 21:43

Hey ho,

vielleicht hilft dir das ja mir zu helfen:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
avalarion-laptop ~ # /etc/init.d/net.wlan0 restart
 * Stopping wlan0
 * 	/etc/conf.d/wireless is deprecated
 * 	Please put all settings in /etc/conf.d/net
 * 	/etc/conf.d/wireless is deprecated
 * 	Please put all settings in /etc/conf.d/net
 *   Bringing down wlan0
 * 	Shutting down wlan0 ...                                        	[ ok ]
 * Starting wlan0
 * 	/etc/conf.d/wireless is deprecated
 * 	Please put all settings in /etc/conf.d/net
 * 	/etc/conf.d/wireless is deprecated
 * 	Please put all settings in /etc/conf.d/net
 *   Starting wpa_supplicant on wlan0 ...                             	[ ok ]
 *   Starting wpa_cli on wlan0 ...                                    	[ ok ]
 * 	Backgrounding ...
avalarion-laptop ~ # iwlist scanning
lo    	Interface doesn't support scanning.

wmaster0  Interface doesn't support scanning.

wlan0 	No scan results

sit0  	Interface doesn't support scanning.

eth0  	Interface doesn't support scanning.

avalarion-laptop ~ # iwconfig                                              	
lo    	no wireless extensions.

wmaster0  no wireless extensions.

wlan0 	IEEE 802.11bg  ESSID:"Google"  
      	Mode:Managed  Frequency:2.447 GHz  Access Point: Not-Associated   
      	Tx-Power=27 dBm   
      	Retry min limit:7   RTS thr:off   Fragment thr:off
      	Encryption key:off
      	Power Management:off
      	Link Quality:0  Signal level:0  Noise level:0
      	Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
      	Tx excessive retries:0  Invalid misc:0   Missed beacon:0

sit0  	no wireless extensions.

eth0  	no wireless extensions.

avalarion-laptop ~ # more /etc/conf.d/net
# This blank configuration will automatically use DHCP for any net.*
# scripts in /etc/init.d.  To create a more complete configuration,
# please review /etc/conf.d/net.example and save your configuration
# in /etc/conf.d/net (this file :]!).
###config_eth0=( "dhcp" )

# wpa_supplicant gegenüber wireless-tools bevorzugen
modules=( "wpa_supplicant" )

wpa_supplicant_wlan0="-Dwext"

config_eth0=( "192.168.1.79 netmask 255.255.255.0 brd 192.168.1.255" )
routes_eth0=( "default via 192.168.1.1" )



Der Treiber sollte also WEXT sein. Ich schaue sobald mein emerge world fertig ist mal was mein XUbuntu da an Einstellungen hat.

Wünsche dir nen schönen Abend!

Gruß

Bastian

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Avalarion« (25.10.2009, 15:57)


5

24.08.2009, 10:05

Sieht doch soweit ganz gut aus. Hast du vlt. ein /etc/conf.d/wireless herumliegen, weswegen er sich da beschwert?

Nebenbei: du konfigurierst da nur deine eth0. wlan0 ist zwar da, hat aber keine IP oder routing.

Wenn wpa_supplicant als Daemon läuft solltest du in einer Shell in einem WM deriner Wahl auch

Quellcode

1
$ wpa_gui
aufrufen können, mit dem du dann bequem ein WLAN aussichen kannst.

(Es gibt da noch "wicd" als GUI frontend ...)
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

6

24.08.2009, 13:22

Mit WICD hab ich unter Ubuntu schon gearbeitet, hat mir gefallen, aber eigentlich wollte ich ohne GUI Manager für Wlans auskommen...

Naja, werde ich mir dann wohl doch mal anschauen.
die /etc/conf.d/wireless hab ich in ~/ verschoben

/etc/conf.d/net habe ich die eth0 zeilen kopiert und an wlan0 angepasst. Wlan sollte nun die 80 sein, lan die 79. Die 80 ist immernoch unassosciated und damit natürlich unanpingbar.

Ich probier nun mal wicd, auch wenn ich irgendwie nicht glaube, dass es viel ändert. Der emerged immernoch OpenOffice, sonst würde ich auch mal neustarten :thumbdown: .

7

24.08.2009, 13:37

Oh, du kannst natürlich auch ohne GUI ran. Ich denke, die meisten geniessen das Point&Click Feeling, wenn es um WLAN Konfiguration geht. Ausserdem zeigt es dir, das es mal grundstättlich geht ...
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

8

24.08.2009, 13:46

Point&Click? :D Das Notebook soll KISS ( Keep It Simply Stupid ) sein ;)

Da soll nichts drauf, was ich da drauf nicht brauche. Ist halt für die Uni und nicht für mehr. 90% Der Wlan Konfiguration wäre eh: "Fine mein Wlan zuhause" und "Finde das Wlan in der Uni". Und dafür brauche ich keine Gui^^

naja, ich meld mich wieder, wenn ich wicd emerged habe...

9

24.08.2009, 14:02

Das sei dir ungenommen. =)

Es ist halt nur eine Idee, das Ding zum Laufen zu kriegen ... und wenn du dann das richtige Setting hast, kannst du die GUI-lastigen Teile wieder runterschmeissen und deine config via wpa_cli durchführen.

KISS heisst ja nicht, das man sich ein Bein ausreissen muss um ja Simply&Stupid zu beiben ... *g*
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

10

25.08.2009, 00:55

Ok, unter Ubuntu hab ich nen anderen Mod geladen: b43

Ignorieren wir den, ich suche weiter nach den Einstellungen unter Gentoo.

WICD ist installiert. Nachdem ich dem rc-update wicd zugefügt hatte und unter root die neue XFCE Oberfläche genossen habe, schaute ich mir WICD an.

Ist ja alles auf englisch, Pfui! Naja unwichtig, iwlist scanning scheint aber mit Gui zu klappen. Der ausgewählte Treiber ist WEXT und der zeigt exakt das selbe wie mein Standrechner WICD.

So, ich erkläre kurz, wie es weiter geht:

WICD erkennt nach jedem Scann erst wieder einen aktualisierten scann, wenn man auf den "logout" geklickt hat.

Wenn ich mit WPA-PSK arbeite bekomme ich gar kein Netzwerk hin. Also habe ich testweise im Haus WPA deaktiviert. Ich bekomme eine Verbindung, diese bricht sofort ab. Aber er hat eine neue IP zugewiesen bekommen.

Wenn dir aktiv nichts mehr einfällt hätte ich als Vorschlag oder besser Bitte eine Jabber / SSH Session in der wir das mal gemeinsam durchgehen. Falls das schneller geht. Ich hätte den Laptop gerne am Freotag mit im Urlaub zum Shadowrun spielen, daher frage ich ;)

Gruß

Bastian

11

25.08.2009, 10:20

Hast du diese Zeile in deiner wpa_supplicant.conf?

Quellcode

1
update_config=1


Das ist hilfreich, damit er sich Settings merkt, wenn du via wpa_gui darauf zugreifst. Hast du so ein Netz gefunden, sollte es IMHO auch problemlos mit wpa_client gehen und bei Bedarf machst du einfach Copy&Paste.

wext ist die Universal Wireless Extension ... also eine Art Standardschnittstelle.

Jabber ist auf meine HP ersichtlich, aber ich kann dir so nicht beistehen, da ich nur punktuell Zeit habe (und im Moment eigentlich sowieso nicht). :(

Aber: gib Ausgaben durch! Output! Output! Output! Wenn möglich starte Programme in der Shell und stell den Output hier rein. Das ist faktisch. Und so kann man den Problem auf die Schliche kommen.

Dazu zählt im übrigen auch Verdächtiges in dmesg sowie im syslog.
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

12

25.08.2009, 13:05

Dann fangen wir mal an mit den Ausgaben:

lsmod:

Quellcode

1
2
3
Module                  Size  Used by
ndiswrapper           126400  0 
sky2                   39160  0


wpa_supplicant.conf nach eintragen des scanns, vor starten von wicd:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
avalarion-laptop ~ # more /etc/wpa_supplicant/wpa_supplicant.conf 
# Die folgende Zeile nicht ändern, sonst wird nichts funktionieren
ctrl_interface=/var/run/wpa_supplicant

# Sicherstellen, dass nur root die WPA Konfiguration lesen kann
ctrl_interface_group=0
update_config=1

# wpa_supplicant soll sich um scannen und AP Auswahl kümmern
ap_scan=1
#DRIVERS="-Dwext"

network={
  ssid="Google"
  psk="PW"
  # Je höher die Priorität, desto schneller werden wir verknüpft
  priority=9
  scan_ssid=1
}


dmesg: http://paste.ubuntuusers.de/396149/
Ich gestehe aus dmesg noch nicht soo viel auslesen zu können, weiß demnach auch nicht was wirklich wichtig ist.
WICD Log mit WPA Verschlüsselung:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
2009/08/25 14:22:01 :: ---------------------------
2009/08/25 14:22:01 :: wicd initializing...
2009/08/25 14:22:01 :: ---------------------------
2009/08/25 14:22:01 :: Automatically detected wireless interface wlan0
2009/08/25 14:22:01 :: found wireless_interface in configuration wlan0
2009/08/25 14:22:01 :: setting wireless interface wlan0
2009/08/25 14:22:01 :: automatically detected wired interface eth0
2009/08/25 14:22:01 :: found wired_interface in configuration eth0
2009/08/25 14:22:01 :: setting wired interface eth0
2009/08/25 14:22:01 :: found wpa_driver in configuration ndiswrapper
2009/08/25 14:22:01 :: setting wpa driver ndiswrapper
2009/08/25 14:22:01 :: found always_show_wired_interface in configuration False
2009/08/25 14:22:01 :: found use_global_dns in configuration False
2009/08/25 14:22:01 :: setting use global dns to False
2009/08/25 14:22:01 :: setting use global dns to boolean False
2009/08/25 14:22:01 :: found global_dns_1 in configuration None
2009/08/25 14:22:01 :: found global_dns_2 in configuration None
2009/08/25 14:22:01 :: found global_dns_3 in configuration None
2009/08/25 14:22:01 :: setting global dns
2009/08/25 14:22:01 :: global dns servers are None None None
2009/08/25 14:22:01 :: found auto_reconnect in configuration True
2009/08/25 14:22:01 :: setting automatically reconnect when connection drops
2009/08/25 14:22:01 :: found debug_mode in configuration 0
2009/08/25 14:22:01 :: found wired_connect_mode in configuration 1
2009/08/25 14:22:01 :: found signal_display_type in configuration 0
2009/08/25 14:22:01 :: found dhcp_client in configuration 0
2009/08/25 14:22:01 :: Setting dhcp client to 0
2009/08/25 14:22:01 :: found link_detect_tool in configuration 0
2009/08/25 14:22:01 :: found flush_tool in configuration 0
2009/08/25 14:22:01 :: Wireless configuration file found...
2009/08/25 14:22:01 :: Wired configuration file found...
2009/08/25 14:22:01 :: chmoding configuration files 0600...
2009/08/25 14:22:01 :: chowning configuration files root:root...
2009/08/25 14:22:01 :: Using wired interface...eth0
2009/08/25 14:22:01 :: Using wireless interface...wlan0
2009/08/25 14:22:01 :: autoconnecting... wlan0
2009/08/25 14:22:03 :: Putting interface down
2009/08/25 14:22:03 :: Attempting to autoconnect with wired interface...
2009/08/25 14:22:03 :: Releasing DHCP leases...
2009/08/25 14:22:03 :: Setting false IP...
2009/08/25 14:22:03 :: Stopping wpa_supplicant and any DHCP clients
2009/08/25 14:22:03 :: Flushing the routing table...
2009/08/25 14:22:03 :: Putting interface up...
2009/08/25 14:22:03 :: Running DHCP
2009/08/25 14:22:03 :: eth0: dhcpcd 4.0.13 starting
2009/08/25 14:22:03 :: 
2009/08/25 14:22:04 :: eth0: waiting for carrier
2009/08/25 14:22:04 :: 
2009/08/25 14:22:04 :: eth0: carrier acquired
2009/08/25 14:22:04 :: 
2009/08/25 14:22:04 :: eth0: broadcasting for a lease
2009/08/25 14:22:04 :: 
2009/08/25 14:22:07 :: eth0: carrier lost
2009/08/25 14:22:07 :: 
2009/08/25 14:22:09 :: eth0: carrier acquired
2009/08/25 14:22:09 :: 
2009/08/25 14:22:09 :: eth0: broadcasting for a lease
2009/08/25 14:22:09 :: 
2009/08/25 14:22:10 :: eth0: offered 192.168.1.101 from 192.168.1.1
2009/08/25 14:22:10 :: 
2009/08/25 14:22:10 :: eth0: acknowledged 192.168.1.101 from 192.168.1.1
2009/08/25 14:22:10 :: 
2009/08/25 14:22:10 :: eth0: checking 192.168.1.101 is available on attached networks
2009/08/25 14:22:10 :: 
2009/08/25 14:22:15 :: eth0: leased 192.168.1.101 for 86400 seconds
2009/08/25 14:22:15 :: 
2009/08/25 14:22:15 :: 
2009/08/25 14:22:15 :: DHCP connection successful
2009/08/25 14:22:15 :: Connecting thread exiting.
2009/08/25 14:25:47 :: Connecting to wireless network Google
2009/08/25 14:25:47 :: Putting interface down
2009/08/25 14:25:47 :: Releasing DHCP leases...
2009/08/25 14:25:47 :: Setting false IP...
2009/08/25 14:25:47 :: Stopping wpa_supplicant and any DHCP clients
2009/08/25 14:25:47 :: Flushing the routing table...
2009/08/25 14:25:47 :: Generating psk...
2009/08/25 14:25:47 :: Attempting to authenticate...
2009/08/25 14:25:47 :: Putting interface up...
2009/08/25 14:26:27 :: wpa_supplicant authentication may have failed.
2009/08/25 14:26:27 :: exiting connection thread
2009/08/25 14:26:30 :: Putting interface down
2009/08/25 14:26:30 :: Attempting to autoconnect with wired interface...
2009/08/25 14:26:30 :: Releasing DHCP leases...
2009/08/25 14:26:30 :: Setting false IP...
2009/08/25 14:26:30 :: Stopping wpa_supplicant and any DHCP clients
2009/08/25 14:26:30 :: Flushing the routing table...
2009/08/25 14:26:30 :: Putting interface up...
2009/08/25 14:26:30 :: Running DHCP
2009/08/25 14:26:30 :: eth0: dhcpcd 4.0.13 starting
2009/08/25 14:26:30 :: 
2009/08/25 14:26:30 :: eth0: waiting for carrier
2009/08/25 14:26:30 :: 
2009/08/25 14:26:31 :: eth0: carrier acquired
2009/08/25 14:26:31 :: 
2009/08/25 14:26:31 :: eth0: broadcasting for a lease
2009/08/25 14:26:31 :: 
2009/08/25 14:26:32 :: eth0: offered 192.168.1.101 from 192.168.1.1
2009/08/25 14:26:32 :: 
2009/08/25 14:26:32 :: eth0: acknowledged 192.168.1.101 from 192.168.1.1
2009/08/25 14:26:32 :: 
2009/08/25 14:26:32 :: eth0: checking 192.168.1.101 is available on attached networks
2009/08/25 14:26:32 :: 
2009/08/25 14:26:37 :: eth0: leased 192.168.1.101 for 86400 seconds
2009/08/25 14:26:37 :: 
2009/08/25 14:26:37 :: 
2009/08/25 14:26:37 :: DHCP connection successful
2009/08/25 14:26:37 :: Connecting thread exiting.


Ich splitte mal in 2 Posts. Ich starte nun mit der Eintstellung "Update_config=1" neu und schau mir das ganze dann nochmal an. Das wird dann der nächste Post.

Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »Avalarion« (25.10.2009, 15:56)


13

25.08.2009, 13:27

Sooo...

Ich habe zwischen den beiden Ausgaben nichts gemacht außer an meiner Tastatur im anderen Zimmer über SSH den Befehl gegeben:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
avalarion-laptop ~ # iwlist scanning
lo        Interface doesn't support scanning.

wmaster0  Interface doesn't support scanning.

wlan0     Scan completed :
          Cell 01 - Address: 00:15:0C:68:28:71
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=49/70  Signal level=-61 dBm  
                    Encryption key:on
                    ESSID:"Wieczorek"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s
                              36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=0000000ba45faa48
                    Extra: Last beacon: 6290ms ago
                    IE: Unknown: 0009576965637A6F72656B
                    IE: Unknown: 010482848B96
                    IE: Unknown: 03010B
                    IE: Unknown: 2A0104
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: Unknown: 32080C1218243048606C
                    IE: Unknown: DD0A0800280101000200FF0F
          Cell 02 - Address: 00:15:0C:16:6C:F6
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=49/70  Signal level=-61 dBm  
                    Encryption key:on
                    ESSID:"Schumacher"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 22 Mb/s
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s
                              36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=000001e3266b12e7
                    Extra: Last beacon: 6290ms ago
                    IE: Unknown: 000A536368756D6163686572
                    IE: Unknown: 010582848B962C
                    IE: Unknown: 03010B
                    IE: Unknown: 2A0104
                    IE: Unknown: 32080C1218243048606C
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (1) : TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD0A0800280101000200FF0F

sit0      Interface doesn't support scanning.

eth0      Interface doesn't support scanning.

avalarion-laptop ~ # iwconfig
lo        no wireless extensions.

wmaster0  no wireless extensions.

wlan0     IEEE 802.11bg  ESSID:"Google"  
          Mode:Managed  Frequency:2.447 GHz  Access Point: Not-Associated   
          Tx-Power=27 dBm   
          Retry min limit:7   RTS thr:off   Fragment thr:off
          Encryption key:off
          Power Management:off
          Link Quality:0  Signal level:0  Noise level:0
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:0   Missed beacon:0

sit0      no wireless extensions.

eth0      no wireless extensions.

avalarion-laptop ~ # iwlist scanning
lo        Interface doesn't support scanning.

wmaster0  Interface doesn't support scanning.

wlan0     No scan results

sit0      Interface doesn't support scanning.

eth0      Interface doesn't support scanning.


Dazwischen schieb ich dann nochmal die letzen Zeilen der dmesg

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[   18.703297] sky2 eth0: enabling interface
[   18.703379] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   20.443198] sky2 eth0: Link is up at 100 Mbps, full duplex, flow control both
[   20.443198] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   22.460118] b43 ssb0:0: firmware: requesting b43/ucode5.fw
[   22.552196] b43 ssb0:0: firmware: requesting b43/pcm5.fw
[   22.566021] b43 ssb0:0: firmware: requesting b43/b0g0initvals5.fw
[   22.573522] b43 ssb0:0: firmware: requesting b43/b0g0bsinitvals5.fw
[   22.693110] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[   22.710130] b43-phy0 debug: Chip initialized
[   22.710188] b43-phy0 debug: PIO initialized
[   22.719763] Registered led device: b43-phy0::tx
[   22.719789] Registered led device: b43-phy0::rx
[   22.719830] b43-phy0 debug: Wireless interface started
[   22.739199] b43-phy0 debug: Adding Interface type 2
[   22.739492] b43-phy0: Radio turned on by software
[   22.743116] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   23.637373] wlan0: authenticate with AP 00:1e:e5:5a:f8:34
[   23.639113] wlan0: authenticated
[   23.639117] wlan0: associate with AP 00:1e:e5:5a:f8:34
[   23.641604] wlan0: RX AssocResp from 00:1e:e5:5a:f8:34 (capab=0x411 status=0 aid=4)
[   23.641609] wlan0: associated
[   23.642363] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   27.859831] sky2 eth0: disabling interface
[   27.949214] dhcpcd used greatest stack depth: 6304 bytes left
[   27.961925] sky2 eth0: enabling interface
[   27.962277] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   28.006499] wlan0: deauthenticating by local choice (reason=3)
[   28.215349] route used greatest stack depth: 5824 bytes left
[   29.007245] wlan0: deauthenticating by local choice (reason=3)
[   29.007276] b43-phy0 debug: Removing Interface type 2
[   29.007426] b43-phy0 debug: Wireless interface stopped
[   29.645016] sky2 eth0: Link is up at 100 Mbps, full duplex, flow control both
[   29.645092] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   31.704035] sky2 eth0: hung mac 0:86 fifo 194 (2:196)
[   31.704040] sky2 eth0: receiver hang detected
[   31.704057] sky2 eth0: disabling interface
[   31.706962] sky2 eth0: enabling interface
[   33.390001] sky2 eth0: Link is up at 100 Mbps, full duplex, flow control both
[   40.094080] eth0: no IPv6 routers present
[  406.234102] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  406.251130] b43-phy0 debug: Chip initialized
[  406.251187] b43-phy0 debug: PIO initialized
[  406.260828] Registered led device: b43-phy0::tx
[  406.260851] Registered led device: b43-phy0::rx
[  406.260893] b43-phy0 debug: Wireless interface started
[  406.280196] b43-phy0 debug: Adding Interface type 2
[  406.280460] b43-phy0: Radio turned off by software
[  406.280868] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[  406.326702] b43-phy0: Radio turned on by software
[  407.124359] wlan0: authenticate with AP 00:1e:e5:5a:f8:34
[  407.126099] wlan0: authenticated
[  407.126103] wlan0: associate with AP 00:1e:e5:5a:f8:34
[  407.128655] wlan0: RX AssocResp from 00:1e:e5:5a:f8:34 (capab=0x411 status=0 aid=4)
[  407.128659] wlan0: associated
[  407.129411] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[  407.138146] b43-phy0 debug: RX: Packet dropped
[  413.319165] wlan0: no probe response from AP 00:1e:e5:5a:f8:34 - disassociating
[  417.836093] wlan0: no IPv6 routers present


Sehr seltsam!

Jetzt gehts an WICD!

Habe versucht zu connecten, was nicht geklappt hat.

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
2009/08/25 15:19:20 :: Connecting to wireless network Google
2009/08/25 15:19:20 :: Putting interface down
2009/08/25 15:19:20 :: Releasing DHCP leases...
2009/08/25 15:19:20 :: Setting false IP...
2009/08/25 15:19:21 :: Stopping wpa_supplicant and any DHCP clients
2009/08/25 15:19:21 :: Flushing the routing table...
2009/08/25 15:19:21 :: Generating psk...
2009/08/25 15:19:21 :: Attempting to authenticate...
2009/08/25 15:19:21 :: Putting interface up...
2009/08/25 15:19:23 :: Failed to find status in wpa_cli result 'STATUS' command timed out.
2009/08/25 15:19:23 :: 
2009/08/25 15:19:23 :: exiting connection thread
2009/08/25 15:19:26 :: Putting interface down
Attempting to autoconnect with wired interface...
2009/08/25 15:19:26 :: 
2009/08/25 15:19:26 :: Releasing DHCP leases...
2009/08/25 15:19:26 :: Setting false IP...
2009/08/25 15:19:26 :: Stopping wpa_supplicant and any DHCP clients
2009/08/25 15:19:26 :: Flushing the routing table...
2009/08/25 15:19:26 :: Putting interface up...
2009/08/25 15:19:26 :: Running DHCP
2009/08/25 15:19:26 :: eth0: dhcpcd 4.0.13 starting
2009/08/25 15:19:26 :: 
2009/08/25 15:19:26 :: eth0: waiting for carrier
2009/08/25 15:19:26 :: 
2009/08/25 15:19:28 :: eth0: carrier acquired
2009/08/25 15:19:28 :: 
2009/08/25 15:19:28 :: eth0: broadcasting for a lease
2009/08/25 15:19:28 :: 
2009/08/25 15:19:30 :: eth0: offered 192.168.1.101 from 192.168.1.1
2009/08/25 15:19:30 :: 
2009/08/25 15:19:30 :: eth0: acknowledged 192.168.1.101 from 192.168.1.1
2009/08/25 15:19:30 :: 
2009/08/25 15:19:30 :: eth0: checking 192.168.1.101 is available on attached networks
2009/08/25 15:19:30 :: 
2009/08/25 15:19:35 :: eth0: leased 192.168.1.101 for 86400 seconds
2009/08/25 15:19:35 :: 
2009/08/25 15:19:35 :: 
2009/08/25 15:19:35 :: DHCP connection successful
2009/08/25 15:19:35 :: Connecting thread exiting.
2009/08/25 15:19:43 :: Connecting to wireless network Google
2009/08/25 15:19:43 :: Putting interface down
2009/08/25 15:19:43 :: Releasing DHCP leases...
2009/08/25 15:19:43 :: Setting false IP...
2009/08/25 15:19:44 :: Stopping wpa_supplicant and any DHCP clients
2009/08/25 15:19:44 :: Flushing the routing table...
2009/08/25 15:19:44 :: Generating psk...
2009/08/25 15:19:44 :: Attempting to authenticate...
2009/08/25 15:19:44 :: Putting interface up...
2009/08/25 15:19:49 :: wpa_supplicant rescan forced...
2009/08/25 15:20:29 :: wpa_supplicant authentication may have failed.
2009/08/25 15:20:29 :: exiting connection thread
2009/08/25 15:20:34 :: Putting interface down
2009/08/25 15:20:34 :: Attempting to autoconnect with wired interface...
2009/08/25 15:20:34 :: Releasing DHCP leases...
2009/08/25 15:20:34 :: Setting false IP...
2009/08/25 15:20:34 :: Stopping wpa_supplicant and any DHCP clients
2009/08/25 15:20:34 :: Flushing the routing table...
2009/08/25 15:20:34 :: Putting interface up...
2009/08/25 15:20:34 :: Running DHCP
2009/08/25 15:20:34 :: eth0: dhcpcd 4.0.13 starting
2009/08/25 15:20:34 :: 
2009/08/25 15:20:34 :: eth0: waiting for carrier
2009/08/25 15:20:34 :: 
2009/08/25 15:20:35 :: eth0: carrier acquired
2009/08/25 15:20:35 :: 
2009/08/25 15:20:35 :: eth0: broadcasting for a lease
2009/08/25 15:20:35 :: 
2009/08/25 15:20:36 :: eth0: offered 192.168.1.101 from 192.168.1.1
2009/08/25 15:20:36 :: 
2009/08/25 15:20:36 :: eth0: acknowledged 192.168.1.101 from 192.168.1.1
2009/08/25 15:20:36 :: 
2009/08/25 15:20:36 :: eth0: checking 192.168.1.101 is available on attached networks
2009/08/25 15:20:36 :: 
2009/08/25 15:20:42 :: eth0: leased 192.168.1.101 for 86400 seconds
2009/08/25 15:20:42 :: 
2009/08/25 15:20:42 :: 
2009/08/25 15:20:42 :: DHCP connection successful
2009/08/25 15:20:42 :: Connecting thread exiting.
2009/08/25 15:20:44 :: Putting interface down
2009/08/25 15:20:44 :: Releasing DHCP leases...
2009/08/25 15:20:44 :: Setting false IP...
2009/08/25 15:20:44 :: Stopping wpa_supplicant and any DHCP clients
2009/08/25 15:20:44 :: Flushing the routing table...
2009/08/25 15:20:44 :: Putting interface up...
2009/08/25 15:20:44 :: Running DHCP
2009/08/25 15:20:44 :: eth0: dhcpcd 4.0.13 starting
2009/08/25 15:20:44 :: 
2009/08/25 15:20:44 :: eth0: broadcasting for a lease
2009/08/25 15:20:44 :: 
2009/08/25 15:20:45 :: eth0: carrier lost
2009/08/25 15:20:45 :: 
2009/08/25 15:20:46 :: eth0: carrier acquired
2009/08/25 15:20:46 :: 
2009/08/25 15:20:46 :: eth0: broadcasting for a lease
2009/08/25 15:20:46 :: 
2009/08/25 15:20:47 :: eth0: offered 192.168.1.101 from 192.168.1.1
2009/08/25 15:20:47 :: 
2009/08/25 15:20:47 :: eth0: acknowledged 192.168.1.101 from 192.168.1.1
2009/08/25 15:20:47 :: 
2009/08/25 15:20:47 :: eth0: checking 192.168.1.101 is available on attached networks
2009/08/25 15:20:47 :: 
2009/08/25 15:20:51 :: eth0: leased 192.168.1.101 for 86400 seconds
2009/08/25 15:20:51 :: 
2009/08/25 15:20:51 :: 
2009/08/25 15:20:51 :: DHCP connection successful
2009/08/25 15:20:51 :: Connecting thread exiting.


/etc/conf.d/net:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
avalarion-laptop ~ # more /etc/conf.d/net
# This blank configuration will automatically use DHCP for any net.*
# scripts in /etc/init.d.  To create a more complete configuration,
# please review /etc/conf.d/net.example and save your configuration
# in /etc/conf.d/net (this file :]!).
###config_eth0=( "dhcp" )

# wpa_supplicant gegenüber wireless-tools bevorzugen
modules=( "wpa_supplicant" )
config_wlan0=( "192.168.1.80 netmask 255.255.255.0 brd 192.168.1.255" )
routes_wlan0=( "default via 192.168.1.1" )
wpa_supplicant_wlan0="-Dwext -c/etc/wpa_supplicant/wpa_supplicant.conf"

config_eth0=( "192.168.1.79 netmask 255.255.255.0 brd 192.168.1.255" )
routes_eth0=( "default via 192.168.1.1" ) 


So sieht es aus.

Und die hälfte versteh ich nicht, verdammt nochmal, ich muss mehr Lesen!

Danke dir für deine Hilfe!


Gruß

Bastian

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Avalarion« (25.10.2009, 15:56)


14

25.08.2009, 22:18

Puhh, bei der WLAN Konfiguration kann ich dir nicht doll behilflich sein, wo möglich nutze ich idR ein Kabel..
Aber: schau mal ob du dir ein paar Infos aus diesem Thread ziehen kannst.

/edit
Ok, unter Ubuntu hab ich nen anderen Mod geladen: b43

Ignorieren wir den, ich suche weiter nach den Einstellungen unter Gentoo.
Obwohl es hier wohl nicht am Treiber liegt, aber, diesen Treiber kannst du doch ebenso unter Gentoo nutzen, der Kernel ist doch bei beiden Linux..
Schaue hierzu einfach mal unter "make menuconfig" indem du mit "/" die Suche öffnest nach "b43" , ich vermute das

Quellcode

1
2
3
4
5
6
7
8
9
10
 Symbol: B43LEGACY [=n]                                                                                                              │
  │ Prompt: Broadcom 43xx-legacy wireless support (mac80211 stack)                                                                      │
  │   Defined at drivers/net/wireless/b43legacy/Kconfig:1                                                                               │
  │   Depends on: NETDEVICES && !S390 && SSB_POSSIBLE && MAC80211 && WLAN_80211 && HAS_DMA                                              │
  │   Location:                                                                                                                         │
  │     -> Device Drivers                                                                                                               │
  │       -> Network device support (NETDEVICES [=y])                                                                                   │
  │         -> Wireless LAN                                                                                                             │
  │           -> Wireless LAN (IEEE 802.11) (WLAN_80211 [=n])                                                                           │
  │   Selects: SSB && FW_LOADER && HW_RANDOM
ein nativer Treiber für dein "BCM4318" Chipset ist.
"ndiswrapper" würde ich wirklich nur dann nehmen wenn es (noch) nichts besseres gibt.


Viel Erfolg

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »josef.95« (25.08.2009, 22:44)


15

25.08.2009, 23:05

Hey ho,

den hab ich implementiert, und zwar vor den ersten Versuchen.

Ne Idee wo ich den Treiber dann einschreibe und anspreche, damit das besser klappt?

Gruß

Bastian

16

26.08.2009, 19:14

Ne Idee wo ich den Treiber dann einschreibe und anspreche, damit das besser klappt?


Was meinst du? Den von Ubuntu? Versuche doch den Treiber unter Gentoo zu bauen, du hast ja die Sourcen dazu ...

Das die Verbindung nicht hinhaut ... tia ... kannst du mal versuchen dich ganz ohen Authentication zu connecten? Geht mal das? wicd & Co faseln ja dauern was von einer Authentication die "failed".
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

17

26.08.2009, 19:16

Auch ohne Verschlüsselung flieg ich raus, keine Ahnung warum!

Ich habe im Kernel einen Treiber eingebaut und ich habe über ndistwrapper gearbeitet... Könnte da derr Fehler sein? Dass sich da irgendwas gegenseitig raushaut?

18

26.08.2009, 19:53

Puhh ... möglich. net-wireless/bcm43xx-fwcutter hast du?

Ansonsten empfehle ich dir mal direkt bei http://linuxwireless.org/ vorstelllig zu werden.
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

19

26.08.2009, 19:56

Den hab ich auch :D

Vielleicht hab ich ganz im ernst zu viel.

Ich schau mir deinen Link mal an! Ansonsten... Fang nächsten Monat an Info zu studieren, die müssen sich doch mit Gentoo auskennen ;) *hust*

Gruß

bastian

20

27.08.2009, 01:35



Also hab das vorhin geklärt und hin bekommen. Es ging nicht, weil im Kernel eine pcmia geforced wurde... Und weil der ndistwrapper querschoss.Oder so... Es war auf jeden Fall nicht wenig und ich danke für deine Ruhe!

Gruß

Bastian

Edit:

Kannst du vielleicht hier helfen: SLIM läuft nicht mehr richtig.

Danach sollte Gentoo so laufen, wie ich das haben will!

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Avalarion« (27.08.2009, 01:40)