Есть ли рабочий конфиг NTP в Debian (NTP-сервер для локальных клиентов)?
Есть сервер на Debian, к внешнему интернету доступа пока не имеет. Локальные клиенты на Windows 7 Home Premium.
Задача: Разрешить запросы на синхронизацию от локальных клиентов в ntp.conf.
На данный момент не получается почему-то. nmap не показывает открытый 123 порт. Mikrotik показывает пролетающие пакеты на этот порт. Сеть имеет вид 192.168.101.0/24.
Был бы благодарен заведомо рабочему конфигу тех, у кого работает локальное зеркало NTP.
# /etc/ntp.conf, configuration for ntpd; see ntp.conf(5) for help
driftfile /var/lib/ntp/ntp.drift
# Enable this if you want statistics to be logged.
#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
# You do need to talk to an NTP server or two (or three).
#server ntp.your-provider.example
# pool.ntp.org maps to about 1000 low-stratum NTP servers. Your server will
# pick a different set every time it starts up. Please consider joining the
# pool: <http://www.pool.ntp.org/join.html>
server 0.debian.pool.ntp.org iburst
server 1.debian.pool.ntp.org iburst
server 2.debian.pool.ntp.org iburst
server 3.debian.pool.ntp.org iburst
# Access control configuration; see /usr/share/doc/ntp-doc/html/accopt.html for
# details. The web page <http://support.ntp.org/bin/view/Support/AccessRestrictions>
# might also be helpful.
#
# Note that "restrict" applies to both servers and clients, so a configuration
# that might be intended to block requests from certain clients could also end
# up blocking replies from your own upstream servers.
# By default, exchange time with everybody, but don't allow configuration.
restrict -4 default kod notrap nomodify nopeer noquery
restrict -6 default kod notrap nomodify nopeer noquery
# Local users may interrogate the ntp server more closely.
restrict 127.0.0.1
restrict ::1
# Clients from this (example!) subnet have unlimited access, but only if
# cryptographically authenticated.
restrict 192.168.1.0 mask 255.255.255.0
# If you want to provide time to your local subnet, change the next line.
# (Again, the address is an example only.)
#broadcast 192.168.123.255
# If you want to listen to time broadcasts on your local subnet, de-comment the
# next lines. Please do this only if you trust everybody on the network!
#disable auth
#broadcastclient
Как проверить потом? С другого хоста в локалке пробую ntpdate 172.16.0.1, в ответ пишет - 25 Sep 12:11:57 ntpdate[8227]: no server suitable for synchronization found.
Ilya Evseev: да стал разбираться - запросы доходят, с клиента пробовал ntpdate -d 172.16.0.1 и, судя по выводу (stratum 3, precision -29, leap 11, trust 000) и после гуглирования, выяснилось, что сам сервер не синхронизирован. Это было в пятницу, а сейчас в понедельник - всё заработало (stratum 3, precision -29, leap 00, trust 000). Насильно заставить сервер выполнить синхронизацию у меня не получалось.
Ilya Evseev: вот и пытался его использовать, но без видимого эффекта - клиенты ругались. Кстати, это правильно, что у меня на сервере вывод date с указанием зоны Москва и GMT-3 выдают одно и то же?
TZ=GMT-3 date
Tue Sep 29 10:11:30 GMT 2015
TZ='Europe/Moscow' date
Tue Sep 29 10:11:32 MSK 2015
antoshib: Очевидно, что GMT-3 не воспринимается как корректное значение. В "man date" есть пример "TZ='America/Los_Angeles' date", он работает нормально.
Спасибо. Пробовал раскомментировать эту строку. Не заработало. Я правильно понимаю, что restrict при пустом варианте все разрешает? В оригинале там notrust вроде.