Guest User

Untitled

a guest
Jun 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. Hex-Passwort generiert man mit dem Command-Line Tool 'wpa_passphrase'.
  2.  
  3. Prinzipiell zum Netzwerk-Tool von Ubuntu: das funktioniert nicht immer.
  4. Ich hab's mit der Hand reinwürgen müssen, und zwar folgendermassen.
  5. /etc/wpa_supplicant/wpa_supplicant.conf mit folgendem Inhalt anlegen:
  6.  
  7. ctrl_interface=/var/run/wpa_supplicant
  8. eapol_version=1
  9.  
  10. network={
  11. ssid="Dein Netzwerkname"
  12. proto=WPA
  13. key_mgmt=WPA-PSK
  14. pairwise=CCMP TKIP
  15. group=CCMP TKIP WEP104 WEP40
  16. psk=dein_hex_key_den_du_mit_wpa_passphrase_generiert-hast_ohne_anführungszeichen
  17. }
  18.  
  19. In der Netzwerkkonfiguration folgendes hinzufügen.
  20. /etc/network/interfaces:
  21.  
  22. auto eth1
  23. iface eth1 inet dhcp
  24. pre-up wpa_supplicant -Bw -c/etc/wpa_supplicant/wpa_supplicant.conf -ieth1
  25. post-down killall -HUP wpa_supplicant
  26.  
  27. wenn eth1 deine Wlan-Schnittstelle ist. Das findest du aber leicht mittels 'iwconfig' heraus.
Add Comment
Please, Sign In to add comment