NTP
Size: 6058
Comment: Jonathan Ferguson
|
Size: 6058
Comment: Jonathan Ferguson
|
Deletions are marked like this. | Additions are marked like this. |
Line 25: | Line 25: |
broadcast ff05::101 #Used with multicastclient | broadcast ff0e::101 #Used with multicastclient |
Line 27: | Line 27: |
manycastserver ff05::101 #Used with manycastclient | manycastserver ff0e::101 #Used with manycastclient |
Line 35: | Line 35: |
manycastclient ff05::101 #Used with manycastserver | manycastclient ff0e::101 #Used with manycastserver |
Line 37: | Line 37: |
multicastclient ff05::101 ttl 255 #Used with broadcast | multicastclient ff0e::101 ttl 255 #Used with broadcast |
Line 41: | Line 41: |
restrict ff05::101 | restrict ff0e::101 |
Line 46: | Line 46: |
<<BR>>`&& echo -e "broadcast ff05::101\t\t\t#Used with multicastclient" | sudo tee -a /etc/ntp.conf \` | <<BR>>`&& echo -e "broadcast ff0e::101\t\t\t#Used with multicastclient" | sudo tee -a /etc/ntp.conf \` |
Line 48: | Line 48: |
<<BR>>`&& echo -e "manycastserver ff05::101\t\t#Used with manycastclient" | sudo tee -a /etc/ntp.conf \` | <<BR>>`&& echo -e "manycastserver ff0e::101\t\t#Used with manycastclient" | sudo tee -a /etc/ntp.conf \` |
Line 55: | Line 55: |
<<BR>>`&& echo -e "manycastclient ff05::101\t\t#Used with manycastserver" | sudo tee -a /etc/ntp.conf \` | <<BR>>`&& echo -e "manycastclient ff0e::101\t\t#Used with manycastserver" | sudo tee -a /etc/ntp.conf \` |
Line 57: | Line 57: |
<<BR>>`&& echo -e "multicastclient ff05::101 ttl 255\t#Used with broadcast" | sudo tee -a /etc/ntp.conf \` | <<BR>>`&& echo -e "multicastclient ff0e::101 ttl 255\t#Used with broadcast" | sudo tee -a /etc/ntp.conf \` |
Line 60: | Line 60: |
<<BR>>`&& echo -e "restrict ff05::101" | sudo tee -a /etc/ntp.conf` | <<BR>>`&& echo -e "restrict ff0e::101" | sudo tee -a /etc/ntp.conf` |
Per the following paragraph from http://doc.ntp.org/4.1.0/assoc.htm
It is possible and frequently useful to configure a host as both a manycast client and manycast server. A number of hosts configured this way and sharing a common group address will automatically organize themselves in an optimum configuration based on the smallest synchronization distance computed by the NTP mitigation algorithms. For example, consider an NTP subnet of two primary servers and maybe a dozen dependent clients. All servers and clients are configured as both multicast client and multicast server with multicast group address 239.1.1.1. In addition, the primary servers are configured for a primary reference source such as a GPS receiver. Once operations have stabilized in this scenario, the primary servers will affiliate with the primary reference source and each other, since they both operate at the same stratum (1), but not with any client, since clients operate at a higher stratum. The clients will find both primary servers and in addition, one of their own at the minimum synchronization distance. If one of the primary servers loses its GPS receiver, it will continue to operate as a client and other clients will time out the corresponding association and re-associate accordingly.
Per the following paragraph from http://doc.ntp.org/4.2.0/manyopt.html
It is possible and frequently useful to configure a host as both manycast client and manycast server. A number of hosts configured this way and sharing a common group address will automatically organize themselves in an optimum configuration based on stratum and synchronization distance. For example, consider an NTP subnet of two primary servers and a hundred or more dependent clients. With two exceptions, all servers and clients have identical configuration files including both multicastclient and multicastserver commands using, for instance, multicast group address 239.1.1.1. The only exception is that each primary server configuration file must include commands for the primary reference source such as a GPS receiver.
Per the following paragraph from http://doc.ntp.org/4.2.6/manyopt.html
It is possible and frequently useful to configure a host as both broadcast client and broadcast server. A number of hosts configured this way and sharing a common broadcast address will automatically organize themselves in an optimum configuration based on stratum and synchronization distance.
Per the following paragraph from http://doc.ntp.org/4.2.8/discover.html
It is possible and frequently useful to configure a host as both manycast client and manycast server. A number of hosts configured this way and sharing a common multicast group address will automatically organize themselves in an optimum configuration based on stratum and synchronization distance.
Install the Network Time Protocol Daemon:
sudo apt-get install ntp
At the bottom of the file copy and paste:
sudo nano /etc/ntp.conf
# As a server broadcast 224.0.1.1 #Used with multicastclient broadcast ff0e::101 #Used with multicastclient manycastserver 224.0.1.1 #Used with manycastclient manycastserver ff0e::101 #Used with manycastclient # As a client server 2.oceania.pool.ntp.org iburst prefer server 2.au.pool.ntp.org iburst prefer server 2.nz.pool.ntp.org iburst prefer #broadcastclient #Optionally receive from legacy devices manycastclient 224.0.1.1 #Used with manycastserver manycastclient ff0e::101 #Used with manycastserver multicastclient 224.0.1.1 ttl 255 #Used with broadcast multicastclient ff0e::101 ttl 255 #Used with broadcast # Restrict except to those which we allow restrict 224.0.1.1 restrict ff0e::101
Alternatively an automated method of appending the mentioned configuration to the file /etc/ntp.conf is:
echo -e "\n# As a server" | sudo tee -a /etc/ntp.conf \
&& echo -e "broadcast 224.0.1.1\t\t\t#Used with multicastclient" | sudo tee -a /etc/ntp.conf \
&& echo -e "broadcast ff0e::101\t\t\t#Used with multicastclient" | sudo tee -a /etc/ntp.conf \
&& echo -e "manycastserver 224.0.1.1\t\t#Used with manycastclient" | sudo tee -a /etc/ntp.conf \
&& echo -e "manycastserver ff0e::101\t\t#Used with manycastclient" | sudo tee -a /etc/ntp.conf \
&& echo -e "\n# As a client" | sudo tee -a /etc/ntp.conf \
&& echo -e "server 2.oceania.pool.ntp.org iburst prefer" | sudo tee -a /etc/ntp.conf \
&& echo -e "server 2.au.pool.ntp.org iburst prefer" | sudo tee -a /etc/ntp.conf \
&& echo -e "server 2.nz.pool.ntp.org iburst prefer" | sudo tee -a /etc/ntp.conf \
&& echo -e "#broadcastclient\t\t\t#Optionally receive from legacy devices" | sudo tee -a /etc/ntp.conf \
&& echo -e "manycastclient 224.0.1.1\t\t#Used with manycastserver" | sudo tee -a /etc/ntp.conf \
&& echo -e "manycastclient ff0e::101\t\t#Used with manycastserver" | sudo tee -a /etc/ntp.conf \
&& echo -e "multicastclient 224.0.1.1 ttl 255\t#Used with broadcast" | sudo tee -a /etc/ntp.conf \
&& echo -e "multicastclient ff0e::101 ttl 255\t#Used with broadcast" | sudo tee -a /etc/ntp.conf \
&& echo -e "\n# Restrict except to those which we allow" | sudo tee -a /etc/ntp.conf \
&& echo -e "restrict 224.0.1.1" | sudo tee -a /etc/ntp.conf \
&& echo -e "restrict ff0e::101" | sudo tee -a /etc/ntp.conf
Restart the daemon:
sudo /etc/init.d/ntp try-restart
Prove that the configuration is correct:
ntp-wait -v
ntptime
ntpq -p
ntpdc -l -p -s 127.0.0.1
ntpdc -l -p -s ::1
Jonathan Ferguson, Ubuntu Wiki, Network Time Protocol, https://wiki.edubuntu.org/JonathanFerguson/NTP
JonathanFerguson/NTP (last edited 2025-03-28 04:20:43 by jonathan-ferguson)