I would configure my Rapsberry Pi B to create a WiFi network in bridge mode (without DHCP daemon on raspberry).
I followed this Guide Use Your Raspberry Pi as WiFi Bridge.
My wlan adtpater is Alpa AWUS036H and this is lsusb output:
Bus 001 Device 005: ID 0480:a007 Toshiba America Info. Systems, Inc. External Disk USB 3.0 Bus 001 Device 004: ID 0bda:8187 Realtek Semiconductor Corp. RTL8187 Wireless Adapter Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp. SMSC9512/9514 Fast Ethernet Adapter Bus 001 Device 002: ID 0424:9512 Standard Microsystems Corp. LAN9500 Ethernet 10/100 Adapter / SMSC95 I configured Hostapd ( /etc/hostapd/hostapd.conf) with this settings:
interface=wlan0 driver=nl80211 ssid=Pi_AP hw_mode=g channel=6 macaddr_acl=0 auth_algs=1 ignore_broadcast_ssid=0 wpa=2 wpa_passphrase=Raspberry wpa_key_mgmt=WPA-PSK wpa_pairwise=TKIP rsn_pairwise=CCMP When i run $ hostapd -dd /etc/hostapd/hostapd.conf this is the output:
random: Trying to read entropy from /dev/random Configuration file: /etc/hostapd/hostapd.conf rfkill: initial event: idx=0 type=1 op=0 soft=0 hard=0 nl80211: Supported cipher 00-0f-ac:1 nl80211: Supported cipher 00-0f-ac:5 nl80211: Supported cipher 00-0f-ac:2 nl80211: Supported cipher 00-0f-ac:4 nl80211: Supported cipher 00-0f-ac:10 nl80211: Supported cipher 00-0f-ac:8 nl80211: Supported cipher 00-0f-ac:9 nl80211: Using driver-based off-channel TX nl80211: interface wlan0 in phy phy0 nl80211: Set mode ifindex 3 iftype 3 (AP) nl80211: Failed to set interface 3 to mode 3: -95 (Operation not supported) nl80211: Try mode change after setting interface down nl80211: Set mode ifindex 3 iftype 3 (AP) nl80211: Failed to set interface 3 to mode 3: -95 (Operation not supported) nl80211: Interface mode change to 3 from 0 failed nl80211: Could not configure driver mode nl80211: Remove monitor interface: refcount=0 netlink: Operstate: ifindex=3 linkmode=0 (kernel-control), operstate=6 (IF_OPER_UP) nl80211: Set mode ifindex 3 iftype 2 (STATION) nl80211 driver initialization failed. hostapd_interface_deinit_free(0x7fdc39f0) hostapd_interface_deinit_free: num_bss=1 conf->num_bss=1 hostapd_interface_deinit(0x7fdc39f0) hostapd_bss_deinit: deinit bss wlan0 hostapd_cleanup(hapd=0x7fdc4618 (wlan0)) hostapd_free_hapd_data: Interface wlan0 wasn't started hostapd_interface_deinit_free: driver=(nil) drv_priv=(nil) -> hapd_deinit hostapd_interface_free(0x7fdc39f0) hostapd_interface_free: free hapd 0x7fdc4618 hostapd_cleanup_iface(0x7fdc39f0) hostapd_cleanup_iface_partial(0x7fdc39f0) hostapd_cleanup_iface: free iface=0x7fdc39f0 Why my Wlan adapter can't start in master mode? Is the driver correct?
Any suggestions?
Thanks!
