<pre id="ffnvp"><p id="ffnvp"></p></pre>
      1. 后入内射国产一区二区,久久综合久久综合九色,亚洲码欧美码一区二区三区,巨人精品福利官方导航,国产一在线精品一区在线观看,国产精品禁18久久久夂久,少妇被粗大猛进进出出,AV一区二区三区
        您好,歡迎進入北京泰福特電子科技有限公司官網

        咨詢服務熱線

        400-015-1230

        NTP服務配置ubuntu系統

        發布時間:2022-04-12 09:36:15

        NTP即是服務器,又是客戶端,只需要通過配置即可。

        準備兩臺機器分別作為服務端(IP地址設為192.168.10.10)和客戶端(IP地址設為192.168.10.12)。

        服務器:NTPD服務,負責與外部公共NTPD服務同步標準時間,作為內外網絡的NTPD服務。

        客戶端:NTPclient,與服務器同步時間。

        ubuntu系統

        1.安裝ntp,因為ntp服務既是服務器,又是客戶端,因此兩端安裝方式一樣

        sudo apt-get install ntp

        2.配置NTP-Server

        # vim /etc/ntp.conf

        # /etc/ntp.conf, configuration for ntpd; see ntp.conf(5) for help

        driftfile /var/lib/ntp/ntp.drift

        # Enable this if you want statistics to be logged.

        #statsdir /var/log/ntpstats/

        statistics loopstats peerstats clockstats

        filegen loopstats file loopstats type day enable

        filegen peerstats file peerstats type day enable

        filegen clockstats file clockstats type day enable

        # You do need to talk to an NTP server or two (or three).

        #server ntp.your-provider.example

        #NTP服務

        server 210.72.145.44 perfer # 中國國家受時中心

        # 外部時間server不可用時,以本地時間作為時間服務

        server 127.127.1.0 # local clock

        fudge 127.127.1.0 stratum 10

        # 同意上層時間server主動改動本機時間

        restrict 210.72.145.44 nomodify notrap noquery

        # 同意內網其它機器同步時間

        restrict 192.168.10.0 mask 255.255.255.0 nomodify notrap

        # pool.ntp.org maps to about 1000 low-stratum NTP servers. Your server will

        # pick a different set every time it starts up. Please consider joining the

        # pool: <http://www.pool.ntp.org/join.html>

        pool 0.debian.pool.ntp.org iburst

        pool 1.debian.pool.ntp.org iburst

        pool 2.debian.pool.ntp.org iburst

        pool 3.debian.pool.ntp.org iburst

        # Access control configuration; see /usr/share/doc/ntp-doc/html/accopt.html for

        # details. The web page <http://support.ntp.org/bin/view/Support/AccessRestrictions>

        # might also be helpful.

        #

        # Note that "restrict" applies to both servers and clients, so a configuration

        # that might be intended to block requests from certain clients could also end

        # up blocking replies from your own upstream servers.

        # By default, exchange time with everybody, but don't allow configuration.

        restrict -4 default kod notrap nomodify nopeer noquery limited

        restrict -6 default kod notrap nomodify nopeer noquery limited

        # Local users may interrogate the ntp server more closely.

        restrict 127.0.0.1

        restrict ::1

        # Needed for adding pool entries

        restrict source notrap nomodify noquery

        # Clients from this (example!) subnet have unlimited access, but only if

        # cryptographically authenticated.

        #restrict 192.168.123.0 mask 255.255.255.0 notrust

        # If you want to provide time to your local subnet, change the next line.

        # (Again, the address is an example only.)

        #broadcast 192.168.123.255

        # If you want to listen to time broadcasts on your local subnet, de-comment the

        # next lines. Please do this only if you trust everybody on the network!

        #disable auth

        #broadcastclient

        配置文件改動完畢,保存退出。重啟服務。

        # service ntpd restart

        查看服務狀態

        #service ntpd status

        查看服務連接和監聽

        # netstat -tlunp | grep ntp

        ntpq -p 查看網絡中的NTPserver

        #ntpd -p

        3.配置NTP-Clients

        # vim /etc/ntp.conf

        # /etc/ntp.conf, configuration for ntpd; see ntp.conf(5) for help

        driftfile /var/lib/ntp/ntp.drift

        # Enable this if you want statistics to be logged.

        #statsdir /var/log/ntpstats/

        statistics loopstats peerstats clockstats

        filegen loopstats file loopstats type day enable

        filegen peerstats file peerstats type day enable

        filegen clockstats file clockstats type day enable

        # You do need to talk to an NTP server or two (or three).

        #server ntp.your-provider.example

        server 192.168.10.10

        # pool.ntp.org maps to about 1000 low-stratum NTP servers. Your server will

        # pick a different set every time it starts up. Please consider joining the

        # pool: <http://www.pool.ntp.org/join.html>

        pool 0.debian.pool.ntp.org iburst

        pool 1.debian.pool.ntp.org iburst

        pool 2.debian.pool.ntp.org iburst

        pool 3.debian.pool.ntp.org iburst

        # Access control configuration; see /usr/share/doc/ntp-doc/html/accopt.html for

        # details. The web page <http://support.ntp.org/bin/view/Support/AccessRestrictions>

        # might also be helpful.

        #

        # Note that "restrict" applies to both servers and clients, so a configuration

        # that might be intended to block requests from certain clients could also end

        # up blocking replies from your own upstream servers.

        # By default, exchange time with everybody, but don't allow configuration.

        restrict -4 default kod notrap nomodify nopeer noquery limited

        restrict -6 default kod notrap nomodify nopeer noquery limited

        # Local users may interrogate the ntp server more closely.

        restrict 127.0.0.1

        restrict ::1

        # Needed for adding pool entries

        restrict source notrap nomodify noquery

        # Clients from this (example!) subnet have unlimited access, but only if

        # cryptographically authenticated.

        #restrict 192.168.123.0 mask 255.255.255.0 notrust

        # If you want to provide time to your local subnet, change the next line.

        # (Again, the address is an example only.)

        #broadcast 192.168.123.255

        # If you want to listen to time broadcasts on your local subnet, de-comment the

        # next lines. Please do this only if you trust everybody on the network!

        #disable auth

        #broadcastclient

         配置文件改動完畢,保存退出。重啟服務。

        # service ntpd restart

         查看服務狀態

        #service ntpd status

         配置完成,可以手動修改客戶端時間,然后靜置10幾分鐘,客戶端就會跟服務器同步


        • 聯系方式
        • 傳 真:86-10-82782026
        • 電 話:400-015-1230
        • 地 址:北京市海淀區北清路68號院用友軟件園北區17號樓三層
        在線咨詢

        咨詢電話:

        400-015-1230

        • 微信掃碼 關注我們

        Copyright ? 2002-2035 北京泰福特電子科技有限公司 版權所有 備案號:京ICP備12028220號
        京公網安備 11010802025976號

        掃一掃咨詢微信客服

        18519396506
        主站蜘蛛池模板: 亚洲久热中文字幕在线| 人妻?日韩?欧美?综合?制服| 2018国产精华国产精品| 亚洲专区熟女| 毛片大全真人在线| 中文字幕在线精品视频入口一区| 最新精品国偷自产在线| 女人18片毛片60分钟| A片丝袜| 久久精品一区二区三区蜜桃 | 中文字幕在线v| 亚洲无码人妻一区二区三区| 蜜臀av久久国产午夜福利软件| 99精品电影一区二区免费看| 99久无码中文字幕一本久道| 在线中出| 99蜜桃在线观看免费视频网站 | 久久99久国产精品66| 国产精品成人99久久久久| 囯产精品久久久久久久久久妞妞 | 清流县| 亚洲av日韩aⅴ永久无码| 制服丝袜另类专区制服| 粉嫩大学生无套内射无码卡视频| 欧美亚洲国产一区二区三区| 国产情侣草莓视频在线| 人妻少妇乱子伦精品| 国产亚欧女人天堂AV在线| 大色欧美| 免费日本黄色| 国产精品免费一级在线观看| AV最新高清无码专区| 中国字幕无码| 男女啪啪永久免费观看网站| 中文字幕av无码免费一区| 伊人偷拍| 亚洲综合国产伊人五月婷| 强伦人妻精品三级| 另类 专区 欧美 制服| 九九热精彩视频在线免费| 中文字幕熟女|
        Powered by RRZCMS