Wlan

From RobotinoWiki
Revision as of 09:05, 3 May 2017 by Verbeek (talk | contribs) (TP-Link WN722N v2)

Robotino v1 and v2

Robotino up to version 2 is equipped with an internal access point. This internal AP can be configured as client or master.

Robotino v3

The next generation Robotino will use an USB WLAN stick to either connect to an access point in client mode or provide a access point external clients can connect to in master mode. Various WLAN USB adapters are supported. The following list shows the USB sticks tested to work in both client and master mode:

  • AVM Fritz!WLAN USB Stick N (supports a/b/g/n)
  • TP-Link TL-WDN4800 (PCIe-adapter, supports a/b/g/n)

The following adapters are known to work at least in client mode:

  • Alfa AWUS036EW USB WLAN Stick (support for b/g)
  • Alfa AWUS036H USB WLAN (support for b/g)

WLAN master

The WLAN master on Robotino is run by hostapd. A german how-to on setting up a WLAN router using hostapd can be found here. Additionally a DHCP server is running assigning IP addresses to clients connecting to Robotino's access point.

When running as WLAN master Robotino has the fixed IP address 172.26.1.1 with netmask 255.255.0.0. The DHCP server assigns addresses in the range 172.26.1.100 to 172.26.1.200.

Configuration:

5GHz WLAN

If your network adapter supports 5GHz WLAN you can setup your system to use this frequency by manually editing /etc/hostapd.conf

hw_mode=a
channel=44

After saving your changes restart the wlan interface

ifdown wlan0
ifup wlan0

WLAN client

In client mode the WLAN interface of Robotino connects to an external accesspoint. Robotino can be assigned a fixed IP address or can obtain an address from an external DHCP server.

Configuration:

Hint

Remember that eth0:10 is preconfigured to 192.168.1.244. If this is in conflict to your settings for eth0 you might want to disable eth0:10 in /etc/network/interfaces.

TP-Link WN722N v2

git clone https://github.com/jeremyb31/rtl8188eu
cd rtl8188eu

Edit os_dep/usb_intf.c and add the following line
{USB_DEVICE(0x2357, 0x010c)}, /* TP-Link WN722N v2 */

make
make install

****************************
Actions of make install:
install -p -m 644 8188eu.ko  /lib/modules/4.4.0-34-generic/kernel/drivers/net/wireless
cp rtl8188eufw.bin /lib/firmware/.
/sbin/depmod -a 4.4.0-34-generic
mkdir -p /lib/firmware/rtlwifi
cp rtl8188eufw.bin /lib/firmware/rtlwifi/.
****************************

echo 8188eu >> /etc/modules