欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

no server suitable for synchronization found Ntp--server dropped:Strata too hight 有大用

 no server suitable for synchronization found


#ntpdate -d 192.168.0.75  #-d 就是 debug ,报详细的错


Server dropped: Strata too high


ntp 服务:Server dropped: Strata too high


1.通过ntpdate -d 服务端IP,显示Server dropped: Strata too high

vi /etc/ntp.conf

在ntpd服务端的配置中添加

server 127.127.1.0 fudge

127.127.1.0 stratum 8 

重启ntpd服务就可以了

service ntpd restart

转载于:https://www.cnblogs.com/tylzzh/p/9068393.html


来自  https://blog.csdn.net/weixin_30933531/article/details/97590670


Ntp--server dropped:Strata too hight

               
有金 2018-05-14 10:00:43  1644  收藏                
分类专栏: Linux 文章标签: ntp                
版权            


前段时间现场遇到window系统无法更新ntp服务器时间问题:
               

               

前段时间现场遇到window系统无法更新ntp服务器时间问题:

当用ntpdate -d来查询时会发现导致no server suitable for synchronization found的错误的信息有以下2个:

错误1.Server dropped: Strata too high

在ntp客户端运行ntpdate serverIP,出现no server suitable for synchronization found的错误。

在ntp客户端用ntpdate -d serverIP查看。发现有"Server dropped: strata too high"的错误。并且显示"stratum 16”.而正常情况下stratum这个值得范围是“0~15"。

这是因为NTP server还没有和其自身或者它的server同步上。

以下的定义是让NTP Server和其自身保持同步。 如果在/ntp.conf中定义的server都不可用时, 将使用local时间作为ntp服务提供给ntp喜户端。

server 127.127.1.0

fudge 127.127.1.0 stratum 8


解决步骤: 将上面两行,添加到 /etc/ntp.conf 文件中,重启ntp服务:systemctl restart ntpd.service  ,问题解决                

               

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
               

备注下ntp问题排查时,做的抓包处理:


               

1 . 你在ntp服务器上,执行抓包命令: #tcpdump -i  ens192   udp   port   123    #回车,等待数据输出                 
              注:  ens192    为望京测试机 网卡名称,需ifconfig查看深圳服务器的实际网卡名称,并替换;  123为 ntp服务端口不需修改                
   2.  在安装动态的window电脑上,更新时间请求到ntp服务器:                
       
               
注: 服务器栏里,输入*****交管局ntp服务器地址                
     3. 点击立即更新,执行有结果时(成功或失败),去服务器查看步骤1里的输出:
          3.1  没有输出-----说明没有收到ntp请求。
            
               
            处理方案: 请网管协助界面网络请求不通问题                

               
           3.2 有如下输出(红圈两行),说明收到请求
            
               
              处理方案:如此时动态window时间仍不对,且输出也有截图的两行数据,说明服务器收到请求,且返回数据,只能排查window系统了。                
        或者将抓取包,写到文件里( /opt/ntp_log.cap ),发给我分析也行:                
                         #tcpdump -i  ens192   udp   port   123    -w   /opt/ntp_log.cap                      
                    注:  ens192    为望京测试机 网卡名称,需ifconfig查看深圳服务器的实际网卡名称,并替换;  123为 ntp服务端口不需修改                


https://blog.csdn.net/gdkyxy2013/article/details/88875632

https://serverfault.com/questions/277375/ntpdate-d-server-dropped-strata-too-high

http://www.blogjava.net/spray/archive/2008/07/10/213964.html

https://www.cnblogs.com/ajianbeyourself/p/4190883.html

https://www.jianshu.com/p/675f0619ec71

https://blog.51cto.com/xiahongyuan/939815

https://askubuntu.com/questions/429306/ntpdate-no-server-suitable-for-synchronization-found

https://itectec.com/ubuntu/ubuntu-ntpdate-no-server-suitable-for-synchronization-found/

https://note.t4x.org/error/ntp-no-server-suitable-synchronization-found/

http://www.360doc.com/content/17/0829/15/706976_683046142.shtml



普通分类: