mirror of https://github.com/arendst/Tasmota.git
Change NTP default servers to dual-stack (IPv4/IPv6) (#17525)
This commit is contained in:
parent
1ae8b381ba
commit
790b6feae6
|
@ -15,6 +15,7 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
### Changed
|
||||
- Tasmota OTA scripts now support both unzipped and gzipped file uploads (#17378)
|
||||
- Change NTP default servers to dual-stack (IPv4/IPv6)
|
||||
|
||||
### Fixed
|
||||
- Shutter default motorstop set to 0 (#17403)
|
||||
|
|
|
@ -248,9 +248,11 @@
|
|||
#define MDNS_ENABLED false // [SetOption55] Use mDNS (false = Disable, true = Enable)
|
||||
|
||||
// -- Time - Up to three NTP servers in your region
|
||||
#define NTP_SERVER1 "pool.ntp.org" // [NtpServer1] Select first NTP server by name or IP address (129.250.35.250)
|
||||
#define NTP_SERVER2 "nl.pool.ntp.org" // [NtpServer2] Select second NTP server by name or IP address (5.39.184.5)
|
||||
#define NTP_SERVER3 "0.nl.pool.ntp.org" // [NtpServer3] Select third NTP server by name or IP address (93.94.224.67)
|
||||
#define NTP_SERVER1 "2.pool.ntp.org" // [NtpServer1] Select first NTP server by name or IP address (135.125.104.101, 2001:418:3ff::53)
|
||||
#define NTP_SERVER2 "2.europe.pool.ntp.org" // [NtpServer2] Select second NTP server by name or IP address (192.36.143.134, 2a00:2381:19c6::100)
|
||||
#define NTP_SERVER3 "2.nl.pool.ntp.org" // [NtpServer3] Select third NTP server by name or IP address (46.249.42.13, 2603:c022:c003:c900::4)
|
||||
// To manually set:
|
||||
// BackLog NtpServer1 2.pool.ntp.org; NtpServer2 2.europe.pool.ntp.org; NtpServer3 2.nl.pool.ntp.org
|
||||
|
||||
// -- Time - Start Daylight Saving Time and timezone offset from UTC in minutes
|
||||
#define TIME_DST_HEMISPHERE North // [TimeDst] Hemisphere (0 or North, 1 or South)
|
||||
|
|
Loading…
Reference in New Issue