ich möchte beim starten von meinen Debian 10 LXDE die statische IP-Adresse von einen USB Stick laden.
Dazu habe ich die Dateien /etc/network/interface mit folgenden Inhalt auf den USB stick erzeugt:
Code: Alles auswählen
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eno1
iface eno1 inet static
address 172.16.55.165
broadcast 172.16.255.255
gateway 172.16.1.10
netmask 255.255.0.0
network 172.16.0.0
dns-nameservers 8.8.8.8
Code: Alles auswählen
#! /bin/sh
#Mount Stick
mount /dev/sdb1 /stick
#Copy file interfaces
cp -p /stick/interfaces /etc/network
#remove stick
umount /dev/sdb1
#restart Network to load IP
ifdown eno1 && ifup eno1
Wie kann ich die Konfiguration übernehmen / was mache falsch?
Vielen Dank für die Hilfe
Gruß
Brudal1