0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

お名前.com の登録IPアドレスをLinuxから更新

Posted at

必要な情報は
・お名前ID
・パスワード
・ホスト名
・ドメイン名

ホスト名の事前登録が必要です。
以下のコマンドで「お名前.com」のIPアドレスを更新できます。

echo -e "LOGIN\nUSERID:[お名前ID]\nPASSWORD:[パスワード]\n.\nMODIP\nHOSTNAME:[ホスト名]\nDOMNAME:[ドメイン名]\nIPV4:$(curl -s globalip.me)\n.\nLOGOUT\n." | openssl s_client -connect ddnsclient.onamae.com:65010

例えば
・お名前ID 12345678
・パスワード passwd_0123
・ホスト名 www
・ドメイン名 mydomain.com
であれば

echo -e "LOGIN\nUSERID:12345678\nPASSWORD:passwd_0123\n.\nMODIP\nHOSTNAME:www\nDOMNAME:mydomain.com\nIPV4:$(curl -s globalip.me)\n.\nLOGOUT\n." | openssl s_client -connect ddnsclient.onamae.com:65010

になります。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?