Hello,<br>I'm trying to configure an Ubuntu server with 2 wired interfaces set as a bridge and I want a radius authentication on each interfaces. <br><br>I'm able to set my configuration files to have a bridge between the 2 interfaces without authentication.<br>
I'm able to set my configuration files to have an authentication on each interfaces but without the bridge.<br>I don't know how to configure my files to have both authentication and bridge !<br>Can someone help me ?<br>
<br>I give you my /etc/network/interface not working :<br><b><i># loopback interface<br>auto lo<br>iface lo inet loopback<br># network interface<br>auto eth0<br>iface eth0 inet manual<br><br>auto eth1<br>iface eth1 inet manual<br>
<br>auto br0<br>iface br0 inet dhcp<br>bridge_ports eth0 eth1<br><br>wpa-iface eth0 #</i></b>How to add eth1 ? If I add a new line it's not working<br><b><i>wpa-bridge br0<br>wpa-driver wired<br>wpa-conf /etc/wpa_supplicant/wired.conf</i></b><br>
<br><br>The wired.conf file for information :<br><b><i>ctrl_interface=/var/run/wpa_supplicant<br>ctrl_interface_group=0<br>ap_scan=0<br>#On configure la re-authentification rapide pour protocoles EAP<br>#fast_reauth=1<br>
<br>network={<br> ssid="lan"<br> key_mgmt=IEEE8021X<br> eapol_flags=0<br> eap=MD5<br> identity="labo"<br> password="test"<br>}</i></b><br><br>With this configuration, it's working if my interface eth0 is connected, but it's not working if it's eth1 which is connected.<br>
Could you tell me what I need to add in my configuration file ?<br><br>Thanks for your help.<br><br>Sebastien.<br>