Cek IP Dinamis

From AbahDoku Wiki
Revision as of 09:31, 13 June 2023 by Akhyar (talk | contribs)
:local dnsName "nama.dns.net";
:local hotspotHostAddress [/ip hotspot ip-binding get [find comment="nama.dns.net"] address];
:local dnsStaticValue [/ip dns static get [find name="cctv.bele.net"] address];
:local bot "BOOT_TOKEN";
:local chatID "CHAT_ID";
:if ($hotspotHostAddress != $dnsStaticValue) do={
 /ip dns static set [find name="cctv.bele.net"] address=$hotspotHostAddress
 :local message "IP pada DNS statis $dnsName telah berubah menjadi $hotspotHostAddress"
 /tool fetch url=("https://api.telegram.org/bot$bot/sendMessage\?chat_id=$chatID&text=$message") keep-result=no
} else={
 :local message "IP DNS statis $dnsName tidak berubah: $hotspotHostAddress"
 /tool fetch url=("https://api.telegram.org/bot$bot/sendMessage\?chat_id=$chatID&text=$message") keep-result=no
}