好的,阿杰,我帮你整理一份 国内常用 NTP 时间源(NTP 服务器)汇总,可以用于 Linux、Windows 或网络设备时间同步。
国内常用 NTP 服务器列表
1️⃣ 国家授时中心(中国科学院)
服务器地址 | 备注 |
---|---|
ntp1.aliyun.com | 阿里云公共 NTP |
ntp2.aliyun.com | 阿里云公共 NTP |
ntp3.aliyun.com | 阿里云公共 NTP |
ntp1.ntsc.ac.cn | 国家授时中心 |
ntp2.ntsc.ac.cn | 国家授时中心 |
ntp3.ntsc.ac.cn | 国家授时中心 |
ntp1.cstnet.cn | 中国科学技术网 |
ntp2.cstnet.cn | 中国科学技术网 |
2️⃣ 云厂商 NTP 服务器
服务器地址 | 备注 |
---|---|
ntp1.aliyun.com | 阿里云 |
ntp2.aliyun.com | 阿里云 |
ntp3.aliyun.com | 阿里云 |
ntp1.tencent.com | 腾讯云 |
ntp2.tencent.com | 腾讯云 |
ntp1.baidu.com | 百度云 |
ntp2.baidu.com | 百度云 |
3️⃣ 教育网 / 科技网
服务器地址 | 备注 |
---|---|
ntp1.edu.cn | 教育网 NTP |
ntp2.edu.cn | 教育网 NTP |
ntp1.cernet.edu.cn | CERNET 教育网 |
ntp2.cernet.edu.cn | CERNET 教育网 |
4️⃣ 公共 NTP 池(国内节点)
- 使用 NTP Pool 项目提供的中国节点:
0.cn.pool.ntp.org
1.cn.pool.ntp.org
2.cn.pool.ntp.org
3.cn.pool.ntp.org
NTP Pool 是全球分布式时间服务器项目,CN 节点稳定可靠,自动负载均衡
5️⃣ Linux 系统配置示例
编辑 /etc/ntp.conf
:
server ntp1.aliyun.com iburst
server ntp2.aliyun.com iburst
server ntp3.ntsc.ac.cn iburst
server 0.cn.pool.ntp.org iburst
重启 NTP 服务:
# Ubuntu/Debian
sudo systemctl restart ntp
# CentOS/RHEL
sudo systemctl restart ntpd
查看同步状态:
ntpq -p
6️⃣ Windows 系统配置示例
- 打开 控制面板 → 日期和时间 → Internet 时间 → 更改设置
- 填写 NTP 服务器,例如:
ntp1.aliyun.com
ntp2.ntsc.ac.cn
0.cn.pool.ntp.org
- 点击 立即更新
7️⃣ 注意事项
- 推荐使用多个服务器,提高同步精度与可靠性
- 教育网或科研网用户优先选择 CERNET / CSTNET 节点
- 公网服务器注意防火墙开放 UDP 123 端口
发表回复