WLAN AP Raspberry PI mit TP-Link WN725N

Ein WLAN AP einzurichten ist eigendlich keine große Sache, sofern man einen WLAN Stick hat dessen Chipsatz uneingeschränkt unterstützt wird. Leider ist das beim WN725N Chip RTL8188 nicht der Fall, somit sind einige Eigenheiten zu beachten. Es gibt schon andere Leute die sich mit dem Thema auseinander gesetzt haben. Treiber , HowTo und  modifizierte hostapd. Deshalb hier mal in aller Kürze die Installations Anweisungen

wget https://dl.dropboxusercontent.com/u/80256631/8188eu-20130209.tar.gz

tar -zxvf 8188eu-20130209.tar.gz

sudo install -p -m 644 8188eu.ko /lib/modules/3.6.11+/kernel/drivers/net/wireless

sudo depmod -a

sudo modprobe 8188eu

wget https://github.com/segersjens/RTL8188-hostapd/archive/v1.1.tar.gz

tar -zxvf v1.1.tar.gz

cd RTL8188-hostapd-1.1/hostapd

sudo make

sudo make install

sudo cp hostapd /usr/local/bin/

sudo update-rc.d defaults hostapd

sudo nano /etc/hostapd/hostapd.conf

# Basic configuration

interface=wlan0
ssid=logview
channel=1
#bridge=br0

# WPA and WPA2 configuration

macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa=3
wpa_passphrase=logviewap
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP

# Hardware configuration

driver=rtl871xdrv
ieee80211n=1
hw_mode=g
device_name=RTL8192CU
manufacturer=Realtek

sudo  /etc/network/interfaces

#allow-hotplug wlan0
#iface wlan0 inet manual
#wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
#iface default inet dhcp

iface wlan0 inet static
address 10.0.0.1
netmask 255.255.255.0

sudo update-rc.d defaults hostapd

sudo apt-get install dnsmasq

sudo nano /etc/dnsmasq.conf

interface=wlan0 # To get dnsmasq to listen only on wlan0.
dhcp-range=10.0.0.2,10.0.0.5,255.255.255.0,12h # This sets the available range from 10.0.0.2 to 10.0.0.5
# It also sets the subnet mask to 255.255.255.0 and specifies a lease time of 12 hours.

 sudo reboot 

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert