You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
my FritzBox 7590 seems to send wrong ntp data when used as ntp server.
It sends stratum = 0 and reftsSec=0
Since this two values aren#t needed to calculate time there is a workaround
change line 494 of ezTime.cpp from if ((buffer[1] < 1) or (buffer[1] > 15) or (reftsSec == 0) or (rcvtsSec == 0) or (rcvtsSec > secsSince1900)) {
to if ( (rcvtsSec == 0) or (rcvtsSec > secsSince1900)) {
and it is running.
maybe in a next version this checks are optional
Rainer
The text was updated successfully, but these errors were encountered:
Hello,
my FritzBox 7590 seems to send wrong ntp data when used as ntp server.
It sends stratum = 0 and reftsSec=0
Since this two values aren#t needed to calculate time there is a workaround
change line 494 of ezTime.cpp from
if ((buffer[1] < 1) or (buffer[1] > 15) or (reftsSec == 0) or (rcvtsSec == 0) or (rcvtsSec > secsSince1900)) {
to
if ( (rcvtsSec == 0) or (rcvtsSec > secsSince1900)) {
and it is running.
maybe in a next version this checks are optional
Rainer
The text was updated successfully, but these errors were encountered: