da ich auf meinen Debian Server den "Home Assistant (Supervised)" installieren möchte, erfordert dieser die Installation des Network Manager.
Da ich aber eine sehr umfangreiche Netzwerkkonfiguration habe werden nach der Installation nicht alle Schnitstellen übernommen.
Hier bräuchte ich von Euch etwas Unterstützung. Meine aktuelle "interfaces" Datei sieht so aus:
Code: Alles auswählen
root@dsme01:~# cat /etc/network/interfaces
# 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 primary network interface
# allow-hotplug eth0
auto eth0
iface eth0 inet manual
# The scondery network interface
# allow-hotplug eth1
# auto eth1
allow eth1
iface eth1 inet manual
# The thirty network interface
# allow-hotplug eth2
# auto eth2
allow eth2
iface eth2 inet manual
# The bond dmz network interface
auto bond0
iface bond0 inet static
address 192.168.20.20
netmask 255.255.255.0
network 192.168.20.0
gateway 192.168.20.1
dns-search intern.harnet.de
dns-nameservers 192.168.20.20
bond-slaves eth1 eth2
bond_mode 4
bond_miimon 100
bond_updelay 200
bond_downdelay 200
up ip addr add 192.168.20.24 brd + dev bond0
up ip addr add 192.168.20.25 brd + dev bond0
up ip addr add 192.168.20.26 brd + dev bond0
up ip addr add 192.168.20.27 brd + dev bond0
up ip addr add 192.168.20.28 brd + dev bond0
up ip addr add 192.168.20.29 brd + dev bond0
up ip addr add 192.168.20.30 brd + dev bond0
up ip addr add 192.168.20.40 brd + dev bond0
up ip addr add 192.168.20.50 brd + dev bond0
# IP Address for virtuel Nginx Host
up ip addr add 192.168.20.10 brd + dev bond0 # swme01
up ip addr add 192.168.20.100 brd + dev bond0 # mome01
up ip addr add 192.168.20.101 brd + dev bond0 # pbxme01
up ip addr add 192.168.20.120 brd + dev bond0 # mphpme01
# The bond cups network
auto bond0.110
iface bond0.110 inet static
address 192.168.110.20
netmask 255.255.255.0
network 192.168.110.0
dns-search intern.harnet.de
dns-nameservers 192.168.20.20
# The bond plex network
auto bond0.120
iface bond0.120 inet static
address 192.168.120.20
netmask 255.255.255.0
network 192.168.120.0
dns-search intern.harnet.de
dns-nameservers 192.168.20.20
# The bond openhub network
auto bond0.130
iface bond0.130 inet static
address 192.168.130.20
netmask 255.255.255.0
network 192.168.130.0
dns-search intern.harnet.de
dns-nameservers 192.168.20.20
# The bond voip network
auto bond0.140
iface bond0.140 inet static
address 192.168.140.20
netmask 255.255.255.0
network 192.168.140.0
dns-search intern.harnet.de
dns-nameservers 192.168.20.20
# The bond elk network
auto bond0.150
iface bond0.150 inet static
address 192.168.150.20
netmask 255.255.255.0
network 192.168.150.0
dns-search intern.harnet.de
dns-nameservers 192.168.20.20
up ip addr add 192.168.150.21 brd + dev bond0.150
# The bond voip network
auto bond0.200
iface bond0.200 inet static
address 192.168.200.20
netmask 255.255.255.0
network 192.168.200.0
dns-search intern.harnet.de
dns-nameservers 192.168.20.20
# The bond openvpn network
auto bond0.10
iface bond0.10 inet manual
up ip link set $IFACE up promisc on
down ip link set $IFACE down promisc off
Gruß von Stefan Harbich