NTP时间同步
1、安装ntp 外网:sudo apt install ntp (内网拷贝离线包安装)
2、修改配置文件:vim /etc/ntp.conf
注释默认的时间同步源
#pool 127.0.0.1 iburst
#pool 1.debian.pool.ntp.org iburst
#pool 2.debian.pool.ntp.org iburst
#pool 3.debian.pool.ntp.org iburst
增加以下2行
server 127.127.1.0
fudge 127.127.1.0 stratum 8
修改后,保存退出
3、启动服务并设置服务开机自启
systemctl start ntp && systemctl enable ntp
4、查看侦听端口
netstat -tunlp | grep ntp 或者ss -ntulp | grep ntp 一般是在123端口
timedatectl 查看当前机器时间
ip a 查看服务端ip