Total Pageviews

Saturday, 9 November 2019

DDNS

Solution for ddns and port forward

针对 Ubuntu 操作系统的动态域名解析(Dynamic DNS)方案

快速安装

  • 克隆代码
  git clone https://github.com/LaoLuMian/DDNS.git

  • 填写配置信息
    • 选择本地网卡
    • 填写 noip 账号 (测试用账号 support.matchbox@zoho.com)
    • 填写 noip 账号密码 (测试用密码 opensource2018)
    • 填写域名解析更新周期(分钟),比如 5
  ./DDNS-control config test-config

  • 启动客户端
  ./DDNS-control start test-config
  • 查看运行状态
  ./DDNS-control status test-config
  • 查看域名绑定是否成功
  nslookup laolumian.ddns.net 

卸载

  • 停止运行
  ./DDNS-control stop 
  • 删除配置文件
  ./DDNS-control clean 

查看现有配置

  ./DDNS-control list

更改 DDNS 更新周期

  ./DDNS-control update   
 
from https://github.com/ChineseTeapot/ddns