0

Using nsupdate for dynamic DNS TSIG Updates To update a DNS server dynamically using TSIG for authorization, run nsupdate by doing the following:

$ nsupdate -d
> server update.dyndns.com
> zone $ZONE
> key $KEY_NAME $KEY_HMAC
> update add $HOST.$ZONE 60 A 10.0.0.1
> send
> quit

For dynamic DNS hosts, $ZONE should be the third level DNS name like myhost.dyndns.org

But it doesn't explain what $HOST is expected to be?

1 Answers1

2

I would expect it to be the name of the host e.g. myhost as the zone would be dyndns.org.

user9517
  • 115,471
  • 20
  • 215
  • 297