<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://spaceonearth.org/index.php?action=history&amp;feed=atom&amp;title=Tux-linux_timeserver</id>
	<title>Tux-linux timeserver - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://spaceonearth.org/index.php?action=history&amp;feed=atom&amp;title=Tux-linux_timeserver"/>
	<link rel="alternate" type="text/html" href="https://spaceonearth.org/index.php?title=Tux-linux_timeserver&amp;action=history"/>
	<updated>2026-05-02T18:29:23Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in SpaceOnEarth</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>https://spaceonearth.org/index.php?title=Tux-linux_timeserver&amp;diff=399&amp;oldid=prev</id>
		<title>Axel: 1 Version importiert</title>
		<link rel="alternate" type="text/html" href="https://spaceonearth.org/index.php?title=Tux-linux_timeserver&amp;diff=399&amp;oldid=prev"/>
		<updated>2022-04-04T14:35:18Z</updated>

		<summary type="html">&lt;p&gt;1 Version importiert&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;de&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Nächstältere Version&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Version vom 4. April 2022, 16:35 Uhr&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;de&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(kein Unterschied)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Axel</name></author>
	</entry>
	<entry>
		<id>https://spaceonearth.org/index.php?title=Tux-linux_timeserver&amp;diff=398&amp;oldid=prev</id>
		<title>Maintenance script: DokuwikiExportByHoxel</title>
		<link rel="alternate" type="text/html" href="https://spaceonearth.org/index.php?title=Tux-linux_timeserver&amp;diff=398&amp;oldid=prev"/>
		<updated>2019-12-28T12:21:19Z</updated>

		<summary type="html">&lt;p&gt;DokuwikiExportByHoxel&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;====== I_UfE_Linux_timeserver ======&lt;br /&gt;
&lt;br /&gt;
=Zeitzone einstellen=&lt;br /&gt;
einstellen der zeitzone mit&lt;br /&gt;
 #dpkg-reconfigure tzdata &lt;br /&gt;
 Bei mir hat Europe/Berlin unter lenny nicht funktioniert, daher habe ich Europe/Vienna gewaehlt -&amp;gt; ok&lt;br /&gt;
=Zeitsynchronisation mit NTP (Client/Server)=&lt;br /&gt;
*http://tldp.org/HOWTO/TimePrecision-HOWTO&lt;br /&gt;
======server======&lt;br /&gt;
&amp;quot;Network Time Protocol&amp;quot; (kurz: NTP). NTP basiert auf dem Client/Server-Prinzip.&lt;br /&gt;
Ein Server (oder mehrere) bietet im Netzwerk die Uhrzeit an, und beliebig viele Clients synchronisieren ihre Uhrzeit mit diesem.&lt;br /&gt;
 #apt-get install ntp ntpdate&lt;br /&gt;
editierte /etc/ntp.conf&lt;br /&gt;
 ### Server:/etc/ntp.conf ####################################################&lt;br /&gt;
 # Abweichungen&lt;br /&gt;
 driftfile /var/lib/ntp/ntp.drift&lt;br /&gt;
 # NTP-Server&lt;br /&gt;
 server ptbtime1.ptb.de&lt;br /&gt;
 server ptbtime2.ptb.de&lt;br /&gt;
 #pool.ntp.org&lt;br /&gt;
 #Zugriff durch NTP-Server gestatten&lt;br /&gt;
 restrict ptbtime1.ptb.de&lt;br /&gt;
 restrict ptbtime2.ptb.de&lt;br /&gt;
 &lt;br /&gt;
 #Zugriff vom localhost gestatten (ntpq -p)&lt;br /&gt;
 restrict 127.0.0.1&lt;br /&gt;
 #Zugriff aus dem internen Netz gestatten&lt;br /&gt;
 restrict 192.168.2.0 mask 255.255.255.0&lt;br /&gt;
 restrict 10.0.0.0 mask 255.0.0.0&lt;br /&gt;
 #allen anderen Rechnern Zugriff verwehren&lt;br /&gt;
 restrict default notrust nomodify nopeer&lt;br /&gt;
 #############################################################################&lt;br /&gt;
vor NTP-Daemon start, erstmalig synchronisieren&lt;br /&gt;
 #ntpdate ptbtime1.ptb.de&lt;br /&gt;
Zeitzone einstellen.&lt;br /&gt;
 in /etc/timezone muss &amp;quot;Europe/Berlin&amp;quot; stehen&lt;br /&gt;
/etc/init.d/ntp start&lt;br /&gt;
======Client-Konfiguration======&lt;br /&gt;
apt-get install ntp ntp-simple ntpdate&lt;br /&gt;
&lt;br /&gt;
/etc/ntp.conf&lt;br /&gt;
 ### Client:/etc/ntp.conf ####################################################&lt;br /&gt;
 # Abweichungen&lt;br /&gt;
 driftfile /var/lib/ntp/ntp.drift&lt;br /&gt;
 # NTP-Server im LAN (siehe oben)&lt;br /&gt;
 server 192.168.1.1&lt;br /&gt;
 #Zugriff durch NTP-Server gestatten&lt;br /&gt;
 restrict 192.168.1.1&lt;br /&gt;
 #Zugriff vom localhost gestatten (ntpq -p)&lt;br /&gt;
 restrict 127.0.0.1&lt;br /&gt;
 # allen anderen Rechnern Zugriff verwehren&lt;br /&gt;
 restrict default notrust nomodify nopeer&lt;br /&gt;
 #############################################################################&lt;br /&gt;
Bevor auf dem Client der NTP-Daemon gestartet wurde, wurde die Uhrzeit wie beim Server auch erstmalig synchronisiert:&lt;br /&gt;
 #ntpdate 192.168.1.1&lt;br /&gt;
Mit dem folgenden Kommando wurde dann der NTP-Prozess und somit die Zeitsynchronisation mit meinem Server angestoßen:&lt;br /&gt;
 #/etc/init.d/ntp start&lt;br /&gt;
Falls das Start-/Stop-Script des NTP-Daemons (Server &amp;amp; Clients) beim Herunterfahren des Rechners die Uhrzeit nicht automatisch in die Realtime Clock (RTC) des Rechners schreibt, kann dieser Vorgang manuell durchgeführt werden:&lt;br /&gt;
 #hwclock --systohc&lt;br /&gt;
Um sich alle eingebundenen Zeitserver anzeigen zu lassen, verwendet man üblicherweise einen der beiden folgenden Befehle:&lt;br /&gt;
 ntpq -p&lt;br /&gt;
 ntpdc -p\n[[category:DWImport]]\n&lt;/div&gt;</summary>
		<author><name>Maintenance script</name></author>
	</entry>
</feed>