* Cảnh báo vài ý trước khi vào nội dung chính mình cần chia sẻ :
- 1. Bài viết này mang tính chất là dành cho cá nhân để lưu trữ kiến thức cũng như kinh nghiệm bản thân đã trải qua. || This article is intended for individuals to store knowledge as well as personal experiences.
- 2. Bài viết chia sẻ phi lợi nhuân. || Post sharing non-profit.
- 3. Bài viết có thể làm vài bạn sẽ biểu môi rằng đơn giản thế này ai chẳng biết, post lên làm gì ==> thì nhìn lại mục “1” nhé. || The article can do some of you will demonstrate that this simple one does not know, what to post ==> then look at the “1” section.
- 4. Bài viết có lấy hình ảnh và một vài nội dung trên internet, nên nếu có gì vi phạm, cảm phiền các bạn báo lại giúp mình. || The article has taken pictures and some content on the internet, so if something breaks, please report it for me.
NTP: Configure NTP Client
*** NOTED ***
- Cấu hình máy trạm sử dụng NTP để đồng bộ thời gian với máy chủ NTP || Configure NTP Client to Synchronize time with NTP Server
- Cấu hình mặc định của máy trạm NTP đã đồng bộ thông tin với [time.windows.com], vậy nếu hệ thống có kết nối Internet, thì thời gian sẽ luôn luôn được đồng nhất. || NTP Client setting is configured with NTP Server [time.windows.com] by Windows default, so if Internet connected enviroment computer, time and date is already synchronizing.
Bước 1: khởi chạy PowerShell với quyền Adminitrator và cấu hình như bên dưới.
Step 1: Run PowerShell with Administrator Privilege and Configure as following:
Windows PowerShell
Copyright (C) 2016 Microsoft Corporation. All rights reserved.
# confirm current synchronization NTP Server
PS C:\Users\Administrator> w32tm /query /source
time.windows.com,0x8
# change target NTP Server (replace to your timezone server)
# number means
# 0x01 : SpecialInterval
# 0x02 : UseAsFallbackOnly
# 0x04 : SymmetricActive
# 0x08 : NTP request in Client mode
PS C:\Users\Administrator> Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\w32time\Parameters" -Name "NtpServer" -Value "ntp.nict.jp,0x8"
# restart Windows Time service
PS C:\Users\Administrator> Restart-Service w32Time
# re-sync manually
PS C:\Users\Administrator> w32tm /resync
Sending resync command to local computer
The command completed successfully.
# verify status
PS C:\Users\Administrator> w32tm /query /status
Leap Indicator: 0(no warning)
Stratum: 4 (secondary reference - syncd by (S)NTP)
Precision: -23 (119.209ns per tick)
Root Delay: 0.0252246s
Root Dispersion: 0.0824040s
ReferenceId: 0x85F3EEF3 (source IP: 133.243.238.243)
Last Successful Sync Time: 9/23/2019 10:15:33 PM
Source: ntp.nict.jp,0x8
Poll Interval: 8 (256s)
Bước 2: nếu một máy trạm đã tham gia vào môi trường AD của doanh nghiệp, và máy đó là một máy trạm GỐC trong hệ thống, thì thời gian mặc định của máy trạm đã theo cấu hình [CMOS time] tại BIOS, nếu bạn muốn điều chỉnh việc này thì vui lòng theo hướng dẫn bên dưới
Step 2: if a Computer is in Active Directory Domain Enviroment and he is Forest Root, synchronization target is often configured to [Local CMOS Clock], then, if you want change setting from [Local CMOS Clock] to other NTP Server, please setting as following.
Windows PowerShell
Copyright (C) 2016 Microsoft Corporation. All rights reserved.
# in AD Domain Environment, [Type] is set to [NT5DS]
PS C:\Users\Administrator> (Get-Item -Path "HKLM:\SYSTEM\CurrentControlSet\Services\w32time\Parameters").GetValue("Type")
NT5DS
# if target is [Local CMOS Clock] but you'd like to change it, change [Type] to [NTP] first
# next, change to NTP server with the same way in [1] section
PS C:\Users\Administrator> Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\w32time\Parameters" -Name "Type" -Value "NTP"
DONE 🙂 – Have a good day and enjoy !!!
Leave a Reply