Ich hab das Forum duchgeforscht und habe nach einer Lösung für mein Problem gesucht, jedoch bin ich nicht fündig geworden.
Ich habe folgendes Projekt:
Mein Server hat 2 Netzwerkkarten: eine Für die Internetanbindung (Verbindung zum Telekom-Router) (eth0) und eine für die Lan-Verbindung zum internen Netz (Switch) (eth1)
Die /etc/network/interfaces Datei habe ich wie folgt configuriert
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).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.0.1
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.254
iface eth1 inet static
address 192.168.16.2
netmask 255.255.255.0
network 192.168.16.0
broadcast 192.168.16.255
gateway 192.168.16.2
die /etc/dhcp3/dhcpd.conf Datei hat folgende Einstellung
Code: Alles auswählen
ddns-update-style none;
authoritative;
default-lease-time 86400;
max-lease-time 86400;
option domain-name-servers 213.33.99.70, 80.120.17.70;
option domain-name "grein.local";
subnet 192.168.16.0 netmask 255.255.255.0 {
option routers 192.168.16.2;
range 192.168.16.100 192.168.16.199;
}
Code: Alles auswählen
# Defaults for dhcp initscript
# sourced by /etc/init.d/dhcp
# installed at /etc/default/dhcp3-server by the maintainer scripts
#
# This is a POSIX shell fragment
#
# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
# Separate multiple interfaces with spaces, e.g. "eth0 eth1".
INTERFACES="eth1"
Beim starten des DHCP servers erscheint mir folgender Fehler:
No subnet declaration for eth1 (0.0.0.0).
Siehe meine Syslog-Auszug
Jul 31 11:31:46 ZEUS dhcpd: Internet Systems Consortium DHCP Server V3.0.4
Jul 31 11:31:46 ZEUS dhcpd: Copyright 2004-2006 Internet Systems Consortium.
Jul 31 11:31:46 ZEUS dhcpd: All rights reserved.
Jul 31 11:31:46 ZEUS dhcpd: For info, please visit http://www.isc.org/sw/dhcp/
Jul 31 11:31:48 ZEUS dhcpd: Internet Systems Consortium DHCP Server V3.0.4
Jul 31 11:31:48 ZEUS dhcpd: Copyright 2004-2006 Internet Systems Consortium.
Jul 31 11:31:48 ZEUS dhcpd: All rights reserved.
Jul 31 11:31:48 ZEUS dhcpd: For info, please visit http://www.isc.org/sw/dhcp/
Jul 31 11:31:48 ZEUS dhcpd: Wrote 1 leases to leases file.
Jul 31 11:31:48 ZEUS dhcpd:
Jul 31 11:31:48 ZEUS dhcpd: No subnet declaration for eth1 (0.0.0.0).
Jul 31 11:31:48 ZEUS dhcpd: ** Ignoring requests on eth1. If this is not what
Jul 31 11:31:48 ZEUS dhcpd: you want, please write a subnet declaration
Jul 31 11:31:48 ZEUS dhcpd: in your dhcpd.conf file for the network segment
Jul 31 11:31:48 ZEUS dhcpd: to which interface eth1 is attached. **
Jul 31 11:31:48 ZEUS dhcpd:
Jul 31 11:31:48 ZEUS dhcpd:
Jul 31 11:31:48 ZEUS dhcpd: Not configured to listen on any interfaces!
Vielen Dank für eure Hilfe.
[/b]