Projet

Général

Profil

Wifi-Ethernet bridge

Install bridge-utils

aptitude install bridge-utils 

Test

Create bridge

brctl addbr br0

Add interfaces

brctl addif br0 eth0 wlan0

If your bridge work : make it permanent :

Permanent configuration

Edit /etc/network/interfaces

[...]
auto eth0
allow-hotplug eth0
iface eth0 inet manual

auto wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
    wpa-ssid "ESSID" 
    wpa-psk "password" 
    post-up brctl addif br0 wlan0

auto br0
iface br0 inet manual
    bridge_ports eth0