文章目录:
- 1、哪个ntp server能获得ipv6
- 2、如何在 CentOS 中设置 NTP 服务器
- 3、怎么配置ipv6 dns服务器
- 4、如何只用RAC中其中一个节点做NTP服务器
- 5、国内常用的NTP服务器地址有哪些
哪个ntp server能获得ipv6
NTP server的简单配置 1 Red Hat 5上ntp server的配置。 1) ipv4 假设客户机的ipv4地址是192.168.0.2, ntp server所在的主机的ipv4地址是192.168.0.1。 第一步,配置server 所在主机的ipv4地址: ifconfig eth0 192.168.0.1 ifconfig命令会根据输入的地值自动计算出掩码和广播地址。 第二步,测试是否能连上客户端主机: ping 192.168.0.2 如果ping不通,需要检查客户端主机的网络设置,和网络连接情况。仅当能ping通了,才进行后面的操作。 第三步, 配置ntp server,在/etc/ntp.conf中加上一行: restrict 192.168.0.2 这条命令的意思是制定ip地址为192.168.0.2的主机可以不受限制的与ntp server通信。 配置文件中其他的命令都不用改。 第四步,启动ntp server 服务: service ntpd restart 之后,可以用命令lsof查看一下: lsof –
i:123 接下来的任务就是配置客户端了。 2)ipv6 假设客户端主机的ipv6地址是2003:1::2,服务器端主机的ipv6地址是2003:1::1。 第一步,配置服务器端主机ipv6地址: ifconfig eth0 inet6 add 2003:1::1/64 第二步,测试连接: ping6 2003:1::2 如果不成功,还是检查客户端主机的网络设置,和网络连接情况。仅当能ping通了,才进行后面的操作。 第三步,配置ntp server,在/etc/ntp.conf中添加这样一行: restrict -6 2003:1::2 意思与上面ipv4的情况一样。 第四步,重新启动ntp service:
service ntpd restart 再用lsof查看:
接下来就是配置客户端的问题了,不再赘述。 3)常见问题及解决办法。 一般情况下按上面的步骤配置完了之后server和client就可以正常同步时间了,但是因为配置疏忽或者系统中一些服务的相互影响,可能导致client不能获取server的时间。这时可以使用wireshark抓包查看一下包的具体交换过程。下面是我遇到的一些错误情况。 (1) client正常发包,server主机返回icmp port unreachable(type 3,code3)。 这是因为在主机上没有启动ntp 服务。可以用命令:service ntpd start 启动服务。 (2) client 正常发包,但是收不到server返回的包。 这是ntp server的config文件的配置问题,参照server配置中的第三步。 (3) client 正常发包,server主机返回icmp destination host administratively prohibited (type3,code 10)。 出现这种情况,建议关闭防火墙。 2 windows7上SNTP server的配置。 1)配置server所在主机的ip地址 Windows上配置ip地址比较简单。 首先进入:控制面板-所有控制面板项-网络和共享中心。 然后选择左侧的更改适配器设置,之后在连接客户端主机的网卡上点右键,选择属性,ipv4和ipv6地址都可以配置。 2)测试连通性。 点击开始,输入cmd,然后在命令行界面输入ping client’s ipv4 or ipv6 address。 3)配置并开启sntp server。 Sntp server用的端口号是123,与windows自带的windows time服务相冲突,所以需要先停止这项服务。可以右键点击计算机,选择管理,在服务和应用程序中选择服务,然后选择windows time,停止。 因为windows没有自带的SNTP 或 NTP server,所以可以借助软件来充当sntp server,如tftp32。
如何在 CentOS 中设置 NTP 服务器
centos 5.6安装NTP服务器 为有些服务和实验需要多台机器的时间同步,所以就有了搭建NTP的前提条件了,具体步骤如下: 1,安装ntp服务 yum install ntp.i* -y 2,修改/etc/ntp.conf restrict default kod nomodify notrap nopeer noquery # restrict -6 default kod nomodify notrap nopeer noquery #针对ipv6设置 #这是ntp的默认设置 # 允许本地所有操作 restrict 127.0.0.1 restrict -6 ::1 # 允许的局域网络段 restrict 10.0.0.0 mask 255.0.0.0 nomodify motrap restrict 192.168.0.0 mask 255.255.0.0 nomodify motrap # 使用上层的internet ntp服务器 restrict 207.46.232.182 mask 255.255.255.255 nomodify notrap noquery server 207.46.232.182 # 如果无法与上层ntp server通信以本地时间为标准时间 server 127.127.1.0 # local clock fudge 127.127.1.0 stratum 10 # 计算本ntp server 与上层ntpserver的频率误差 driftfile /var/lib/ntp/drift # Key file containing the keys and key identifiers used when operating # with symmetric key cryptography. keys /etc/ntp/keys #日志文件 logfile /var/log/ntp.log #说明: restrict IP 地址 子网掩码 网段 子网掩码 [ignorenoquerynotrapnomodiynotrustnokod] ignore :关闭所有ntp服务 noquery:不提供ntp服务 notrap:不提供trap远程事件登录的功能 nomodiy:表示客户端不能更改ntp服务器的时间参数,但可以通过ntp服务器进行时间矫正 notrust:拒绝没有通过认证的客户端 nokod:kod技术可以组织一种dos攻击 2,在修改/etc/ntp/step-tickers文件 207.46.232.182 127.127.1.0 #当ntp服务器启动时自动与这个文件中的记录ip进行时间校对 3,修改/etc/sysconfig/ntpd SYNC_HWCLOCK=YES #允许BIOS与系统时间同步 4,客户端设置略。
怎么配置ipv6 dns服务器
1、打开网络连接,点击打开网络和网络共享,如图操作
2、进入到网络共享中心,如图
3、点击更改适配器设置,进入到网络连接,右键联网的网络,如图操作
4、进入到属性页面,选择IPV6,如图
5、双击IPV6进入到如图页面,这里有个高级按钮。
6、点击高级,进入到高级设置页面,如图
7、点击DNS,切换到DNS窗口,在这里可以设置DNS服务器,如图操作
如何只用RAC中其中一个节点做NTP服务器
在做RAC的时候需要两个节点的时间需要同步,若有时间服务器的话,可以在/etc/ntp.conf中指定时间服务器,若没有时间服务器的话,可以使用其中一个节点做时间服务器,配置过程如下:
1.主节点文件/etc/ntp.conf中添加如下内容
server 127.127.1.0
fudge 127.127.1.0 stratum 11
broadcastdelay 0.008
启动ntp服务
[root@node1 /]# service ntpd start
设置ntp自启动:
#system-config-services 在选择框中选择ntpd后保存.
或是执行如下命令:
chkconfig --level 35 ntpd on
2.次节点文件/etc/ntp.conf添加如下内容
注释掉
#server 127.127.1.0 # local clock
#fudge 127.127.1.0 stratum 10
添加如下内容
server 192.168.80.129 prefer #注意192.168.80.129为主节点的IP地址
broadcastdelay 0.008
3.从主节点更新时间
注意次节点不需要启动ntp服务
[root@node2 etc]# ntpdate 192.168.80.129
31 Jul 12:54:44 ntpdate[21308]: the NTP socket is in use, exiting
若提示如上的错误可以通过如下办法解决:
[root@node2 etc]# lsof -i:123
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
ntpd 21306 ntp 16u IPv4 60767 UDP *:ntp
ntpd 21306 ntp 17u IPv6 60768 UDP *:ntp
ntpd 21306 ntp 18u IPv6 60769 UDP localhost6.localdomain6:ntp
ntpd 21306 ntp 19u IPv6 60770 UDP [fe80::20c:29ff:fe36:e27e]:ntp
ntpd 21306 ntp 20u IPv6 60771 UDP [fe80::20c:29ff:fe36:e288]:ntp
ntpd 21306 ntp 21u IPv4 60772 UDP localhost:ntp
ntpd 21306 ntp 22u IPv4 60773 UDP node2:ntp
ntpd 21306 ntp 23u IPv4 60774 UDP node2-priv:ntp
[root@node2 etc]# kill -9 21306
[root@node2 etc]# lsof -i:123
[root@node2 etc]# ntpdate 192.168.80.129
31 Jul 13:00:46 ntpdate[21318]: step time server 192.168.80.129 offset 213.362339 sec
[root@node2 etc]#
可以将时间获取(ntpdate 192.168.202.134)放入到contrab中每隔1分钟执行一次
如:
#crontab -e
添加如下内容:
*/1 * * * * /usr/sbin/ntpdate 192.168.202.134 $HOME/utpdate.log 21
注意若是语法不对的话保存的时候会提示如下错误:
[root@node2 cron]# crontab -e
crontab: installing new crontab
"/tmp/crontab.XXXXs5X6nB":2: bad command
errors in crontab file, can't install.
Do you want to retry the same edit? n
这个时候需要排查语法问题.
说明:
1.做ntp服务器的节点需要关闭iptables
service iptables stop
禁止开机启动
chkconfig iptables off
2.关系防火墙,将SELINUX设置成disabled
[root@node1 etc]# more /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of these two values:
# targeted - Targeted processes are protected,
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
-- The End --
国内常用的NTP服务器地址有哪些
210.72.145.44 (国家授时中心服务器IP地址)
ntp.sjtu.edu.cn 202.120.2.101 (上海交通大学网络中心NTP服务器地址)
s1a.time.edu.cn 北京邮电大学
s1b.time.edu.cn 清华大学
s1c.time.edu.cn 北京大学
s1d.time.edu.cn 东南大学
s1e.time.edu.cn 清华大学
s2a.time.edu.cn 清华大学
s2b.time.edu.cn 清华大学
s2c.time.edu.cn 北京邮电大学
s2d.time.edu.cn 西南地区网络中心
s2e.time.edu.cn 西北地区网络中心
s2f.time.edu.cn 东北地区网络中心
s2g.time.edu.cn 华东南地区网络中心
s2h.time.edu.cn 四川大学网络管理中心
s2j.time.edu.cn 大连理工大学网络中心
s2k.time.edu.cn CERNET桂林主节点
s2m.time.edu.cn 北京大学
的NTP服务器地址有哪些哪个ntp server能获得ipv6 NTP server的简单配置 1 Red Hat 5上ntp server的配置。 1) ipv4
(type3,code 10)。 出现这种情况,建议关闭防火墙。 2 windows7上SNTP server的配置。 1)配置server所在主机的ip地址 Windows上配置ip地址比较简单。 首先进入:控制面板-所有控制面板项-网络和共享中心。 然后选择左侧的更改适配