Closed Thread
Results 1 to 4 of 4

Thread: WPA-PSK in Linux

  1. #1
    LinuxBomber is offline Learning Programmer
    Join Date
    Jan 2008
    Posts
    79
    Rep Power
    0

    WPA-PSK in Linux

    Does linux support this? Or I need to install some drivers? Because my router was set to this, and it does not connect unless I change that to something LESS secure...

    What can I do? Because all other securities are well known for their vulnerabilities...

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    Join Date
    Aug 2006
    Posts
    11,209
    Blog Entries
    6
    Rep Power
    101
    Well, on my old Sabayon installation it did not support it... I didn't try it on the newer version though..

  4. #3
    XStatik's Avatar
    XStatik is offline Newbie
    Join Date
    Aug 2009
    Posts
    26
    Rep Power
    0

    Re: WPA-PSK in Linux

    I had some wifi going on my linux machine, and im almost certain it was running on WPA-PSK. If I remember what wifi detection software I was using ill post a link.

  5. #4
    CallBackGuy is offline Newbie
    Join Date
    Mar 2009
    Posts
    29
    Rep Power
    0

    Re: WPA-PSK in Linux

    Linux does indeed support this, it's really a matter if the driver Linux is using for your wireless card supports WPA*
    A lot of modern distro's come with wpa_supplicant to help you to connect to WPA secured networks.
    Here's an example wpa_supplicant config file.
    Code:
    ctrl_interface=/var/run/wpa_supplicant
    ctrl_interface_group=0
    eapol_version=1
    ap_scan=1
    fast_reauth=1
    
    # WPA protected network, supply your own ESSID and WPAPSK here:
    network={
      scan_ssid=0
      ssid="wirelessnetwork"
      proto=WPA
      key_mgmt=WPA-PSK
      pairwise=CCMP TKIP
      group=CCMP TKIP WEP104 WEP40
      psk="sup3rs3cr3tz"
    }
    Then you can do this to obtain a connection to the network specified in the config
    Code:
    bash-3.1$ su
    Password:
    bash-3.1# wpa_supplicant -Dwext -iwlan0 -c/etc/wpa_supplicant.conf > /dev/null &
    [1] 11419      #-D specifies the driver, -i specifies the interface
    bash-3.1# dhclient wlan0
    wmaster0: unknown hardware address type 801
    wmaster0: unknown hardware address type 801
    Listening on LPF/wlan0/00:00:00:00:00:00
    Sending on   LPF/wlan0/00:00:00:00:00:00
    Sending on   Socket/fallback
    DHCPREQUEST on wlan0 to 255.255.255.255 port 67
    DHCPACK from 192.168.0.1
    bound to 192.168.0.103 -- renewal in 227794 seconds.
    Or you can take make it much easy for yourself and use wicd

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. ds and linux
    By jaytal in forum Linux Applications
    Replies: 9
    Last Post: 01-29-2010, 01:53 PM
  2. Linux Security, The Ultimate Linux Security Gateway
    By Tor in forum Linux Tutorials, Guides and Tips
    Replies: 2
    Last Post: 12-21-2008, 03:51 PM
  3. Linux CBT Nuggets: Linux+
    By Tor in forum Linux/Unix General
    Replies: 1
    Last Post: 06-27-2008, 05:35 AM
  4. How to do with linux.?
    By Patrick in forum Computer Software/OS
    Replies: 0
    Last Post: 10-13-2007, 08:46 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts