Loosing WiFi connection
Posted: Sun Jul 19, 2015 11:35 am
Hi,
I'm using the Raspi with raspian and configured a network bridge. So it is connecting a little web server (LAN) with my router (WLAN). After reboot everything works fine but after a few minutes the Raspi is not longer reachable from network, even not the webserver. Here is my /ect/network/interfaces:
iwconfig says that Power Management is off for wlan0. What could be the problem?
Regards,
Heimchen
I'm using the Raspi with raspian and configured a network bridge. So it is connecting a little web server (LAN) with my router (WLAN). After reboot everything works fine but after a few minutes the Raspi is not longer reachable from network, even not the webserver. Here is my /ect/network/interfaces:
Code: Select all
# Localhost auto lo
auto lo
iface lo inet loopback
# Ethernet
auto eth0
allow-hotplug eth0
iface eth0 inet dhcp
# WLAN
auto wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
# Bridge
auto br0
iface br0 inet dhcp
bridge_ports eth0 wlan0
bridge_fd 5
bridge_stp off
Regards,
Heimchen