From e90d4ef6f88546cfef7866c8f43a3d92491b01e6 Mon Sep 17 00:00:00 2001 From: shokinn Date: Sun, 4 Jan 2026 02:41:11 +0100 Subject: [PATCH] Update installation and configuration instructions --- doc/dns-to-ipv6-subnet-resolver.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/dns-to-ipv6-subnet-resolver.md b/doc/dns-to-ipv6-subnet-resolver.md index b13a4a0..77b725e 100644 --- a/doc/dns-to-ipv6-subnet-resolver.md +++ b/doc/dns-to-ipv6-subnet-resolver.md @@ -27,7 +27,7 @@ Just install the script: ```rsc $ScriptInstallUpdate dns-to-ipv6-subnet-resolver "base-url=https://git.s1q.dev/phg/routeros-scripts-custom/raw/branch/main/"; -/system/script/set [find name="dns-to-ipv6-subnet-resolver"] policy=read,write,test +/system/script/set [find name="dns-to-ipv6-subnet-resolver"] policy=read,write,test,policy ``` ## Configuration @@ -86,7 +86,7 @@ How to run the script manually: Setup a Scheduler to run the script regularly: ```rsc -/system/scheduler/add name="dns-to-ipv6-subnet-resolver" interval="00:05:00" policy="read,write,test" on-event="/system/script/run dns-to-ipv6-subnet-resolver;"; +/system/scheduler/add name="dns-to-ipv6-subnet-resolver" interval="00:05:00" policy="read,write,test,policy" on-event="/system/script/run dns-to-ipv6-subnet-resolver;"; ``` ---