Hi,
I am currently trying to use my RPi to establish a WLAN bridge for my TV, i.e. the TV is connected via LAN to the RPi which connects via WLAN to the router.
Everything is working well so far, except that my connection is dropped regularly. After some investigation I found out that these connection drops occur when the router renews the WPA2-AES key. I tried different renewal intervals - the timings match perfectly.
This problem is not present when the bridge is deactivated. Somehow it seems that bridging blocks the EAS packets from being recognized by wpa_supplicant. While the wpa_supplicant log shows messages for the key renewal, no messages are shown when run in bridged mode.
Of course the problem could be
My network setup uses netctl with the following profiles:
wlan:
$this->bbcode_second_pass_code('', '
Description='Home network'
Interface=wlan0
Connection=wireless
Security=wpa
ESSID='myessid'
Key='mypassword'
IP=no
')
when wlan is up I start the bridge with this profile:
$this->bbcode_second_pass_code('', '
Description="Bridge connection"
Interface=br0
Connection=bridge
BindsToInterfaces=(eth0 wlan0)
IP=static
Address='192.168.1.111/24'
Gateway='192.168.1.1'
DNS=('192.168.1.1')
')
My WLAN-adapter is
$this->bbcode_second_pass_code('', '
ID 7392:7811 Edimax Technology Co., Ltd EW-7811Un 802.11n Wireless Adapter [Realtek RTL8188CUS]
')
... but I believe this is a software problem as everything works fine without bridges.
My version of Arch is from last week, updates were downloaded yesterday. If this helps I can attach the output log from wpa_supplicant.
Anyone who knows how to solve this problem or what I can do to further tackle this problem? Every hint would be appreciated.
Thanks in advance
Joachim