I would like to bridge eth0 and wlan0 on Raspberry Pi. The connections are as follows:
________________________________________
| RPi |
AP with DHCP --- eth0 wlan0 --- Devices
|________________________________________|
I would like RPi as well as other devices connected through it to get IP address from DHCP server, so the Raspberry Pi does not get involved. Do I have only to setup /etc/network/interfaces:
iface lo inet loopback
auto eth0
allow-hotplug eth0
iface eth0 inet manual
iface wlan0 inet manual
auto bridge
allow-hotplug wlan0
# Added by hostapd setup
allow-hotplug bridge
iface bridge inet dhcp
bridge_ports wlan0 eth0
wireless-power off
and hostapd to make Raspberry an AP?
Usual scenario is different:
________________________________________
| RPi |
AP with DHCP --- wlan0 eth0 --- Devices
|________________________________________|
I've read that in such scenario I have to additionaly use one of these approaches:
https://wiki.debian.org/BridgeNetworkConnections
https://wiki.debian.org/BridgeNetworkConnectionsProxyArp
Does my use case need also these additional steps?