From a71e582a6f92fa8b7cae5144753ecb7ff5bb5087 Mon Sep 17 00:00:00 2001 From: Vicente Date: Mon, 5 Aug 2013 23:22:19 +0200 Subject: [PATCH] Internal NTP service can't resolve pool's FQDN when access restriction is enabled. Thanks Vindicator!. http://www.linksysinfo.org/index.php?threads/tomato-raf-1-28-9013.63093/page-11#post-231777 --- release/src/router/rc/restrict.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/src/router/rc/restrict.c b/release/src/router/rc/restrict.c index db6a5447b3..b1fa6a7397 100644 --- a/release/src/router/rc/restrict.c +++ b/release/src/router/rc/restrict.c @@ -283,7 +283,7 @@ void ipt_restrictions(void) } } // Only mess with DNS requests that are coming in on INPUT - ip46t_write("-I INPUT 1 -p udp --dport 53 -j restrict\n"); + ip46t_write("-I INPUT 1 -i ! lo -p udp --dport 53 -j restrict\n"); } sprintf(reschain, "rres%02d", nrule); -- 2.11.4.GIT