리눅스 ntp.conf: Difference between revisions
From IT위키
(새 문서: ==위치== /etc/npt.conf VI로 열어서 수정하면 된다. ==예시== <pre class='shell'> restrict defualt nomodify notrap noquery restrict 127.0.0.1 restrict restrict 192.168.0....) |
(→위치) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
[[분류:리눅스 파일]] | |||
==위치== | ==위치== | ||
/etc/ | /etc/ntp.conf | ||
VI로 열어서 수정하면 된다. | VI로 열어서 수정하면 된다. | ||
Line 22: | Line 24: | ||
** restrict [대상] [권한] : 대상을 적고 제한할 권한을 나열한다. | ** restrict [대상] [권한] : 대상을 적고 제한할 권한을 나열한다. | ||
* server 시간을 받아올 NTP서버를 나열한다. | * server 시간을 받아올 NTP서버를 나열한다. | ||
==설정파일 적용== | ==설정파일 적용== |
Latest revision as of 12:43, 24 August 2021
위치[edit | edit source]
/etc/ntp.conf
VI로 열어서 수정하면 된다.
예시[edit | edit source]
restrict defualt nomodify notrap noquery restrict 127.0.0.1 restrict restrict 192.168.0.0 mask 255.255.255.0 nomodify notrap restrict [대상] [권한] server [타임 서버1] server [타임 서버2] ...
설명[edit | edit source]
- restict : 일종의 ALC로 대상에 대해 제한되는 권한을 나열한다.
- restrict defualt nomodify notrap noquery : 기본적으론 모든 권한을 막는다.
- restrict 127.0.0.1 : 대상을 적고 제한 권한을 명시하지 않으면 모든 권한을 다 허용하는 것이다.
- restrict restrict 192.168.0.0 mask 255.255.255.0 nomodify notrap : 저 대역의 호스트는 쿼리만 날릴 수 있다.
- restrict [대상] [권한] : 대상을 적고 제한할 권한을 나열한다.
- server 시간을 받아올 NTP서버를 나열한다.
설정파일 적용[edit | edit source]
# service ntpd restart