GPS时间源服务器的外置天线怎么安装?

GPS时间源服务器的外置天线怎么安装?,第1张

GPS时间服务器天线安装时,先将天线头安装在天线支架上,再将天线支架用膨胀螺栓固定在建筑物顶端,根据安装条件需要时可以使用弯角支架。天线头要安装在室外,安装位置应视野开阔,尽可能安装在屋顶,原则上是顺着天线头往上看能够看到360°的天空。然后从上到下布置天线的电缆线。天线电缆铺设转弯半径不易过小,穿孔时注意包好接头。天线电缆长度是根据天线增益严格设计,不得剪断、延长、缩短或加装接头,否则将严重影响接收效果甚至收不到信号。GPS时间源服务器的天线应尽量避开山坡、树林、高层建筑物、铁塔、高压输电线等对天线波束的阻挡。天线主波束方向上应有足够的视界,天线正前方应有尽可能宽的视角。一般要求以天线基点为参考,对障碍物最高点所成的夹角小于10度 GPS时间源服务器的天线的架设位置应避开风口,以减小天线的风载。

GPS时钟系统天线安装时,先将天线头安装在天线支架上,再将天线支架用膨胀螺栓固定在建筑物顶端,根据安装条件需要时可以使用弯角支架(备选件)。天线头要安装在室外,安装位置应视野开阔,尽可能安装在屋顶,原则上是顺着天线头往上看能够看到360°的天空。然后从上到下布置天线的电缆线。天线电缆铺设转弯半径不易过小,穿孔时注意包好接头。天线电缆长度是根据天线增益严格设计,不得剪断、延长、缩短或加装接头,否则将严重影响接收效果甚至收不到信号。线主波束方向上应有足够的视界,天线正前方应有尽可能宽的视角。一般要求以天线基点为参考,对障碍物最高点所成的夹角小于10度。GPS时钟系统天线的架设位置应避开风口,以减小天线的风载。在多雷雨地区,天线的架设位置应避开雷击多发地点,天线头应放在电厂/变电站避雷针避雷范围内。天线安装在屋顶时,只要视野足够,高出屋面距离越小越好。

一、搭建时间服务器

1、在一台linux服务器安装ntp server

tar zxvf ntp-4.2.6.tar.gz

cd ntp-4.2.6

./configure --prefix=/usr/local/ntp --enable-all-clocks --enable-parse-clocks

make &&make install

2、修改ntp.conf配置文件

vi /etc/ntp.conf

# Permit time synchronization with our time source, but do not

# permit the source to query or modify the service on this system.

#restrict default kod nomodify notrap nopeer noquery

restrict default nomodify

(允许任何IP的客户机都可以进行时间同步,如果是只允许某个网段的客户机进行时间同步可以这样写

restrict 10.58.26.0 mask 255.255.255.0 nomodify)

restrict -6 default kod nomodify notrap nopeer noquery

# Permit all access over the loopback interface. This could

# be tightened as well, but to do so would effect some of

# the administrative functions.

restrict 127.0.0.1

restrict -6 ::1

# Hosts on local network are less restricted.

#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap

# Use public servers from the pool.ntp.org project.

# Please consider joining the pool

#server 0.rhel.pool.ntp.org(默认时间服务器)

#server 1.rhel.pool.ntp.org(默认时间服务器)

#server 2.rhel.pool.ntp.org(默认时间服务器)

server 10.128.14.25 (手工设置的时间服务器)

(如果是可以直连外网,可以使用LINUX默认提供的三组标准时间服务器,否则可以自己指定一个同步时间源)

#broadcast 192.168.1.255 key 42 # broadcast server

#broadcastclient# broadcast client

#broadcast 224.0.1.1 key 42 # multicast server

#multicastclient 224.0.1.1 # multicast client

#manycastserver 239.255.254.254 # manycast server

#manycastclient 239.255.254.254 key 42 # manycast client

# Undisciplined Local Clock. This is a fake driver intended for backup

# and when no outside source of synchronized time is available.

server 127.127.1.0 # local clock

fudge 127.127.1.0stratum 10

3、以守护进程启动ntpd

#/etc/rc.d/init.d/ntpd -c /etc/ntp.conf -p /tmp/ntpd.pid

#/etc/rc.d/init.d/ntpd start

#ps -ef|grep ntpd

4、在ntp server上启动ntp服务后,ntp server自身或者与其server的同步的需要一个时间段,这个过程可能是5分钟,在这个时间之内在客户端运行ntpdate命令进行同步时会产生no server suitable for synchronization found的错误。

那么如何知道何时ntp server完成了和自身同步的过程呢?

在ntp server上使用命令:

# watch ntpq -p

出现如下画面:

注意LOCAL的这个就是与自身同步的ntp server。

注意reach这个值,在启动ntp server服务后,这个值就从0开始不断增加,当增加到17的时候,从0到17是5次的变更,每一次是poll的值的秒数,是64秒*5=320秒的时间。

二、配置时间同步客户机

vi /var/spool/cron/root(或crontab -e)

增加一行,在每天的1点10分、9点10分、17点10分与时间同步服务器进行同步并写入BIOS

10 1 ,9,17* * * root /usr/sbin/ntpdate 10.128.14.25/sbin/hwclock -w

如果同步不正常,可以加输出日志或看系统日志

输出日志的方法:

10 1 ,9,17* * * root /usr/sbin/ntpdate 10.128.14.25>>/tmp/1.txt/sbin/hwclock -w

在1.txt中可查看时间同步时的输出结果。

或者看/var/mail/root系统日志

Subject: Cron <root@tyzssq8>/usr/sbin/ntpdate 10.128.14.25/sbin/hwclock -w

X-Cron-Env: <SHELL=/bin/sh>

X-Cron-Env: <HOME=/root>

X-Cron-Env: <PATH=/usr/bin:/bin>

X-Cron-Env: <LOGNAME=root>

X-Cron-Env: <USER=root>

Message-Id: <20121127103001.076FF2090E@tyzssq8.site>

Date: Tue, 27 Nov 2012 18:30:01 +0800 (CST)

27 Nov 18:29:59 ntpdate[6917]: step time server 10.128.14.25 offset -1.361968 sec

可以看到同步成功了,如果未成功会报出错误。

三、无法同步的问题

检查ntp server主机的防火墙。可能是ntp server的防火墙屏蔽了upd 123端口。

可以用命令

#service iptables stop


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/360457.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-05-10
下一篇2023-05-10

发表评论

登录后才能评论

评论列表(0条)

    保存