Система: debian 8, isc-dhcp-server.
cat /etc/network/interfaces
auto eth2
iface eth2 inet static
address 192.168.0.1
network 192.168.0.0
netmask 255.255.255.0
broadcast 192.168.0.255
gateway 192.168.0.1
auto br2
iface br2 inet static
address 192.168.0.1
network 192.168.0.0
netmask 255.255.255.0
broadcast 192.168.0.255
gateway 192.168.0.1
bridge_ports eth2
bridge_stp off
bridge_fd 0
bridge_maxwait 0
Делаем
systemctl restart isc-dhcp-server.service
systemctl status isc-dhcp-server.service
Он запускается, но с ошибками:
May 18 09:25:35 localhost dhcpd[7449]: Multiple interfaces match the same subnet: br2 eth2
May 18 09:25:35 localhost dhcpd[7449]: Multiple interfaces match the same shared network: br2 eth2
Если из interfaces убрать br2, то всё работает замечательно. Но мне нужен bridge для виртуалки kvm.
Вопрос: в чем ошибка с eth2 и br2?