OpenNTPD daemon with OpenSSL implementation & flexible configurability
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
3.6 KiB

4 years ago
4 years ago
4 years ago
  1. # OpenNTPD with OpenSSL support
  2. OpenNTPD daemon with OpenSSL implementation & flexible configurability
  3. ## Added features
  4. - Implemented OpenSSL support. Either LibreSSL or OpenSSL can be used.
  5. - Many previously hardcoded values are now configurable via conf file.
  6. - Implement UDP & TCP port selection for multiple options.
  7. - Implement custom user agent string support for constraints.
  8. - Improved log entries interpretation.
  9. - Updated manual.
  10. ## Files
  11. | File | Description |
  12. |-----------------------------------------------------------------------------------------------|-------------------------------------------------------------------------|
  13. | [1-patch_better-logs.patch](patches/1-patch_better-logs.patch) | Provide human-readable error messages for easier process interpretation |
  14. | [2-patch_ntpctl-sensors-tolowercase.patch](patches/2-patch_ntpctl-sensors-tolowercase.patch) | Set 'Sensors' to lowercase in `ntpctl` settings |
  15. | [3-patch_unhardcode-ports.patch](patches/3-patch_unhardcode-ports.patch) | Unhardcode NTP server, client and constraint UDP & TCP port numbers |
  16. | [4-patch_peercount-init.patch](patches/4-patch_peercount-init.patch) | Fix C compiler warning about uninitialized variable peercount |
  17. | [5-patch_debugmode-fix.patch](patches/5-patch_debugmode-fix.patch) | Fix debug mode not showing output in command line |
  18. | [6-patch_unhardcode-conf.patch](patches/6-patch_unhardcode-conf.patch) | Unhardcode majority of configuration settings, update manual |
  19. | [7-patch_implement-openssl.patch](patches/7-patch_implement-openssl.patch) | Implement OpenSSL support, update manual, update ChangeLog |
  20. | [8-patch_update-conf.patch](patches/8-patch_update-conf.patch) | Update default configuration file |
  21. | [9-patch_add-constraint-useragent.patch](patches/9-patch_add-constraint-useragent.patch) | Add user agent string support for HTTPS constraints, update ChangeLog |
  22. ## Usage
  23. ### Applying patches
  24. This method has been tested with the following commits:
  25. | Repository | Commit hash |
  26. |-------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|
  27. | openntpd-portable | [cc3292981b83f7d691e96dc5e5a5d30af6f98454](https://github.com/openntpd-portable/openntpd-portable/commit/cc3292981b83f7d691e96dc5e5a5d30af6f98454) |
  28. | openntpd-openbsd | [29f2ea917cc83d89d70f86e97013c35565c93ffd](https://github.com/openntpd-portable/openntpd-openbsd/commit/29f2ea917cc83d89d70f86e97013c35565c93ffd) |
  29. Date: `2nd August 2020`
  30. ```
  31. git clone https://github.com/openntpd-portable/openntpd-portable openntpd
  32. cd openntpd
  33. ./update.sh
  34. git clone https://github.com/Fincer/openntpd-openssl openssl
  35. for p in openssl/patches/*patch; do
  36. patch -Np1 -i ${p}
  37. done
  38. ```
  39. And then, use your preferred method to compile OpenNTPD. See `build()` and `package()` sections of provided [openntpd-git PKGBUILD](arch/openntpd-git/PKGBUILD) file for further instructions.
  40. ## License
  41. See [OpenNTPD license file](https://github.com/openntpd-portable/openntpd-portable/blob/master/COPYING) and [LICENSE](LICENSE).