IX2215でダイナミックDNS(DDNS)を利用する

MyDNS

どこかに書いているはずだけど、IX2215におけるDDNSの設定方法を書いておく。

IX2215の定義

ふたつのDDNSサービスでix2215のIPv6アドレスを登録する例。ひとつは「MyDNS」もうひとつは「OPEN IPv6 ダイナミック DNS for フレッツ・光ネクスト」。

ddns profile update_ddns_service1
  url http://ddnsapi-v6.open.ad.jp/api/renew/
  query FFFFFFFFFFFFFFFFFF
  transport ipv6
  notify-interface GigaEthernet0.0
  source-interface GigaEthernet0.0
  update-interval 60
!

ddns profile update_ddns_service2
 url https://ipv6.mydns.jp/login.html
 account mydns-子id
 password plain (password)
 transport ipv6
  notify-interface GigaEthernet0.0
  source-interface GigaEthernet0.0
  update-interval 60
!

注意する点がふたつある。

MyDNSの場合、accountに指定するのは(MyDNSでいうところの)子IDを指定すること。(親IDでAAAAレコードを一つも定義していない場合は、親IDでもOK)

もう一つは、指定するインタフェース名で、ND Proxyを行っている場合はそのインタフェース名を指定する必要がある。

即時更新

アドレス登録・更新を即時行いたい場合は、コンフィグモードで以下のコマンドを実行する。

Router(config)# ddns update

確認

ix2215での確認コマンド。

Router(config)# show ddns

実行結果。

Router(config)# show ddns
profile-name : update_ddns_service1
  Registered time : 2024/03/25 11:13:11
  IPv6 address    : 2001:db8::1
  result
    HTTP/1.1 200 OK
    Cache-Control: no-cache
    Pragma: no-cache
    Content-Type: text/plain; charset=utf-8
    Expires: -1
    Server: Microsoft-IIS/8.0
    Date: Mon, 25 Mar 2024 02:13:10 GMT
    Connection: close
    Content-Length: 557

    RESULT:OK
    RESULT_JA:正常に処理されました。
    RESULT_EN:The request has successfully completed.
    RESULT_SIZE:431
(途中略)

profile-name : update_ddns_service2
  Registered time : 2024/03/25 11:13:11
  IPv6 address    : 2001:db8::1
  result
    HTTP/1.1 200 OK
    Server: nginx
    Date: Mon, 25 Mar 2024 02:13:11 GMT
    Content-Type: text/html; charset=UTF-8
    Connection: close
    X-Powered-By: PHP/8.2.16

    <html>
(途中略)
    </html>
Router(config)#

コメント

タイトルとURLをコピーしました