interfaces:
Code: Alles auswählen
# The primary network interface
allow-hotplug eth1
iface eth1 inet static
address 192.168.10.40
netmask 255.255.255.0
gateway 192.168.10.1
auto eth1
# The DHCP Server
allow-hotplug eth0
iface eth0 inet static
address 10.8.0.1
netmask 255.255.255.0
network 10.8.0.1
broadcast 10.8.0.255
up /etc/scripts/ipmask.sh
auto eth0
Code: Alles auswählen
subnet 10.8.0.0 netmask 255.255.255.0
{
range 10.8.0.10 10.8.0.50;
option domain-name-servers 192.168.10.1;
option domain-name "rootnet.lokal";
option netbios-name-servers 192.168.10.1;
option routers 10.8.0.1;
option subnet-mask 255.255.255.0;
option broadcast-address 10.8.0.255;
default-lease-time 86400;
max-lease-time 676800;
}
Und nun ist das Problem, dass kein Client weder Windows noch Linux eine IP bezieht. Bei mir hier funktioniert diese Konfiguration ohne Probleme. Ich sehe im Moment keinen brauchbaren Lösunsgansatz und bin bisher auch nicht fündig geworden. Ich bin für jede Hilfe dankbar.
Gruß Matthias