Vielleicht kann mir jemand bei einem Problem helfen....
Also:
In einem kleinen Netzwerk befindet sich ein Linux-Server (Debian 3.0) und ein Windows 2000-Client. Beim Booten von Linux wird eine DSL-Verbindung ins Internet hergestellt. Der Server ist also stets online.
Mein Ziel: Die Uhrzeit des Linux-Servers soll sich mit der Zeit eines öffentlichen NTP-Servers synchronisieren. Der Client soll anschließend die Uhrzeit vom Server beziehen.
Im ersten Schritt möchte ich lediglich erreichen, dass die Uhrzeit auf dem Server richtig ist!
Zur Installation:
Code: Alles auswählen
apt-get install ntp ntpdate
Code: Alles auswählen
ptbtime1.ptb.de ptbtime2.ptb.de
Code: Alles auswählen
ps -A | grep -i ntpd
551 ? 00:00:01 ntpd
Code: Alles auswählen
# /etc/ntp.conf, configuration for ntpd
# ntpd will use syslog() if logfile is not defined
#logfile /var/log/ntpd
driftfile /var/lib/ntp/ntp.drift
statsdir /var/log/ntpstats/
statistics loopstats peerstats clockstats
filegen loopstats file loopstats type day enable
filegen peerstats file peerstats type day enable
filegen clockstats file clockstats type day enable
### lines starting 'server' are auto generated,
### use dpkg-reconfigure to modify those lines.
server ptbtime1.ptb.de
server ptbtime2.ptb.de
Hier ein Auszug aus der heutigen Logdatei "/var/log/syslog":
Code: Alles auswählen
Nov 6 09:16:16 hogwarts ntpd[551]: ntpd 4.1.0 Mon Mar 25 23:39:47 UTC 2002 (2)
Nov 6 09:16:16 hogwarts ntpd[551]: signal_no_reset: signal 13 had flags 4000000
Nov 6 09:16:16 hogwarts ntpd[551]: precision = 17 usec
Nov 6 09:16:16 hogwarts ntpd[551]: kernel time discipline status 0040
Nov 6 09:16:16 hogwarts ntpd[551]: frequency initialized 137.055 from /var/lib/ntp/ntp.drift
Nov 6 09:16:16 hogwarts ntpd[573]: signal_no_reset: signal 17 had flags 4000000
Nov 6 09:16:24 hogwarts ntpd[551]: sendto(192.53.103.103): Operation not permitted
Nov 6 09:16:27 hogwarts ntpd[551]: sendto(192.53.103.104): Operation not permitted
Ach ja: Nach einem "dpkg-reconfigure ntpdate" läuft die Uhrzeit des Servers ohne Probleme! Dann steht im Logfile zusätzlich:
Code: Alles auswählen
Nov 6 16:08:50 hogwarts ntpdate[2909]: step time server 192.53.103.104 offset -3.324375 sec
Vielen Dank für Eure Hilfe!
Gruß,
Thilo