Results 1 to 1 of 1

Thread: HOW TO : Wifi Access Point with hostap + hostapd + freeradius + mysql backend Part 2

  1. #1
    Join Date
    Mar 2006
    Beans
    8
    Distro
    Dapper Drake Testing/

    HOW TO : Wifi Access Point with hostap + hostapd + freeradius + mysql backend Part 2

    HOW TO : Wifi Access Point with hostap + hostapd + freeradius + mysql backend Part 2 The Return

    Configuring clients

    Linux

    Install wpasupplicant

    Note : wpa_supplicant will work only if it supports your card

    Code:
    sudo apt-get install wpasupplicant

    File : /etc/wpa_supplicant/wpa_supplicant.conf should be like this (In breezy I think is in /etc/wpa_supplicant.conf)

    Code:
    ctrl_interface=/var/run/wpa_supplicant
    
    eapol_version=1
    ap_scan=1
    fast_reauth=1
    
    
    network={
            ssid="MY_SSID"
            key_mgmt=IEEE8021X
            eap=PEAP
            phase2="auth=MSCHAPV2"
            identity="phoboulinos"
            password="supersecret"
    }

    My /etc/network/interface

    Code:
    iface eth1 inet static
            address 10.10.10.101
            netmask 255.255.255.128
            gateway 10.10.10.1
            wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
    auto eth1
    Note: In dapper you may need to load the af_packet module


    Windows XP SP2

    Open the Properties dialog of your card, go to Wireless Networks tab click Add, enter your ssid in our case the MY_SSID, set Network Authentication to Open, Data encryption to WEP, click the "The key is provided for me automatically". Go to the Authentication tab click on "Enable IEEE 802.1x Authentication" and select Protected EAP (PEAP), click properties, uncheck everything, on "Select Authentication Method:" select EAP-MSCHAP v2, click Configure, you can select to either use your windows logon information to login to the access point or provided a username and password, click accordingly. Also check the "Enable Fast Reconnect". On the MY_SSID properties dialog uncheck the 2 checkboxes "Authenticate as computer when computer information is availiable" and the "Authenticate as geust when user or computer information is unavailible"

    Well thats all on Windows.

    I hope thats everything

    Have fun
    Last edited by phoboulinos; April 2nd, 2006 at 04:45 AM.

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
  •