Good day, I am attempting to connect a Honeywell lyric leak detector via their smartphone App.
It appears the device (knowing its IP) is trying to connect to honeywell NTP.orgs as each seems to have a number of WANIps associated.
However the device goes out on 8.8.8.8 to do so.........
(image attached)
https://imgur.com/yMCtNWu
Too bad as the router DNS setup forces all users to be redirected to my DNS setup.
/ip dns
set allow-remote-requests=yes servers=8.8.4.4,208.67.220.220
add action=accept chain=input comment="Allow LAN DNS queries-UDP" dst-port=53 \
in-interface-list=LAN protocol=udp
add action=accept chain=input comment="Allow LAN DNS queries - TCP" dst-port=\
53 in-interface-list=LAN protocol=tcp
(and under dst nat rules)
add action=redirect chain=dstnat comment=\
"Force Users to Router for DNS - TCP" dst-port=53 protocol=tcp
add action=redirect chain=dstnat comment=\
"Force Users to Router for DNS - UDP" dst-port=53 protocol=udp
(in my routing rules)
/ip route
add check-gateway=ping distance=2 gateway=8.8.4.4
add check-gateway=ping distance=3 gateway=208.67.220.220
add distance=10 gateway=2?.xx.yyy.1
add distance=2 dst-address=8.8.4.4/32 gateway=14x.yy.ccc.1 scope=10
add comment=Email_bypass distance=1 dst-address=24.222.0.20/32 gateway=\
2?.cc.ddd.1
add distance=3 dst-address=208.67.220.220/32 gateway=14x.uu.ttt.1 scope=10
+++++++++++++++++++++++++++++++++
So is there any adjustment I can make to alleviate the problem??