starkcommando@lemmy.world to Selfhosted@lemmy.worldEnglish · edit-21 year agoWhich Dynamic DNS Service are you using?message-squaremessage-square71fedilinkarrow-up189arrow-down16file-text
arrow-up183arrow-down1message-squareWhich Dynamic DNS Service are you using?starkcommando@lemmy.world to Selfhosted@lemmy.worldEnglish · edit-21 year agomessage-square71fedilinkfile-text
minus-squareelscallr@kbin.sociallinkfedilinkarrow-up1·edit-21 year agoI just have a cron script running on a machine that does something like this every 10 seconds C_IP=`dig +short my.domain` IP=`curl https://api.ipify.org` if(C_IP != IP) { updateRoute53(IP) } This is just for my main home server. Gets the job done because if it’s out of date for a few seconds nothing matters.
I just have a cron script running on a machine that does something like this every 10 seconds
C_IP=`dig +short my.domain` IP=`curl https://api.ipify.org` if(C_IP != IP) { updateRoute53(IP) }
This is just for my main home server. Gets the job done because if it’s out of date for a few seconds nothing matters.