「NTP」- 可用 NTP 服务器 @20210224

很少,甚至不敢立“亲测”、“100%有效”这种FLAG。但是,本文提供的NTP服务器列表以及获取NTP服务器地址的方法是很可靠的。

# 国内NTP服务器列表

这个NTP地址来自于腾讯云服务器的定时任务里:

#!/bin/sh

ntpdate ntpupdate.tencentyun.com

下面的地址来自于「NTP官网中的中国区域」,地址如下:

#!/bin/sh

ntpdate 0.cn.pool.ntp.org
ntpdate 1.cn.pool.ntp.org
ntpdate 2.cn.pool.ntp.org
ntpdate 3.cn.pool.ntp.org

# 亚洲NTP服务器列表

下面的地址来自于「NTP官网中的亚洲区域」。地址如下:

#!/bin/sh

ntpdate 0.asia.pool.ntp.org
ntpdate 1.asia.pool.ntp.org
ntpdate 2.asia.pool.ntp.org
ntpdate 3.asia.pool.ntp.org

获取有效可用的NTP服务器的方法

官网的NTP服务器列表:http://www.pool.ntp.org/zone

NTP授时快速域名服务:http://www.ntp.org.cn/pool.php

参考文献

NTP授时快速域名服务
官网的NTP服务器列表

猜你喜欢

转载自blog.csdn.net/u013670453/article/details/114018049
NTP