리눅스 ntp.conf: Difference between revisions
From IT Wiki
(새 문서: ==위치== /etc/npt.conf VI로 열어서 수정하면 된다. ==예시== <pre class='shell'> restrict defualt nomodify notrap noquery restrict 127.0.0.1 restrict restrict 192.168.0....) |
No edit summary |
||
Line 1: | Line 1: | ||
==위치== | ==위치== | ||
/etc/npt.conf | /etc/npt.conf | ||
VI로 열어서 수정하면 된다. | VI로 열어서 수정하면 된다. | ||
==예시== | ==예시== | ||
Line 22: | Line 24: | ||
** restrict [대상] [권한] : 대상을 적고 제한할 권한을 나열한다. | ** restrict [대상] [권한] : 대상을 적고 제한할 권한을 나열한다. | ||
* server 시간을 받아올 NTP서버를 나열한다. | * server 시간을 받아올 NTP서버를 나열한다. | ||
==설정파일 적용== | ==설정파일 적용== |
Revision as of 15:35, 27 April 2018
위치
/etc/npt.conf
VI로 열어서 수정하면 된다.
예시
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] ...
설명
- 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서버를 나열한다.
설정파일 적용
# service ntpd restart