Die Fehlermeldungen sehen so aus, dass er entweder nicht online gehen kann (503) oder keine Quellen findet (506).
Hier ist meine iptables, die eigentlich alles durchlässt (Ausschnitt):
Code: Alles auswählen
start() {
echo "Starting iptables."
# loading needed modules
modprobe ip_tables
modprobe ip_conntrack
modprobe ip_conntrack_irc
modprobe ip_conntrack_ftp
# dropping tables
kaboom
# let my loopback device live
iptables -A INPUT -i lo -j ACCEPT
iptables -A OUTPUT -o lo -j ACCEPT
# allow established connections
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A OUTPUT -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
# log everything
#dmesg -n 2
#iptables -A INPUT -j LOG --log-prefix "firewall-in "
#iptables -A OUTPUT -j LOG --log-prefix "firewall-out "
}
Auch ohne Firewall ging nichts. Dann habe ich pool.ntp.org durch 0.pool.ntp.org, 1.pool.ntp.org, 2.pool.ntp.org ersetzt. Jetzt läuft er zumindest ohne Firewall.
wieder EDIT:
Kommando zurück. Jetzt will chrony wieder die ursprüngliche config.
Hat jemand chrony mit Firewall am Laufen?