Scripts/dynsupdate

From fakedWiki
Revision as of 15:11, 8 February 2011 by Jan (talk | contribs) (Created page with "This script will update the A records for zones you host on your local Bind9 nameserver to your (external) dynamic IP. Make sure that nsupdate works with a key by testing it manu…")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This script will update the A records for zones you host on your local Bind9 nameserver to your (external) dynamic IP. Make sure that nsupdate works with a key by testing it manually.

Notice: The here-document lines (between EndOfCommands) have to be indented with tabs, or not indented at all - spaces will not work.

#!/bin/bash

RECORDS=("example.com" "ns1.example.com" "ns2.example.com" "example.org" "example.net")
SERVER="192.168.0.XXX"
KEY="/etc/bind/Knsupdate.key"

IP=`lynx -dump http://checkip.dyndns.org | awk '{print $4}'`

if [ -e "/tmp/nsup.IP" ]; then
  read OLD_IP < "/tmp/nsup.IP"
else
  OLD_IP="0.0.0.0"
fi

if [ "$IP" != "$OLD_IP" ]; then
  echo "IP address changed from $OLD_IP to $IP"
  for RECORD in ${RECORDS[@]}; do
    COMMANDS="$COMMANDS
        update delete ${RECORD}. A
        update add ${RECORD}. 300 A ${IP}
        "
    echo "updating record: $RECORD"
  done
  nsupdate -v -k ${KEY} <<-EndOfCommands
        server ${SERVER}
        ${COMMANDS}
        send
        EndOfCommands
  echo "$IP" > /tmp/nsup.IP
  echo "IP updates done"
fi