Mein Server will halt nicht so, wie ich es haben will......

Alle weiteren Dienste, die nicht in die drei oberen Foren gehören.
Antworten
Benutzeravatar
colesnicov
Beiträge: 11
Registriert: 31.07.2007 11:34:27
Wohnort: Grein - Österreich
Kontaktdaten:

Mein Server will halt nicht so, wie ich es haben will......

Beitrag von colesnicov » 31.07.2007 11:46:35

Hallo liebe Community.....

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
Auf dem Server habe ich auch einen DHCP-Server installiert (DHCP3)

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;
}
und in der /etc/default/dhcp3-server Datei habe ich folgende einstellung

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]

compaqt
Beiträge: 79
Registriert: 07.07.2005 14:07:30

Beitrag von compaqt » 31.07.2007 12:01:10

vielleicht das noch der dhcpd.conf hinzufügen

Code: Alles auswählen

option subnet-mask 255.255.255.0;

Benutzeravatar
colesnicov
Beiträge: 11
Registriert: 31.07.2007 11:34:27
Wohnort: Grein - Österreich
Kontaktdaten:

Beitrag von colesnicov » 31.07.2007 12:05:15

compaqt hat geschrieben:vielleicht das noch der dhcpd.conf hinzufügen

Code: Alles auswählen

option subnet-mask 255.255.255.0;
Ich habs versucht, erhalte aber immer noch den selben Fehler und meine Syslog schreibt:

Jul 31 12:02:28 ZEUS kernel: tg3: eth0: Link is up at 100 Mbps, full duplex.
Jul 31 12:02:28 ZEUS kernel: tg3: eth0: Flow control is on for TX and on for RX.
Jul 31 12:02:28 ZEUS kernel: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Jul 31 12:02:30 ZEUS dhcpd: Internet Systems Consortium DHCP Server V3.0.4
Jul 31 12:02:30 ZEUS dhcpd: Copyright 2004-2006 Internet Systems Consortium.
Jul 31 12:02:30 ZEUS dhcpd: All rights reserved.
Jul 31 12:02:30 ZEUS dhcpd: For info, please visit http://www.isc.org/sw/dhcp/
Jul 31 12:02:32 ZEUS dhcpd: Internet Systems Consortium DHCP Server V3.0.4
Jul 31 12:02:32 ZEUS dhcpd: Copyright 2004-2006 Internet Systems Consortium.
Jul 31 12:02:32 ZEUS dhcpd: All rights reserved.
Jul 31 12:02:32 ZEUS dhcpd: For info, please visit http://www.isc.org/sw/dhcp/
Jul 31 12:02:32 ZEUS dhcpd: Wrote 1 leases to leases file.
Jul 31 12:02:32 ZEUS dhcpd:
Jul 31 12:02:32 ZEUS dhcpd: No subnet declaration for eth1 (0.0.0.0).
Jul 31 12:02:32 ZEUS dhcpd: ** Ignoring requests on eth1. If this is not what
Jul 31 12:02:32 ZEUS dhcpd: you want, please write a subnet declaration
Jul 31 12:02:32 ZEUS dhcpd: in your dhcpd.conf file for the network segment
Jul 31 12:02:32 ZEUS dhcpd: to which interface eth1 is attached. **
Jul 31 12:02:32 ZEUS dhcpd:
Jul 31 12:02:32 ZEUS dhcpd:
Jul 31 12:02:32 ZEUS dhcpd: Not configured to listen on any interfaces!
Jul 31 12:02:39 ZEUS kernel: eth0: no IPv6 routers present



Meine dhcpd.conf Datei schaut nun so aus:

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";
option subnet-mask 255.255.255.0;
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;
}

compaqt
Beiträge: 79
Registriert: 07.07.2005 14:07:30

Beitrag von compaqt » 31.07.2007 15:30:36

Ein Schuss ins Blaue:

Bei der Interface Konfiguration fährst du eth1 nicht beim Starten hoch.

Vielleicht klappt es so:

Code: Alles auswählen

auto eth1
iface eth1 inet static 
...

compaqt
Beiträge: 79
Registriert: 07.07.2005 14:07:30

Beitrag von compaqt » 01.08.2007 07:43:28

hat das was gebracht?

Benutzeravatar
colesnicov
Beiträge: 11
Registriert: 31.07.2007 11:34:27
Wohnort: Grein - Österreich
Kontaktdaten:

Beitrag von colesnicov » 27.08.2007 15:37:17

nein leider. Habs Probiert.

Nun hab ich Debian neu aufgesetzt.

danke

Antworten