ich habe den WLAN- Treiber für meine Karte mit einem acx100 chip erfolgreich installiert, und komme auch ins internet, nur ein kleines problem habe ich noch: die blöde karte ignoriert alle versuche sie ordentlich zu konfiguriern, sie ignoriert die Datei /etc/network/interfaces komplett, da sowieso danach gefargt wird poste ich die gleich mal:
Code: Alles auswählen
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
#allow-hotplug eth0
#iface eth0 inet dhcp
# use the following line if you have a pcmcia card, it will let hotplug auto-up network on insert
#it.
#allow-hotplug wlan0
auto wlan0
# If you want to use static ip address change the following to addapt to your need
iface wlan0 inet static
address 192.168.0.102
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1
# If you want to use dynamic ip address, forget the static part and uncomment the next line.
#iface wlan0 inet dhcp
wireless-mode managed
wireless-keymode open
wireless-channel 6 # optional
wireless-essid NETGEAR # change to your essid
wireless-key XXXXXXXXXXXXXX #this is your wep key if it's needed, (optional)
iwconfig wlan0 mode managed essid NETGEAR key "XXXXX" open channel 6
ifconfig wlan0 192.168.0.102 netmask 255.255.255.0 up
kann man das nicht irgendwo doch noch fest konfigurieren? ich versteh das ganze nicht, eigentlich steht überall es würde reichen die interfaces datei anzupassen, was ich ja gemacht habe.
vielen dank schonmal, Zachso