Differences between revisions 1 and 2
Revision 1 as of 2008-06-26 10:13:48
Size: 762
Editor: Kurgan
Comment:
Revision 2 as of 2009-04-12 17:33:25
Size: 762
Editor: localhost
Comment: converted to 1.6 markup
No differences found!

Configurare un bridge ethernet su Debian Etch

Per configurare un bride ethernet, occorre installare prima di tutto il pacchetto bridge-utils. Fatto questo, e` possibile creare in modo molto semplice dei bridge usando direttamente una configurazione dentro a /etc/network/interfaces, cosi`:

auto br0
iface br0 inet static
        address 192.168.0.100
        netmask 255.255.255.0
        network 192.168.0.0
        broadcast 192.168.0.255
        gateway 192.168.0.1
        bridge_ports eth0 eth1
        bridge_fd 0
        bridge_hello 0
        bridge_stp off

Per riferimento vedasi il man di brctl.

Fatto questo, e` possibile creare regole di firewall per il traffico che passa dentro al bridge.

LinuxDebian/Bridging (last edited 2009-04-12 17:33:25 by localhost)