asteriskをdynamicdnsでテスト運用する。
doainはgoogle domain 年間1400円で取得した。
取得直後にすぐ反映された。
# apt-get install ddclient
# vi /etc/ddclient.conf
# Configuration file for ddclient generated by debconf # # /etc/ddclient.conf ssl=yes protocol=googledomains use=web login=<Google Domainsが生成したユーザー名 # 上コロンが必要 password='<Google Domainsが生成したパスワード>' [設定ドメイン名]
# crontab -e
#!/bin/sh #20時から8時に60分おきに実行 */60 20-8 * * * /usr/sbin/ddclient -daemon=0 -verbose #8時から20時に10分おきに実行 */10 8-20 * * * /usr/sbin/ddclient -daemon=0 -verbose
コメント