Hello,
I've an issue on my server. I can't create an other linux bridge to have access on my LAN.
First bridge with the bridge port on my ethernet interfcae is OK. But for other bridge, the interface is down....all my network is down.
initial config :
When I add my first bridge :
It's OK, network is OK
But if I would like add a seconde bridge :
I don't have network
Have you an idea to solved this issue ?
Excuse for my english....I french.
I've an issue on my server. I can't create an other linux bridge to have access on my LAN.
First bridge with the bridge port on my ethernet interfcae is OK. But for other bridge, the interface is down....all my network is down.
initial config :
Code:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The normal eth0
allow-hotplug eth0
iface eth0 inet dhcp
# Additional interfaces, just in case we're using
# multiple networks
allow-hotplug eth1
iface eth1 inet dhcp
allow-hotplug eth2
iface eth2 inet dhcp
auto eno1
iface eno1 inet dhcp
When I add my first bridge :
Code:
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet manual
auto vmbr0
iface vmbr0 inet static
address 80.80.80.80/24
gateway 80.80.80.254
bridge-ports eno1
bridge-stp off
bridge-fd 0
It's OK, network is OK
But if I would like add a seconde bridge :
I don't have network
Code:
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet manual
auto vmbr0
iface vmbr0 inet static
address 80.80.80.80/24
gateway 80.80.80.254
bridge-ports eno1
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr1 inet static
address 10.0.0.1/30
bridge-ports none
bridge-stp off
bridge-fd 0
Have you an idea to solved this issue ?
Excuse for my english....I french.
Last edited: