一、配置chrony服务,实现服务器时间自动同步
服务器端
yum install chrony
systemctl start chronyd
systemctl enable chronyd
vim /etc/chrony.conf
添加
allow 192.168.0.0/16
客户端
yum install chrony
systemctl start chronyd
systemctl enable chronyd
vim /etc/chrony.conf
添加
server 192.168.6.11 iburst
local stratum 10 #去掉注释
验证时钟源是否有效:
chronyc sourcestats -v
二、实现cobbler+pxe自动化装机
工作中用不上,先略过…