Yes, you can use both pool and server configurations in your ntp.conf
. The server will always be included in the running configuration, and the pool members will be added and removed as determined by ntpd
. Note, however, that this is unlikely to be any better than simply using pool
for both entries. The main reason for using a configuration like the one you proposed would be to include an NTP server on your local network.
To see the list of active peers, use ntpq -np
. You can find more information about interpreting the output in the NTP docs (under the description of the peers
command), or in my blog post.
Note: You should NOT be using burst
or minpoll 4
with the pool. This is considered bad form and might get you rate limited or blocked by specific servers. Please use just iburst
- unless you have major problems with bandwidth or buggy hardware, ntpd
will be able to sync your system's clock just fine without burst
or minpoll
.