Posts

Showing posts from 2026

Using No-IP DDNS without using DUC in Mikrotik

Image
Way to update No-IP DDNS without running the DUC (Dynamic Update Client) software on a computer.Using built-in router setting or script based solutions   is often preferred for 24/7 reliability.   For a MikroTik router, the way to handle this without using the No-IP DUC software: a  native script   (best for No-IP users).   1. Using a No-IP Script (Native RouterOS Method) Since MikroTik doesn't have a simple "No-IP" checkbox in most versions, you use a script to tell the router to update your IP.   Step A: Create the Script Open  WinBox  and go to  System > Scripts . Click  +  and name it  no-ip_update . Paste this code (replacing the placeholders with your info): =========================================== :local noipuser "YOUR_EMAIL_OR_USERNAME" :local noippass "YOUR_PASSWORD" :local noiphost "YOUR_HOSTNAME.ddns.net" :local cIP [/ip cloud get public-address] :if ([:resolve $noiphost] != $cIP) do={     /tool fetch...