Como instalar Servidor NTP no RHEL 8
Posted in: Linux

Como instalar Servidor NTP no RHEL 8

dnf install chrony
systemctl start chronyd
systemctl status chronyd
systemctl enable chronyd
vi /etc/chrony.conf
allow 192.168.56.0/24
systemctl restart chronyd
firewall-cmd --permanent --add-service=ntp
firewall-cmd --reload

Configurar cliente NTP no RHEL 8

yum install chrony
# systemctl start chronyd
# systemctl enable chronyd
# systemctl status chronyd
vi /etc/chrony.conf
server 192.168.56.110
systemctl restart chronyd
chronyc sources 
chronyc clients
man chronyc
Back to Top