본문 바로가기
Python

Raspberry Pi NTP Server

by YJHTPII 2024. 4. 16.
반응형

1. ntpd 설치

sudo apt update
sudo apt install ntp

 

2. 구성 파일 수정(sudo nano /etc/ntp.conf)

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

driftfile /var/lib/ntp/ntp.drift

# Leap seconds definition provided by tzdata
leapfile /usr/share/zoneinfo/leap-seconds.list

# 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


# 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

위 내용에서 broadcast 주석 해제하고 적용함!

 

아래 내용으로 수정 안 함

# pool.ntp.org를 사용하여 외부 NTP 서버를 참조하도록 설정
server 0.pool.ntp.org
server 1.pool.ntp.org
server 2.pool.ntp.org
server 3.pool.ntp.org

# 로컬 네트워크에 있는 클라이언트들에게 서비스를 제공하기 위해 127.127.1.0를 사용합니다.
# fudge 옵션은 시계의 오차를 보상하기 위해 사용됩니다. 여기서는 10.0이라는 값을 사용합니다.
# 라즈베리 파이의 시계는 보통 좋은 정확도를 가지고 있으므로 10.0 정도의 오차를 설정하면 충분합니다.
server 127.127.1.0
fudge 127.127.1.0 stratum 10

# 클라이언트에게 서비스할 서브넷을 지정합니다. 기본적으로는 로컬 네트워크의 모든 서브넷에 대해 서비스합니다.
# 필요에 따라 해당 서브넷을 지정해야 합니다.
# 예를 들어, 192.168.1.0/24는 192.168.1.x 서브넷을 의미합니다.
# restrict 옵션은 클라이언트의 액세스를 제어하는 데 사용됩니다.
# 기본적으로는 모든 클라이언트가 서비스를 받을 수 있도록 설정합니다.
restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap

 

 

3. ntpd서비스 다시 시작

sudo service ntp restart

 

4. 이제 라즈베리 파이는 로컬 네트워크에서 NTP 서버로 동작하게 됩니다. 다른 장치들은 이 서버를 사용하여 시간을 동기화할 수 있습니다. 설정이 올바르게 되었는지 확인하기 위해 다른 컴퓨터에서 ntpq -p 명령어를 실행하여 NTP 서버의 상태를 확인할 수 있습니다.

 

5. 확인

#라즈베리파이 로컬에서 확인

import ntplib
from time import ctime

def get_local_network_time(ntp_server_ip):
    try:
        # NTP 서버로부터 시간 가져오기
        client = ntplib.NTPClient()
        response = client.request(ntp_server_ip)
        local_time = ctime(response.tx_time)
        return local_time
    except Exception as e:
        print("Error:", e)
        return None

if __name__ == "__main__":
    # 로컬 네트워크 내의 NTP 서버 IP 주소 설정
    local_ntp_server_ip = "127.0.0.1"  # 예시: 로컬 네트워크 내의 NTP 서버의 IP 주소
    
    local_time = get_local_network_time(local_ntp_server_ip)
    if local_time:
        print("Local network time:", local_time)
    else:
        print("Failed to get local network time.")

 

반응형

'Python' 카테고리의 다른 글

[Python]Python GUI PyQt UI 생성 및 연결(Python GUI)  (0) 2024.04.24
ESP32 cam Person Detection  (0) 2024.04.19
Pickle In Python  (0) 2024.04.15
[Python] Stock Prediction  (0) 2024.04.15
hexa string to Floating-point value  (0) 2024.04.02

댓글