Ich versuche mittels interfacefile eine Bridge zu erstellen.
Code: Alles auswählen
# /etc/network/interfaces file
#
# Loopback interface
auto lo
iface lo inet loopback
#
# Configure the bridge
auto br0
iface br0 inet manual
# Ports you want to add to your bridge
bridge_ports eth0 eth1
# Time to wait before loading the bridge
bridge_maxwait 0
#
# Configure the bridge management
# interface.
auto eth2
iface eth2 inet static
address 192.168.1.22
netmask 255.255.255.0
broadcast 192.168.1.255
gateway 192.168.1.1
Ich habe drei NIC's.
Nachdem /etc/init.d/networking restart bekomme ich die Meldung: ignoring unknown interface eth0=eth0.
Mit Ifup eth0 bekomme ich die gleiche Meldung.
Edit KBDCALLS: Colortags in Codetags geändert.