Tag Archives: bash script

Bash script for Sitelutions.com dyndns

I use sitelutions.com for my websites and subdomains; I love using sitelutions because it’s the best free solution I found for my servers with dynamic IPs. The only problem is that there’s not very many dyndns update clients available. So, I tried my hand at scripting and this is what I’ve come up with.

#!/bin/sh

#### SITELUTIONS DYNDNS UPDATE SCRIPT ####

USERNAME="email"
PASSWORD="password"

#Separate record ids by a comma

RECORDIDS="1234567"
TTL="60"

LOGFILE="/var/log/sitelutions.log"

### Ways to retrieve IP address ##

##(Default) use sitelutions
IP="&detectip=1"

Posted in Project, Sheevaplug | Tagged , , | 4 Comments