Wlan soll beim booten automatisch starten

Emess

Emess

Turmspringer
habe ein wlanchip rt2860 im Notebook verbaut, den ich jetzt mit hängen und würgen und viel hilfe zu laufen gebracht habe.
Jetzt wie bekomm ich es hin, dass Wlan beim booten automatisch gestartet wird wenn kein netzwerkkabel (oderauch wenn) gesteckt ist.

jetzt musss ich nach dem gebootet wurde immer
Code:
ifconfig eth0 down
dhclient wlan0
eingeben dann startet wlan.

ifconfig
Code:
# 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

# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp



auto wlan0
iface wlan0 inet static
        address 192.168.178.xxx
        netmask 255.255.255.0
        wpa-driver wext
        wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
Wpa_supplicant.conf
Code:
network={
    ssid="mein netz"
    bssid=00:1C:xx:xx:xx:xx
    scan_ssid=1
    mode=0
    key_mgmt=WPA-PSK
    proto=WPA
    auth_alg=OPEN
    pairwise=TKIP
    psk="geheim"
Wie kann ich das beim booten automatisieren?
 
Zuletzt bearbeitet:
Entweder du legst ein neues an, oder du suchst dir eins, das sowas wie "net" oder "eth0" enthält und schaust dir an, wie die debian leute das gemacht haben.

Oder wars bei debian "ifup"?

Lies dir einfach die Namen durch du findest schon was passendes.
 
Hab es so gemacht jetzt klappt es

Code:
face lo inet loopback

# The primary network interface
##Lan
auto eth0
iface eth0 inet dhcp
        test missing-cable
        pre-up echo No link present.
        pre-up false



##Wireless
auto wlan0
iface wlan0 inet static
        address 192.168.178.xx
        netmask 255.255.255.0
        gateway 192.168.178.1
        wpa-driver wext
        wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
 

Ähnliche Themen

Internetsharing

Kein WLAN bei Raspbian

Debian 7.6 kein lokales Netz

Debian 'Squeezy' Problem bei Wlan

Umstellung von PC-Internet-Einwahl zu Routereinwahl ins Internet

Zurück
Oben