Debian 5 Lenny + ISPCOnfig3 + Dovecot - Welche Dienste starten?

Till

Administrator
Wie in #19 beschrieben fehlt das Loopback Device. Poste mal die Ausgabe von:

ifconfig

und den Inhalt der datei:

/etc/network/interfaces
 

WolfCG

New Member
Inhalt der /etc/network/interfaces:
# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
#allow-hotplug eth0
#iface eth0 inet dhcp
auto eth0
iface eth0 inet dhcp
adress 91.190.28.145
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.0.255
gateway 91.190.28.1
Loopback ist ja drin ? .. aber lokal noch immer nichts erreichbar...

Reconfiguring network interfaces...There is already a pid file /var/run/dhclient.eth0.pid with pid 25104
killed old client process, removed PID file
Internet Systems Consortium DHCP Client V3.1.1
Copyright 2004-2008 Internet Systems Consortium.
All rights reserved.
For info, please visit http://www.isc.org/sw/dhcp/

Listening on LPF/eth0/00:18:4d:72:0a:0d
Sending on LPF/eth0/00:18:4d:72:0a:0d
Sending on Socket/fallback
DHCPRELEASE on eth0 to 10.2.49.250 port 67
Internet Systems Consortium DHCP Client V3.1.1
Copyright 2004-2008 Internet Systems Consortium.
All rights reserved.
For info, please visit http://www.isc.org/sw/dhcp/

Listening on LPF/eth0/00:18:4d:72:0a:0d
Sending on LPF/eth0/00:18:4d:72:0a:0d
Sending on Socket/fallback
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 3
DHCPOFFER from 172.30.184.1
DHCPREQUEST on eth0 to 255.255.255.255 port 67
DHCPACK from 172.30.184.1
bound to 91.190.28.145 -- renewal in 38088 seconds.
if-up.d/mountnfs[eth0]: waiting for interface lo before doing NFS mounts (warning).
done.

Und wenn ich in der Networking-Datei dann das DHCP auf static ändere, hab ich gar keine Inetverbindung mehr und es kommt folgender Fehler:
Reconfiguring network interfaces...Don't seem to be have all the variables for eth0/inet.
Failed to bring up eth0.
done.
 
Zuletzt bearbeitet:

Till

Administrator
Die /etc/network/interfaces Datei ist falsch formatiert. Du hast Di tabs vergessen. Richtig ist:

Code:
# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
#allow-hotplug eth0
#iface eth0 inet dhcp
auto eth0
iface eth0 inet static
     adress 91.190.28.145
     netmask 255.255.255.0
     network 192.168.1.0
     broadcast 192.168.0.255
     gateway 91.190.28.1

und es muss static und nicht dhcp in der eth0 Definition heißen.
 

WolfCG

New Member
Hi Till

Genau da ist das Problem... wenn ich static schreibe, dann habe ich gar keine Internetverbindung mehr...

Deshalb steht dort dhcp.. und am afang wo alles ging hatte ich ja auch schon dhcp drin..
Und das mit den Tabs. bringt bei mir keine Wirkung?

Fehlermeldung wenn static gesetzt ist:
Reconfiguring network interfaces...Don't seem to be have all the variables for eth0/inet.
Failed to bring up eth0.
done.

lg
Wolf
 

Laubie

Member
Code:
# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
#allow-hotplug eth0
#iface eth0 inet dhcp
auto eth0
iface eth0 inet static
     adress 91.190.28.145
     netmask 255.255.255.0
     network 192.168.1.0
     broadcast 192.168.0.255
     gateway 91.190.28.1

irgendwie kommen mir die adressen, die da drin stehen aber auch sehr komisch vor.
Hast du den Server bei dir zu Hause stehen? Oder ist der in einem Rechenzentrum?

91.190... klingt nach RZ
192.168... klingt nach zu Hause ;)

Grüße
Laubie
 

Werbung

Top