im currently try to use an pi as monitoring system which requires a connection to the local ethernet. Now i also want to use the same pi as wifi ap. But all configuration examples i've found for pi bridging ethernet and wifi so the pi itself cannot access the ethernet anymore.
Currently the configuration looks like this
auto lo
iface lo inet loopback
auto eth0
allow-hotplug eth0
iface eth0 inet dhcp
auto wlan0
allow-hotplug wlan0
iface wlan0 inet manual
wireless-power off
If i bridge the networks (and rpi works as intended as a wifi ap) the configuration looks like this
auto lo
iface lo inet loopback
auto eth0
allow-hotplug eth0
iface eth0 inet manual
auto wlan0
allow-hotplug wlan0
iface wlan0 inet manual
wireless-power off
auto br0
iface br0 inet static
address 192.168.1.11
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
bridge-ports eth0 wlan0
bridge-waitport 5
bridge-stp off
bridge-fd 0
So the question is how to combine both configurations so that the pi has also access to the same (bridged) network?