Yet Another Homematic Management - Skripte zur Einrichtung der Homematic CCU Oberfläche in einem LXC Container unter Debian Jessie auf ARM CPU (z.B.: Raspberry Pi & Co)
Creative Commons Zero v1.0 Universal
114
stars
21
forks
source link
Unterstützung für dns-nameservers in interfaces #129
Meine /etc/network/interfaces sah vor der yahm Installation so aus:
# interfaces(5) file used by ifup(8) and ifdown(8)
# Please note that this file is written to be used with dhcpcd
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'
# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.178.12
netmask 255.255.255.0
gateway 192.168.178.1
dns-nameservers 192.168.178.11
allow-hotplug wlan0
iface wlan0 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
allow-hotplug wlan1
iface wlan1 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
Daraus machte der yahm-ui installer folgendes:
# interfaces(5) file used by ifup(8) and ifdown(8)
# Please note that this file is written to be used with dhcpcd
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'
# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d
auto lo
iface lo inet loopback
iface eth0 inet manual
allow-hotplug wlan0
iface wlan0 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
allow-hotplug wlan1
iface wlan1 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
#iface yahmbr0 inet dhcp
auto yahmbr0
iface yahmbr0 inet static
address 192.168.178.12
netmask 255.255.255.0
gateway 192.168.178.1
bridge_ports eth0
Da der nameserver Eintrag verschwunden war hatte meine Maschine danach keine funktionierende DNS-Auflösung mehr. Bitte nehmt diesen Eintrag einfach mit beim Umbau der Datei...
Meine /etc/network/interfaces sah vor der yahm Installation so aus:
Daraus machte der yahm-ui installer folgendes:
Da der nameserver Eintrag verschwunden war hatte meine Maschine danach keine funktionierende DNS-Auflösung mehr. Bitte nehmt diesen Eintrag einfach mit beim Umbau der Datei...