orbital-chicken
New Around Here
Until today, I used a script called by a cron on my Linux computer, to notify my DNS based filtering service of my current public IP address. (I use cleanbrowsing.org)
However, my computer is not always on.
So I want to move this notification to my router (rt-ac68u with the latest Merlin firmware) to be sure that my kid's iPhone use my filter customizations (because I have a Cleanbrowsing account with custom filters).
My script is:
How do I go about implementing this as a user script in Merlin?
I would like it to be run periodically (or when my internet provider changes my IP address, if there is an event for that in Merlin).
Thank you in advance for your help.
(related documentation but for windows: https://cleanbrowsing.org/guides/account-for-public-ips-that-change-w-windows/)
However, my computer is not always on.
So I want to move this notification to my router (rt-ac68u with the latest Merlin firmware) to be sure that my kid's iPhone use my filter customizations (because I have a Cleanbrowsing account with custom filters).
My script is:
Bash:
#! / bin / bash
curl https://my.cleanbrowsing.org/dynip/(my-id)> / dev / null 2> & 1
How do I go about implementing this as a user script in Merlin?
I would like it to be run periodically (or when my internet provider changes my IP address, if there is an event for that in Merlin).
Thank you in advance for your help.
(related documentation but for windows: https://cleanbrowsing.org/guides/account-for-public-ips-that-change-w-windows/)