Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
netgear ma111 linux-wlan-ng, no dhcp [solved]
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German)
View previous topic :: View next topic  
Author Message
Mgiese
Veteran
Veteran


Joined: 23 Mar 2005
Posts: 1630
Location: indiana

PostPosted: Wed Sep 14, 2005 4:47 pm    Post subject: netgear ma111 linux-wlan-ng, no dhcp [solved] Reply with quote

hi there,


probiere nun schon seit 3 tagen meinen usb wlan stick netgear ma111 zum laufen zu bekommen. aber leider komme ich damit nicht weiter auch googlen oder hier im forum suchen brachte mir bisher keine lösung, nun hoffe ich das evl einer von euch schon "viele" wlan erfahrungen unter gentoo gemacht hat....

ich benutzte linux-wlan-ng-0.2.2 , mit den anderen hatte ich beim compilen probleme, portage sagt ich muesste 0.21_pre17 nehmen was ich aber nich konnte da das pre17 ebuild nicht mehr im portage ist und selbstbauen des ebuilds zu einem fehler führte...

mein kernel ist 2.6.11.6 und die wichtigen 2 wireless einstellungen sind enabled....

lsusb sagt folgendes :
Bus 003 Device 002: ID 0846:4110 NetGear, Inc. MA111 WiFi (v1)
Bus 003 Device 001: ID 0000:0000
Bus 002 Device 001: ID 0000:0000
Bus 001 Device 001: ID 0000:0000

in meinem router kann ich das usb-wlan device auch sehen :

Name IP-Adresse MAC-Adresse Aktiv Geschwindigkeit g++ Zustand
- - 00:09:5D:B3:AD:82 * 11 MBit/s Verbunden


das bedeutet wohl soviel wie das der treiber geht ? :D

naja meine problem ist nun das ich leider keine DHCP adresse des routers erhalte... ?

ich habe ein script gefunden womit man wlan-ng setupen kann(folgt gleich im 2.post), leider kann man dort nur eine statische ip einstellen, was aber nicht funktioniert :
ifconfig
wlan0 Link encap:Ethernet HWaddr 00:09:5B:B3:AE:82
inet addr:192.168.178.27 Bcast:192.168.178.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:23 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:8852 (8.6 Kb) TX bytes:0 (0.0 b)

das heisst auch nach dem ausführen des wlan.sh habe ich im router die alten device einstellungen bzw den gleichen status :
Name IP-Adresse MAC-Adresse Aktiv Geschwindigkeit g++ Zustand
- - 00:09:5D:B3:AD:82 * 11 MBit/s Verbunden


nun meine frage.. was habe ich evl nicht verstanden bzw was funktioniert hier nicht richtig ?
achso eine sache noch lsmod :
prism2_usb 74244 0
p80211 31376 1 prism2_usb

ausserdem habe ich einige male beim runterfahren des WLAN0 gesehen das wlanng meckert : no such device .. aber da hatte ich evl auch das wlan.sh noch nicht ausgefuert....
am ende von wlan.sh kommt noch folgender fehler :

./wlan.sh
message=lnxreq_ifstate
ifstate=enable
resultcode=success
message=lnxreq_hostwep
resultcode=no_value
decrypt=true
encrypt=true
message=dot11req_mibset
mibattribute=dot11WEPDefaultKeyID=0
resultcode=success
message=dot11req_mibset
mibattribute=dot11ExcludeUnencrypted=true
resultcode=success
message=dot11req_mibset
mibattribute=dot11PrivacyInvoked=true
resultcode=success
message=dot11req_mibset
mibattribute=dot11WEPDefaultKey0=88:99:aa:bb:cc:dd:ee:ff:11:22:33:44:55
resultcode=success
message=lnxreq_autojoin
ssid='DJALAN'
authtype=opensystem
resultcode=success
SIOCADDRT: File exists




MFG Mgiese

ich hoffe das euch meine angaben irgendwie helfen.. wenn noch weitere infos benötigt werden poste ich die natuerlich gerne
_________________
I do not have a Superman complex, for I am God not Superman :D

Ryzen9 7950x (powersave governor) ; Radeon 7900XTX ; kernel 6.11.3 ; XFCE


