Hello 

Je remonte le sujet, car je viens de m’apercevoir que networking.service me remonte des "erreurs"
déc. 20 07:31:47 systemd[1]: Starting Raise network interfaces...
déc. 20 07:31:48  ifup[1298]: RTNETLINK answers: File exists
déc. 20 07:31:48  ifup[1298]: ifup: failed to bring up br0
déc. 20 07:31:48  ifup[1298]: RTNETLINK answers: File exists
déc. 20 07:31:48  ifup[1298]: ifup: failed to bring up eth0
déc. 20 07:31:48  ifup[1298]: ifup: waiting for lock on /run/network/ifstate.eth1
déc. 20 07:31:54  systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE
déc. 20 07:31:54  systemd[1]: networking.service: Failed with result 'exit-code'.
déc. 20 07:31:54  systemd[1]: Failed to start Raise network interfaces.
Je n'ai jamais fait attention car tout fonctionne bien, je suis tombé dessus par hasard tout à l'heure.
Pour rappel, voilà ma config actuelle:
source /etc/network/interfaces.d/*
# The loopback network interface
iface lo inet loopback
# Demarre les interfaces au boot
auto lo br0 eth0 eth1
# The primary network interface
										 
allow-hotplug eth0
iface eth0 inet static
        address 192.168.1.100
        netmask 255.255.255.0
        broadcast 192.168.1.255
        network 192.168.1.0
	up ip route add 192.168.1.0/24 dev eth0 src 192.168.1.100 table eth0table
        up ip route add default via 192.168.1.254 dev eth0 table eth0table
        up ip rule add from 192.168.1.100/32 table eth0table
        up ip rule add to 192.168.1.100/32 table eth0table
	up ip route add default via 192.168.1.254 dev eth0
	up ip route add 192.168.1.0/24 dev eth0 src 192.168.1.100
iface eth0 inet6 manual
        pre-up /sbin/modprobe -q ipv6 ; /bin/true
# Configuration br0/eth1
allow-hotplug eth1
iface eth1 inet manual
iface eth1 inet6 manual
	pre-up /sbin/modprobe -q ipv6 ; /bin/true
# Set up bridge and give it a static ip
iface br0 inet static
        address 192.168.1.101
        netmask 255.255.255.0
        network 192.168.1.0
        broadcast 192.168.1.255
        bridge_ports eth1
        bridge_stp off
        bridge_fd 0
        bridge_maxwait 0
	up ip route add 192.168.1.0/24 dev br0 src 192.168.1.101 table br0table
        up ip route add default via 192.168.1.254 dev br0 table br0table 
        up ip rule add from 192.168.1.101/32 table br0table 
        up ip rule add to 192.168.1.101/32 table br0table 
	up ip route add 192.168.1.0/24 dev br0 src 192.168.1.101
		
# Allow autoconf for ipv6
iface br0 inet6 auto
        accept_ra 1
A priori c'est que j'aurais déjà plusieurs fois les même routes en fait, du coup il n'aime pas - 
RTNETLINK answers: File exists
Est ce que qqun aurait une idée ?
Car tout fonctionne bien et mes interfaces sont bien up "<UP,BROADCAST,RUNNING,MULTICAST>" que ce soit la br0,eth0, etc
Merci d'avance !