Skip to content
forked from mlichvar/rsntp

High-performance NTP server written in Rust

Notifications You must be signed in to change notification settings

mateusz-kula/rsntp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rsntp

rsntp is an experimental high-performance NTP server written in Rust. It does not implement a full NTP client and relies on another NTP client and server to be running on the system instead. It periodically updates its state to mirror the real NTP client/server and uses multiple threads to serve the current system time.

By default, rsntp uses one thread for IPv4 and another for IPv6. In order to get the best performance, it’s necessary to increase the number of threads using the --ipv4-threads and --ipv6-threads options to correspond to the number of CPU cores available on the system.

The real NTP client/server needs to be configured to listen on 127.0.0.1 on port 11123 (or another port if specified with the --server-addr option). For instance, the following configuration should work with chronyd:

allow 127.0.0.1
port 11123
bindaddress 127.0.0.1

The following table shows the maximum number of NTP requests handled per second measured on a Linux (4.16) machine with an Intel E5-1220 CPU (4 cores) and an Intel I350 network card (1 Gb/s).

1 thread

430 kpps

2 threads

750 kpps

3 threads

1030 kpps

4 threads

1100 kpps (maximum for 1 Gb/s)

About

High-performance NTP server written in Rust

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 99.5%
  • Makefile 0.5%