Looking for a easy way of to implement easyDNS dynamic DNS service on SME server 7.
Here's something you could try.
Create a file /sbin/e-smith/dyndamic-dns/easydns (e.g. using pico), containing:
#!/bin/sh
# Description: easydns.com
IPADDR=$1
USERID=$2
PASSWD=$3
DOMAIN=$4
DATETIME=date
lynx -source -auth="$USERID:$PASSWD" \
"https://members.easydns.com/dyn/dyndns.php?system=custom&hostname=$DOMAIN&myip=$IPADDR"
Then make the script executable using:
chmod +x /sbin/e-smith/dyndamic-dns/easydns
The login as admin and go through the configuration option 2 and choose easydns.
The report back how you get on.