Last edited by Mgiese on Fri Sep 16, 2005 2:41 am; edited 3 times in total
Back to top
View user's profile Send private message
Mgiese
Veteran
Veteran


Joined: 23 Mar 2005
Posts: 1630
Location: indiana

PostPosted: Wed Sep 14, 2005 4:51 pm    Post subject: hier noch das wlan.sh Reply with quote

#!/bin/bash
# Above, the shebang. Like /bin/sh is a symlink to /bin/bash,
# we can undifferently use sh or bash. Everyone can choose...

# used version : linux-wlan-ng-0.2.1-pre17
# the last 2004 / 02 / 18
# please read the first part : nothing has changed since I wrote
# it for linux-wlan-ng installation

# Modification of the PATH, because I don't want to write /sbin
# in the beginning of all the commands everytime ;-)

PATH=/sbin:$PATH


# In case of freeze, you can use prism2_doreset=0
# Not sure, but I think there is no more bug about this old(now) problem...

modprobe prism2_usb prism2_doreset=1

# Found in the doc...

wlanctl-ng wlan0 lnxreq_ifstate ifstate=enable


# I've founfd the solution abocve, because I suspected
# we'll have to "crypt" something womewhere

wlanctl-ng wlan0 lnxreq_hostwep decrypt=true encrypt=true


# the valid is the first generated 0 in this cas
#(else 1 for the second one, 2 for the third and 3 for the forth one )

wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11WEPDefaultKeyID=0

# Obtained with the "a little dark" documentation
wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11ExcludeUnencrypted=true
wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11PrivacyInvoked=true

# IMPORTANT : the key, in hexa, is wroten with " : " separating digits 2 by 2
# of course, this key doesn't exist... ;-)

wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11WEPDefaultKey0="88:99:AA:BB:CC:DD:EE:FF:11:22:33:44:55"


# unused, only here for documentation

#wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11WEPDefaultKey1=<la:seconde:clé:écrite:ici>
#wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11WEPDefaultKey2=<la:troisième:clé:écrite:ici>
#wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11WEPDefaultKey3=<la:quatrième:clé:écrite:ici>

# I've searched a long time with opensystem, managed ad-hoc. Falling "in work"
# with sharedkey
# NB : the synopsis is given in wlanctl-ng doc
# do wlanctl-ng commands if you want to know more...

wlanctl-ng wlan0 lnxreq_autojoin "ssid=DJALAN" authtype="opensystem"

# It works. Now, IP address attribution
# for the 192.168.99.0 netork here

ifconfig wlan0 192.168.178.27 netmask 255.255.255.0

# the default key (completely wrong, given as example)
# for a 192.168.99.0 network

route add default gw 192.168.178.1 # my internet gateway address

# end of wlan.sh




noch eine sache die mir unklar ist :

ich habe in /etc/conf.d/wlan.conf das wlan device mit wlan1 spezifiziert, aber leider heisst auch nach dem rebooten das device "wenn überhaupt" ;-) wlan0 :D gg
_________________
I do not have a Superman complex, for I am God not Superman :D

Ryzen9 7950x (powersave governor) ; Radeon 7900XTX ; kernel 6.11.3 ; XFCE
Back to top
View user's profile Send private message
Mgiese
Veteran
Veteran


Joined: 23 Mar 2005
Posts: 1630
Location: indiana

PostPosted: Fri Sep 16, 2005 2:45 am    Post subject: .. Reply with quote

erster erfolg : surfe grade mit dem ma111, aber "noch" ohne jegliche verschluesslung...

Zur Lösung : erstmal habe ich wie Portage erwaehnt auch linux-wlan-ng0.21pre17 genommen.
und dann bin ich nochmal alle tipps step by step durchgegangen --->

http://www.linuxquestions.org/questions/answers/239

den symlink auf /etc/init.d/net.wlan0 angelegt

siehe da eine IP :D nun muss ich noch die verschluesslung hinbiegen.. aber das mach ich morgen *gaehn
_________________
I do not have a Superman complex, for I am God not Superman :D

Ryzen9 7950x (powersave governor) ; Radeon 7900XTX ; kernel 6.11.3 ; XFCE
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum