Guest User

Untitled

a guest
Dec 9th, 2010
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. # NOTES:
  2. # - you should only have to update the server line below
  3. # - if you start getting lines like 'restrict' and 'fudge'
  4. # and you didnt add them, AND you run dhcpcd on your
  5. # network interfaces, be sure to add '-Y -N' to the
  6. # dhcpcd_ethX variables in /etc/conf.d/net
  7.  
  8. # Name of the servers ntpd should sync with
  9. # Please respect the access policy as stated by the responsible person.
  10. #server ntp.example.tld iburst
  11.  
  12. server pool.ntp.org
  13.  
  14. ##
  15. # A list of available servers can be found here:
  16. # http://www.pool.ntp.org/
  17. # http://www.pool.ntp.org/#use
  18. # A good way to get servers for your machine is:
  19. # netselect -s 3 pool.ntp.org
  20. ##
  21.  
  22. # you should not need to modify the following paths
  23. driftfile /var/lib/ntp/ntp.drift
  24.  
  25. #server ntplocal.example.com prefer
  26. #server timeserver.example.org
  27.  
  28. # Warning: Using default NTP settings will leave your NTP
  29. # server accessible to all hosts on the Internet.
  30.  
  31. # If you want to deny all machines (including your own)
  32. # from accessing the NTP server, uncomment:
  33. #restrict default ignore
  34.  
  35.  
  36. # To deny other machines from changing the
  37. # configuration but allow localhost:
  38. restrict default nomodify nopeer
  39. restrict 127.0.0.1
  40.  
  41.  
  42. # To allow machines within your network to synchronize
  43. # their clocks with your server, but ensure they are
  44. # not allowed to configure the server or used as peers
  45. # to synchronize against, uncomment this line.
  46. #
  47. #restrict 192.168.0.0 mask 255.255.255.0 nomodify nopeer notrap
Advertisement
Add Comment
Please, Sign In to add comment